如何在 LaTex 中将信中的结束语写成一行?

如何在 LaTex 中将信中的结束语写成一行?

我的结束语分为两行。

在此处输入图片描述

\documentclass{letter}

\usepackage[headheight=0pt,headsep=0pt]{geometry}
\setlength{\voffset}{-0.5in}

\usepackage{indentfirst}
\usepackage[USenglish]{babel}
\usepackage[acronym]{glossaries}
\usepackage{amsmath}
\usepackage{hyperref}
\hypersetup{
    colorlinks=true,
    allcolors=black,
}

\begin{document}
\begin{letter}{Singapore Botanic Gardens\\ 1 Cluny Road\\ Singapore 259569}
\opening{Dear Dr.~Nura Abdul Karim and Ms.~Serena Lee,}
\vspace{0.25cm}


I am looking forward to this unique opportunity. Please feel free to reach out to me with questions or concerns.

\vspace{0.25cm}
\closing{Thank you for your time and consideration,}

\vspace{0.25cm}
\encl{Curriculum vitae}

\end{letter}
\end{document}

答案1

的宽度\closing由长度设置\indentedwidth。您可以将其设置为\textwidth

\setlength{\indentedwidth}{\textwidth}

结尾部分将填满整条线。

相关内容