将部分文本行移至最右侧

将部分文本行移至最右侧

如何将一些文本行移到最右边,如下图所示?

在此处输入图片描述

最小工作示例:

\documentclass{article}
\setlength{\parindent}{0pt}

\begin{document}
A paragraph of text.

\bigskip
Author\\
Place\\
Date\\

\end{document}

答案1

在此处输入图片描述

将左对齐的表格向右对齐:

\documentclass{article}
\setlength{\parindent}{0pt}

\begin{document}
A paragraph of text.

\begin{flushright}
  \begin{tabular}{@{}l@{}}
Author\\
Place\\
Date    
  \end{tabular}
\end{flushright}


\end{document}

相关内容