71 lines
1.4 KiB
TeX
71 lines
1.4 KiB
TeX
\NeedsTeXFormat{LaTeX2e}
|
|
\ProvidesPackage{PrimeTeX/Graphics}[2025-07-09]
|
|
|
|
\RequirePackage{PrimeTeX/Layout}
|
|
|
|
% Graphics package for including images
|
|
\RequirePackage{graphicx}
|
|
|
|
\RequirePackage[
|
|
hypcap=true,
|
|
justification = centering,
|
|
]{caption}
|
|
\captionsetup{font = {color=PrimeBlue}}
|
|
|
|
\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]{%
|
|
\begin{wrapfigure}{#3}[#1]%{#4}%
|
|
\captionsetup{type=figure}%
|
|
\includegraphics[%
|
|
keepaspectratio,%
|
|
#4%
|
|
]{#2}%
|
|
\centering\caption{#6}%
|
|
\label{fig:#5}%
|
|
\end{wrapfigure}%
|
|
}
|