延长信函中签名栏的水平区域

延长信函中签名栏的水平区域

我有一个通用的推荐信模板,我会根据需要进行更新。这个模板很棒,但我所在的部门的长名称会包裹在我的签名栏中,我不希望这样。具体来说,我的签名栏呈现如下:

My Name
My Title
The Pretty Long Name of the 
Sub-Department That I Work For 
My University

我更希望:

My Name
My Title
The Pretty Long Name of the Sub-Department That I Work For 
My University

我尝试过用 将整个签名块向左移动\longindentation=15em,但似乎并没有真正加宽该块(刚刚翻译了它)。

任何帮助都值得感激!

以下是我的所有资料:

\documentclass{letter}
\usepackage{hyperref}
\usepackage[margin=1in]{geometry}
\setlength{\parindent}{4em} % indentation of first line of paragraphs


\signature{My Name \\ My Title \\ The Pretty Long Name of the Sub-Department That I Work For \\ My University}
\address{My Name \\ My Office Address \\ My University}

\longindentation=15em % move the signature block a bit to the left so it's not starting at the center

\begin{document}

\begin{letter}{Recipient Department \\ Recipient Organization or University}

\opening{\noindent To whom it may concern:} % \noindent leaves this paragraph unindented

This is my letter which almost always consists of three paragraphs of text.

Here's the middle paragraph.

Here's the concluding paragraph.

\vspace{2em}
\closing{Sincerely,}

\end{letter}
\end{document}

答案1

字母类别将签名放在

 \hspace*{\longindentation}\fi
  \parbox{\indentedwidth}

因此,您可以增加长度\indentedwidth,但如果增加太多,则需要减少长度\longindentation以使其保留在页面上。

相关内容