包含多列文本的部分

包含多列文本的部分

我想创建一个文本出现在三列中的部分,它类似于具有三列和一行的表格,但没有任何轮廓和多行文本。我该怎么做?

答案1

我用过tabularx出于方便,因为它提供了一个易于使用的X-column。减少25pt是为了避免设置过满\hbox;因为它是一个标题,所以似乎不需要这么精确。

在此处输入图片描述

\documentclass{article}
\usepackage{tabularx}
\begin{document}

\section{Introduction}

\section[Absurd section heading]
  {\begin{tabularx}{\dimexpr\linewidth-25pt}[t]{@{}XXX@{}}
    \raggedright Some very long text in the far left column & 
    \centering Some very long text in the centre column & 
    \raggedleft Some very long text in the far right column
   \end{tabularx}}

\end{document}

请注意分段单位可选参数的使用。如果您使用的是,则这可能是必要的\tableofcontents

相关内容