- Move packages to subfolder.
- Add Prime Controls graphics to this repo. - Expand readme.
This commit is contained in:
104
packages/Graphics.sty
Normal file
104
packages/Graphics.sty
Normal file
@@ -0,0 +1,104 @@
|
||||
\NeedsTeXFormat{LaTeX2e}
|
||||
\ProvidesPackage{PrimeTeX/packages/Graphics}[2025-07-09]
|
||||
|
||||
\RequirePackage{PrimeTeX/packages/Layout}
|
||||
|
||||
% Graphics package for including images
|
||||
\RequirePackage{graphicx}
|
||||
|
||||
\RequirePackage[
|
||||
hypcap=true,
|
||||
]{caption}
|
||||
\captionsetup{
|
||||
justification = centering,
|
||||
font = {
|
||||
small,
|
||||
color=PrimeBlue,
|
||||
},
|
||||
}
|
||||
|
||||
% Define a justification style that is ragged on the side toward the outside of
|
||||
% the page. I. e.
|
||||
\RequirePackage{changepage}
|
||||
%\RequirePackage{ifthen}
|
||||
\DeclareCaptionJustification{raggedoutside}{
|
||||
\checkoddpage
|
||||
\ifoddpage
|
||||
\raggedright
|
||||
\else
|
||||
\raggedleft
|
||||
\fi
|
||||
}
|
||||
|
||||
\RequirePackage{calc}
|
||||
|
||||
\RequirePackage{wrapfig2}
|
||||
|
||||
\newcommand{\iconsize}{0.25in}
|
||||
|
||||
\newcommand{\ig}[2][0.5in]{
|
||||
\includegraphics[keepaspectratio,width=#1]{#2}
|
||||
}
|
||||
|
||||
\newcommand{\cfig}[4]{%
|
||||
|
||||
}
|
||||
\newcommand{\centerfig}[4][]{
|
||||
\begin{figure}[ht]%
|
||||
\centering%
|
||||
\includegraphics[keepaspectratio,#1]{#2}%
|
||||
\caption{#4}%
|
||||
\label{fig:#3}%
|
||||
\end{figure}%
|
||||
}
|
||||
|
||||
\newcommand{\bigfig}[4][\bigfloatoverhang]{%
|
||||
\bigfloat[#1]{figure}{htp}{%
|
||||
\captionsetup{type=figure}%
|
||||
\includegraphics[keepaspectratio,width=\textwidth]{#2}%
|
||||
\centering\captionof{figure}{#4}\par%
|
||||
\label{fig:#3}%
|
||||
}%
|
||||
}
|
||||
|
||||
\newcommand{\doublebigfig}[7][\bigfloatoverhang]{%
|
||||
\bigfloat[#1]{figure}{p}{%
|
||||
\captionsetup{type=figure}%
|
||||
\includegraphics[keepaspectratio,width=\textwidth]{#2}%
|
||||
\centering\captionof{figure}{#4}\par%
|
||||
\label{fig:#3}
|
||||
\bigskip
|
||||
\captionsetup{type=figure}%
|
||||
\includegraphics[keepaspectratio,width=\textwidth]{#5}%
|
||||
\centering\captionof{figure}{#7}\par%
|
||||
\label{fig:#6}%
|
||||
}%
|
||||
}
|
||||
|
||||
\newcommand{\wrapfig}[6][0in]{%
|
||||
% Syntax:
|
||||
% \wrapfig[
|
||||
% horizontal_offset
|
||||
% ]{
|
||||
% graphic_file
|
||||
% }{
|
||||
% alignment [l,r,i,o]
|
||||
% }{
|
||||
% (width|height)=lengthvalue
|
||||
% }{
|
||||
% label
|
||||
% }{
|
||||
% caption
|
||||
% }
|
||||
%
|
||||
\begin{wrapfigure}{#3}[#1]%
|
||||
\captionsetup{type=figure}%
|
||||
\capstart%
|
||||
\includegraphics[%
|
||||
keepaspectratio,%
|
||||
#4%
|
||||
]{#2}%
|
||||
\centering\captionof{figure}{#6}%
|
||||
\label{fig:#5}%
|
||||
\end{wrapfigure}%
|
||||
}
|
||||
Reference in New Issue
Block a user