对齐多行分组文本

对齐多行分组文本

我正在尝试创建一份包含出版物列表的简历,并且对乳胶格式还比较陌生。我希望有出版物编号,然后同样对齐作者、姓名和会议。所以在这里的图片中,我希望苹果和 AGDAL 与 TEST 对齐。 在此处输入图片描述

以下是我目前拥有的:

\newcommand*{\publication}[4]{%
    \honordatestyle{#4} & 
      {#2} \\&&
        {#1} \\&&
     {#3} && 
    }

答案1

您可以尝试使用列表设置发布条目:

在此处输入图片描述

\documentclass{article}

\usepackage{enumitem}

\newcommand{\publication}[3]{%
% \publication{<num>}{<author(s)>}{<institution(s)>}
  \begin{itemize}[nosep]
    \item[{[#1]}] #2 \par #3
  \end{itemize}
}

\begin{document}

\publication{10}{Some author}{Some institution}

\publication{3}{Another author}{Another institution}

\publication{18}{Final set of authors}{Yet another institution}

\end{document}

列表编号可以自动进行,如果需要还可以进行交叉引用。

相关内容