If I pdflatex the below Latex, then "Kind regards," and "Sandra" doesn't get centred.
If the letter is two pages long, then it does.
Question
How do I get this centred when my letter is just one page?
\documentclass[a4paper, danish]{letter}
\usepackage{a4}
\usepackage[danish]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{aeguill}
\signature{Sandra}
\begin{document}
\begin{letter}{}
\opening{Re: }
test
\closing{Kind regards,}
\end{letter}
\end{document}
centerenvironment:\begin{center} \closing{Kind regards,} \end{center}. – Peter Grill Jan 07 '13 at 03:30letterwith\centering Kind regards,\par\vskip{5\baselineskip} Sandra. – Werner Jan 07 '13 at 03:35\closingis inside a\parbox(that is\raggedright), neither thecenterenvironment (@PeterGrill) nor the\centeringmacro actually center the text horizontally. On that note,{\centering\closing{\centering Kind regards}}centers the actual text inside the\parboxand the\parboxas well. – Qrrbrbirlbel Jan 07 '13 at 03:38\begin{center}, but it is also not centered using\closing{\centering Kind regards}. I think the\closingmacro needs to be redefined. – Peter Grill Jan 07 '13 at 03:46\usepackage{lipsum}and\lipsum[1-20]to your MWE, the closing stays in the same place. – StrongBad Jan 07 '13 at 10:32