双列文档中的全宽目录(任何文档类别)

双列文档中的全宽目录(任何文档类别)

如何在两列文档中创建独立于的全宽目录documentclass

答案1

只需使用多色为此包。使用multicols环境在任意数量的列之间切换。

该解决方案应该适用于您要求的任何文档类别。

代码

\documentclass{article}

\usepackage{lipsum}

\usepackage{multicol}

\begin{document}


\tableofcontents

\begin{multicols}{2}

\section{My Contents}
\lipsum

\section{More Contents}

\lipsum

\section{And More Contents}

\lipsum
\section{And More My Contents}

\lipsum
\section{And More}

\lipsum


\end{multicols}


\end{document

输出

在此处输入图片描述

相关内容