2

I'm trying to remove the end marker # # # that gets printed automatically at the end of the press release template in the following newlfm example:

\documentclass[11pt,pressrelease]{newlfm}
\usepackage{charter}
\newcommand{\subtitle}{This is a subtitle.}
\makeletterhead{Uiuc}{\Cheader{\vspace{16pt}my title}} 
\lthUiuc 
\begin{document}
\begin{newlfm}
my body
\end{newlfm}
\end{document}

According to the documentation, the command \PhrPREnd is supposed to print it but I'm not calling it in my tex file nor in the prsrls.tex if I use one (not required). I tried to use that command thinking that I could override the printed markers with empty space but I'm getting the "Undefined control sequence" error. Any ideas?

Ricardo
  • 185

1 Answers1

3

There is a typo in the documentation of the newlfm class:

enter image description here

the command that creates the ### is not \PhrPREnd, as stated, but \PhrPRend. This can be seen in the newlfm.cls file:

def\@am@phr{
%[...]
\PhrPRend{\# \# \#}% line 430
}
d-cmst
  • 23,095