答案1
您tabular
通常可以使用这种方式设置前言中的地址。
\documentclass{article}
\begin{document}
\begin{center}
\begin{tabular}{@{}l@{}}
Here is the first line.\\
Second line.
\end{tabular}
\end{center}
\begin{flushright}
\begin{tabular}{@{}c@{}}
Here is the first line.\\
Second line.
\end{tabular}
\end{flushright}
\end{document}
答案2
也许你希望右对齐居中线条。如果是这样,你可以使用varwidth
:
\documentclass{article}
\usepackage{varwidth}
\begin{document}
\begin{flushright}
\begin{varwidth}{\linewidth}\centering
Here is the first line.\\
Second line.
\end{varwidth}
\end{flushright}
\end{document}