- Fix title page not being counted in page numbering.

- Minor cleanup.
This commit is contained in:
2025-08-22 16:31:59 -05:00
parent 2ae13aac37
commit d9877d651b
3 changed files with 37 additions and 33 deletions

View File

@@ -65,7 +65,13 @@
colspec = {% colspec = {%
*{2}{Q[c,m,wd=\twinfigwidth]}% *{2}{Q[c,m,wd=\twinfigwidth]}%
},% },%
vborder{1,Z} = { %hlines,% For debugging. Comment out when done.
%vlines,% For debugging. Comment out when done.
hborder{1,Z} = {%
abovespace = 0pt,%
belowspace = 0pt,%
},%
vborder{1,Z} = {%
leftspace = 0pt,% leftspace = 0pt,%
rightspace = 0pt,% rightspace = 0pt,%
},% },%

View File

@@ -87,8 +87,6 @@
\setlength{\bigfloatoverhang}{0.81in} \setlength{\bigfloatoverhang}{0.81in}
\NewDocumentCommand{\bigfloat}{O{\bigfloatoverhang} m m +m}{% \NewDocumentCommand{\bigfloat}{O{\bigfloatoverhang} m m +m}{%
\providelength[\fboxsep]{\fboxsepdefault}%
\setlength{\fboxsep}{0pt}%
\begin{#2}[#3]% \begin{#2}[#3]%
\ifthenelse{\boolean{isElectronic}}{% \ifthenelse{\boolean{isElectronic}}{%
% adjustwidth adjusts all pages the same. % adjustwidth adjusts all pages the same.
@@ -112,5 +110,4 @@
\end{adjustwidth*}% \end{adjustwidth*}%
}% }%
\end{#2}% \end{#2}%
\setlength{\fboxsep}{\fboxsepdefault}%
} }

View File

@@ -5,36 +5,37 @@
% Define custom title page. % Define custom title page.
\NewDocumentCommand{\PrimeTitlePage}{O{}}{ \NewDocumentCommand{\PrimeTitlePage}{O{}}{
\begin{titlepage} \thispagestyle{empty}
\begin{sbfamily} \begin{sbfamily}
{\noindent\large\raggedright {\noindent\large\raggedright
\vspace*{\stretch{1}} \vspace*{\stretch{1}}
\sCustomerFull \sCustomerFull
\medbreak \medbreak
\sProjectTitle \sProjectTitle
\bigbreak \bigbreak
{\Huge \sTitle} {\Huge \sTitle}
\vfill \vfill
{\leavevmode {\leavevmode
% Move the rule graphic to 0.25 in from the left edge of the % Move the rule graphic to 0.25 in from the left edge of the
% paper and vertically centered on the heartbeat graphic. % paper and vertically centered on the heartbeat graphic.
\put(-\oddsidemargin-0.75in,10pt){ \put(-\oddsidemargin-0.75in,10pt){
\includegraphics{#1prime_rule.pdf} \includegraphics{#1prime_rule.pdf}
} }
% The numbers here are just what looks good. % The numbers here are just what looks good.
\put(100pt,0pt){ \put(100pt,0pt){
\includegraphics{#1prime_heartbeat.pdf} \includegraphics{#1prime_heartbeat.pdf}
}
} }
\sAuthor
Revision \sVersion
\sDate
\vfill
} }
\end{sbfamily}
\end{titlepage} \sAuthor
Revision \sVersion
\sDate
\vfill
}
\end{sbfamily}
\clearpage
} }