tabularx - 如何在 tabularx 环境中换行?

tabularx - 如何在 tabularx 环境中换行?

如何在单个部分中的两个 tabularx 环境之间添加换行符?

    \documentclass[a4paper, 14pt, oneside]{article}
    \usepackage{tabularx} % Nicer table style than the default
    \begin{document}
    \section{Research Experience}
    \begin{tabularx}{1\linewidth}{>{\raggedright\scshape}p{3cm}X}
    \textbf{HeadingLeft} & {\textbf{HEadingRight}}
    \end{tabularx}
    %%% HOW CAN I GIVE A LINEBREAK HERE ? %%%%%%%%%%%%%%
    \begin{tabularx}{1\linewidth}{>{\raggedright\scshape}p{3cm}X}
    \textbf{HeadingLeft} & {\textbf{HEadingRight}} \\
    \end{tabularx}
    \end{document}

答案1

tabularx您可以通过替换以下行来在两种环境之间切换

%%% HOW CAN I GIVE A LINEBREAK HERE ? %%%%%%%%%%%%%%

以空行结尾。

  • \noindent在第二个环境之前插入tabularx,以使其相对于第一个环境正确排列。

  • 为了在两个环境之间获得更多的垂直分离,请提供一个命令,例如\vspace{1cm}(或任何适合您的数量)。

相关内容