Latex怎么定制目录的样式?

发布于 2022-09-02 13:34:29 字数 304 浏览 11 评论 0

article类文档,用latex命令\tableofcontents生成目录后,怎么把目录标题Content的字体改为18pt加粗,同时把section级别的标题字体改为12pt,subsection级别的标题字体改为10pt?

查看了titletoc,但文档写得比较难看懂,感觉应该是\titlecontents命令,但是不知道怎么用。

请大神指教,谢谢!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

铁轨上的流浪者 2022-09-09 13:34:29

目录标题Content的字体改为18pt加粗

\renewcommand{\contentsname}{\fontsize{18pt}{\baselineskip}\selectfont \textbf{Content}}

修改section级别的标题字体

\usepackage{titlesec}
\usepackage{titletoc}

\titlecontents{section}[1cm]{\fontsize{12pt}%
{\baselineskip}\selectfont}{\hspace*{3em}\contentslabel{2em}\ }%
{}{\titlerule*[0.5pc]%{$\cdot$}\contentspage\hspace*{1cm}}%

\titlecontents{subsection}[1cm]{\fontsize{10pt}%
{\baselineskip}\selectfont}{\hspace*{3em}\contentslabel{2em}\ }%
{}{\titlerule*[0.5pc]%{$\cdot$}\contentspage\hspace*{1cm}}%

具体参数含义和解释可以参考https://www.jianshu.com/p/ccd...

以下是一个完整的MWE:

\documentclass[utf-8]{article}
\usepackage{titlesec}
\usepackage{titletoc}

\titlecontents{section}[1cm]{\fontsize{12pt}{\baselineskip}\selectfont}{\hspace*{3em}\contentslabel{2em}\ }%
{}{\titlerule*[0.5pc]{$\cdot$}\contentspage\hspace*{1cm}}%

\titlecontents{subsection}[1cm]{\fontsize{10pt}{\baselineskip}\selectfont}{\hspace*{3em}\contentslabel{2em}\ }%
{}{\titlerule*[0.5pc]{$\cdot$}\contentspage\hspace*{1cm}}%

\renewcommand{\contentsname}{\fontsize{18pt}{\baselineskip}\selectfont \textbf{Content}}

\begin{document}
    \tableofcontents
    \newpage
    \section{First section}
    \subsection{First subsection of first section}
    \newpage
    \subsection{Second subsection of first section}
    \newpage
    \section{Second section}
    \subsection{First subsection of second section}
    \newpage
    \subsection{Second subsection of second section}
\end{document}

结果如下:

clipboard.png

微凉 2022-09-09 13:34:29

您好,请问您解决了吗

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文