I'm trying to use the newlfm class to write letters, but there are a couple of things I haven't been able to do.
First, it's customary in some places to have the signature aligned on the right side, but everything before that (including the closing line) on the left. I have not found a way to achieve that in "newlfm".
Second, I can't find a command to add a postscript, or anything after the signature (equivalent to the
\cc
, \encl
and \ps
commands of the original letter class). Instead, everything I write after the newlfm
environment appears on the next page.MWE:
Code: Select all
\documentclass[stdletter]{newlfm}
\greetto{Dear Name}
\closeline{This should be left-aligned}
\namefrom{This should be right-aligned}
\begin{document}
\begin{newlfm}
\end{newlfm}
This should not appear on the next page.
\end{document}