如何让中文的“目录”两个字,或者英文的“Contents”单词居中?

2020-04-05 23:28发布

\documentclass{article} \begin{document} \tableofcontents \section{\LaTeX} I want to create a do...

\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条回答
论坛 github.com/C
2020-04-05 23:36
如果是中文文档,`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 提供了一个带截图的方法说明。

一周热门 更多>

相关问答