我正在尝试获得一个与下面显示的完全相同的签名块,但我无法在 LaTeX 中实现它。有人能帮我吗?请注意,Jun 13 是左对齐的,而 Offshore Ops 则位于副将军的正下方。
AA ABCDEF
Deputy General
Jun 13 Offshore Ops
答案1
您可以在 中将构造设置在右侧tabular
,使用 将其推到右侧\hfill
,并确保其在[b]
底部对齐:
\documentclass{article}
\usepackage{lipsum}% http://ctan.org/pkg/lipsum
\begin{document}
\noindent \today \hfill
\begin{tabular}[b]{@{}l@{}}
AA ABCDEF \\
Deputy General \\
Offshore Ops
\end{tabular}
\lipsum[1-2]
\end{document}