我试图让两个元素一个居中,一个在同一水平线上对齐。我试过
\begin{center} stuff \end{center} \hfill more stuff
但“更多内容”会显示在另一行。谢谢。
答案1
答案2
如果文本元素很短,您可以将该行分成几个框:
\documentclass{article}
\begin{document}
\noindent
\makebox[.32\textwidth][l]{}%
\hfill%
\makebox[.32\textwidth][c]{centred}%
\hfill%
\makebox[.32\textwidth][r]{right}%
\end{document}