- Split PrimeManual package into multiple packages.

- Change original PrimeManual package into a class and rename Manual.
This commit is contained in:
Silcantar
2025-07-09 21:01:35 -05:00
parent 40b8836e51
commit 8dfaf66c18
16 changed files with 364 additions and 307 deletions

42
TitlePage.sty Normal file
View File

@@ -0,0 +1,42 @@
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{PrimeTeX/TitlePage}[2025-07-09]
\RequirePackage{graphicx}
% Define custom title page.
%#region
\newcommand{\PrimeTitlePage}[1][]{
\begin{titlepage}
\begin{sffamily}
{\raggedright\noindent\large
\vspace*{\stretch{1}}
\sCustomerFull
\medbreak
\sProjectTitle
\bigbreak
{\Huge \sTitle}
\vfill
{\leavevmode
% Move the rule graphic to 0.25 in from the left edge of the
% paper and vertically centered on the heartbeat graphic.
\put(-\oddsidemargin-0.75in,10pt){
\includegraphics{#1prime_rule.pdf}
}
% The numbers here are just what looks good.
\put(100pt,0pt){
\includegraphics{#1prime_heartbeat.pdf}
}
}
\sAuthor
Revision \sVersion
\sDate
\vfill
}
\end{sffamily}
\end{titlepage}
}
%#endregion