strongdm/comply

PDF confidential footer text concatenated without spaces

mtocci opened this issue · 1 comments

The PDF footer looks like this:

Company Name confidential42020

The '4' is the page number and '2020' is the year. Footer should be reformatted for readability. Perhaps:

Company Name - Confidential - YEAR

                    Page no.

Figured it out. The default Latex setting has a center aligned page number. The other footer content was floating over it. In the default.latex file I cleared the center footer with \cfoot{} before adding the footer content and a right-aligned page number like this:

$if(header-includes)$
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhead{}
\cfoot{}
\fancyhead[RO,RE]{$head-content$}
\fancyfoot[L]{$foot-content$}
\fancyfoot[R]{\thepage}
$endif$