如何向章节及其目录中的条目添加附加信息?

如何向章节及其目录中的条目添加附加信息?

我想更改章节布局/标题以包含更多信息。我发现这个问题其中添加了包含有关原作者信息的副标题。但是,我想为每一章添加演讲者(基本上与作者类似)、事件(可选)和日期,以便它看起来像这样:

在此处输入图片描述

另外,我想在目录中包含附加信息,以便它大致如下所示:

在此处输入图片描述

我还发现另一个问题这可以在目录中获得更多信息,但我想通过在定义章节时指定文本来自动化输入。

我是 Latex 初学者,不太理解代码。但是,我尝试修改上述代码,不仅添加一个包含附加信息的字段,还添加三个。不幸的是,这只部分地实现了我所期望的效果。下面是我的工作示例:

\documentclass{scrbook}

\usepackage{titletoc}
\titlecontents{chapter}[1.5em]{\addvspace{1pc}\bfseries}{\contentslabel{2em}}{}
    {\titlerule*[0.3pc]{.}\contentspage}

\usepackage{xparse}
\NewDocumentCommand \talk { m m o m }{
\IfNoValueTF{#3}
    {\chapter[#1\\\textit{#2, #4}]{#1\beneathtitle{#2}[]{#4}}}
    {\chapter[#1\\\textit{#2, #3, #4}]{#1\beneathtitle{#2}[#3]{#4}}}
}

\NewDocumentCommand \beneathtitle { m O{} m }{ \\
    \parbox{\textwidth}{\Large\textit{#1}

    \Large#2

     \Large#3}
}

\begin{document}

\tableofcontents

\talk{The puzzling evolution of giant DNA viruses}{Matthias Fischer}[SFB Seminar Series]{21.10.1988}

In the viral world, size is usually defined by genome and particle size  […]

\end{document}

相关内容