formatting - LaTeX formal letter: signature align left -


for life of me, can't seem figure out how fix signature. right now, right-hand justified, , want make left-hand justified. still pretty green when comes latex , formatting documents in it. simple.

right now, suspect "\raggedright" command have it. not sure where.

\documentclass[10pt,stdletter,dateno]{newlfm} \usepackage{kpfonts, sans} \usepackage{url}  \title{title}  \widowpenalty=1000 \clubpenalty=1000  \newlfmp{headermarginskip=20pt} \newlfmp{sigsize=50pt} \newlfmp{dateskipafter=20pt} \newlfmp{addrfromphone} \newlfmp{addrfromemail} \phrphone{phone} \phremail{email}  \namefrom{first \ last} \addrfrom{%     \today\\[10pt] \\ street \\ city, state } \phonefrom{(123) 456-7890} \emailfrom{email@mail.com} \addrto{% division\\ organization\\ street\\ city, state}   \greetto{to whom may concern,} \closeline{sincerely,} \begin{document} \begin{newlfm}  *letter content*  \end{newlfm} \end{document} 

bonus points if know how rid of black bars @ top , bottom, or reduce header not taking huge amount of room.

ugh... there's no need set kind of letter using letter or newlfm document class. have come notice, adjustments not easy. present alternative, setting letter as-is in article document class:

enter image description here

\documentclass{article}  \usepackage[margin=0.5in]{geometry} \usepackage{lipsum}% example \setlength{\parindent}{0pt}% no paragraph indent \pagestyle{empty}% no page headers/footers \begin{document}  \hfill \begin{tabular}{l@{}}   \today\\[10pt]   \\   street \\   city, state \\   phone: (123) 456-7890 \\   email: email@mail.com \end{tabular}  \bigskip% or \vspace{20pt}  \begin{tabular}{@{}l}   division\\   organization\\   street\\   city, state \end{tabular}  \bigskip  whom may concern,  \bigskip  \lipsum[1]  \bigskip  sincerely,  \bigskip\bigskip\bigskip  first~last  \end{document} 

in opinion, code far more readable using letter or newlfm interface of document content scattered in preamble , inside document. moreover, newlfm.cls void of any proper coding indentation, making debugging painstaking task.

the geometry package used adjust spacing in terms of page layout.


Comments

Popular posts from this blog

python - mat is not a numerical tuple : openCV error -

c# - MSAA finds controls UI Automation doesn't -

wordpress - .htaccess: RewriteRule: bad flag delimiters -