同时向左和向右不齐

同时向左和向右不齐

这看起来微不足道,但我希望单行中有一些文本同时具有左对齐和右对齐,例如。

left text here                                               right text here
normal text, normal text, normal text, normal text, normal text, normal text,
normal text, normal text, normal text, normal text, normal text, normal text,
normal text, normal text, normal text, normal text, normal text, normal text,

它会是左右不齐的组合吗?我的(不起作用的)解决方案可能是这样的:

{\raggedleft left text here} {\raggedright right text here}  

答案1

怎么样\noindent left text here \hfill right text here

答案2

按照。。。的要求上瘾(参见其他答案的评论),这是一个有效的小页面示例:

\documentclass{article}
\usepackage{lipsum} %% For the random text
\begin{document}
\noindent\begin{minipage}[b]{0.49\hsize}
  \raggedright
  \lipsum[1]
\end{minipage}
\hfill
\begin{minipage}[b]{0.49\hsize}
  \raggedleft
  \lipsum[2]
\end{minipage}
\lipsum[3]
\end{document}

结果是: 小型页面示例的屏幕截图。

相关内容