如何编写 tableofcontents.tex

如何编写 tableofcontents.tex

我应该为 Elsevier 的书编写 tableofcontents.tex 文件。请给出此文件的 latex 格式示例。

答案1

这是一个例子。

\documentclass[preprint,3p]{elsarticle}

\usepackage{lipsum,etoolbox}

\let\oldfinalMaketitle\finalMaketitle % Store \finalMaketitle
\renewcommand{\finalMaketitle}{% Update \finalMaketitle to...
  \oldfinalMaketitle % ...call original \finalMaketitle and...
  \tableofcontents\vspace{\baselineskip}} % ...add ToC.

\begin{document}

\title{Article of Test}
\author{John Smith}
\ead{[email protected]}

\journal{Science Now}

\begin{frontmatter}

\begin{abstract}
\lipsum[1]
\end{abstract}

\begin{keyword}
Key\sep Key\sep Key.
\end{keyword}

\end{frontmatter}


\section{Introduction}
\lipsum[2-3]

\subsection{First subsection}
\lipsum[4-5]

\subsection{Second subsection}
\lipsum[6-7]

\section{Second section}
\lipsum[8-12]

\end{document}

在此处输入图片描述

相关内容