当文件/信件寄给他们时,在某人的姓名下方输入其职位和地址并使其与姓名左对齐的最佳/最合理方法是什么?
例如,如果我想写一封如下的信件:
To: John Smith
Position here
Address here
在这里我手动输入了空格,以便名称下方行的第一个单词与名称的第一个单词对齐,但我不想每次都猜测文档中的间距。
我不想要:
To: John Smith
Position here
Location here
我认为我遗漏了一些基本的东西...非常感谢任何帮助!
答案1
撇开写信的课程不谈,整理材料的工作最容易通过tabular
\documentclass[12pt,a4paper]{article}
\begin{document}
\begin{tabular}{@{}l@{ }l@{}}
To: & John Smith \\
& Position Here\\
& Address here
\end{tabular}
\end{document}
或者可能
\documentclass[12pt,a4paper]{article}
\begin{document}
To:
\begin{tabular}[t]{@{}l@{}}
John Smith \\
Position here\\
Address here
\end{tabular}
\end{document}
就这么简单:-)