引用或题词的位置

引用或题词的位置

我想通过并列两个对比鲜明的引语来开始一份报告:一个在页面的左上角左对齐,另一个在右上角右对齐,两者都从相同的垂直位置开始,即彼此直接相对。

我在让它工作时遇到了很大的困难,而且我还没有找到使用 epigraph 包等来实现它的方法。

有人能想到办法实现这一目标吗?

提前非常感谢您。

答案1

您可以使用普通的\parboxes、它们的[t]选项以及命令\raggedleft和来实现这种效果\raggedright,就像这样。

\documentclass{article}
\usepackage{lipsum}
\begin{document}
\noindent
\parbox[t]{3cm}{\raggedright
   The sentence to the right is true.%
}%
\hfill
\parbox[t]{2cm}{\raggedleft
   The sentence to the left is false.%
}
\bigskip

\lipsum
\end{document}

在此处输入图片描述

如果您多次需要它,请将其隐藏在新命令中(适应2cm3cm适当)。

\documentclass{article}
\usepackage{lipsum}
\newcommand\juxtaposed[2]%
  {\par\noindent
   \parbox[t]{3cm}{\raggedright#1}%
   \hfill
   \parbox[t]{2cm}{\raggedleft#2}%
   \bigskip\par
  }
\begin{document}
\juxtaposed
  {The sentence to the right is true}%
  {The sentence to the left is false.}
\lipsum
\end{document}

相关内容