\documentclass{article} \begin{document} \tableofcontents \section{\LaTeX} I want to create a double column contents. \section{abc} How to do it? \section{Contents} Please tell me! \section{abc} How? \section{edf} \end{document}

1 回答1

0
如果是中文文档,`ctex` 宏包或 `ctexart` 文档类的默认效果就满足你需求了。 如果是西文文档,可以使用 ```tex \usepackage{ctexheading} \ctexset{section/format+=\centering} ``` 如果只想让 `\tableofcontents` 中的标题居中,可以用 ```tex \documentclass{article} \usepackage{ctexheading} \begin{document} \begingroup \ctexset{section/format+=\centering} \tableofcontents \endgroup \section{\LaTeX} I want to create a double column contents. \section{abc} How to do it? \section{Contents} Please tell me! \section{abc} How? \section{edf} \end{document} ``` ------ 关于「如何把源码放在 markdown 的代码块中」,我在 https://wenda.latexstudio.net/q-1474.html 提供了一个带截图的方法说明。
  • 回复 undefined :不居左、不居中,你需要标题们怎么对齐? – 论坛 github.com/CTeX 2020-04-06 00:02 回复
  • 那双栏目录有如何让中文的或者英文的目录居中呢? – ctuliu 2020-04-05 23:47 回复
  • 可否不让文中标题居左? – ctuliu 2020-04-05 23:41 回复

你的回答

请登录后回答

你的回答将会帮助更多人,请务必认真回答问题。