加了这段\titleformat*{\section}{\LARGE\textbf} \titleformat*{\subsection}{\Large\textbf} \titleformat*{\subsubsection}{\large\textbf}目录就会报错,格式是论文
时间: 2023-06-30 17:18:37 浏览: 242
论文目录格式
在论文中使用`\titleformat*{\section}{\LARGE\textbf} \titleformat*{\subsection}{\Large\textbf} \titleformat*{\subsubsection}{\large\textbf}`这种方式来设置章节标题的格式是不太适合的,因为论文通常需要符合一定的格式要求。建议你遵循学校或教师给出的论文格式规范来设置章节标题的格式。
如果你想要使用`titlesec`宏包来设置章节标题的格式,可以尝试以下代码:
```
\usepackage{titlesec}
\titleformat{\section}{\centering\zihao{3}\bfseries}{\thesection}{1em}{}
\titleformat{\subsection}{\zihao{4}\bfseries}{\thesubsection}{1em}{}
\titleformat{\subsubsection}{\zihao{5}\bfseries}{\thesubsubsection}{1em}{}
```
其中,`\zihao`命令用来设置字号,可根据具体需要进行调整。另外,建议在设置章节标题格式的同时,也要设置目录中的章节标题格式,可以使用`\titlecontents`命令来实现,例如:
```
\titlecontents{chapter}[0em]{\zihao{4}\bfseries}
{\thecontentslabel\quad}{}
{\hspace{.5em}\titlerule*[10pt]{$\cdot$}\contentspage}
\titlecontents{section}[2em]{\zihao{5}\bfseries}
{\thecontentslabel\quad}{}
{\hspace{.5em}\titlerule*[10pt]{$\cdot$}\contentspage}
\titlecontents{subsection}[4em]{\zihao{5}\bfseries}
{\thecontentslabel\quad}{}
{\hspace{.5em}\titlerule*[10pt]{$\cdot$}\contentspage}
```
其中,`\titlecontents`命令的第一个参数表示要设置的章节层级,第二个参数表示要应用的格式,后面的参数表示目录中的序号、标题、页码等的排版方式。需要注意的是,`\titlecontents`命令需要与`titletoc`宏包一起使用。
希望以上内容能够帮助到你。如果仍有问题,请提供具体的错误信息和代码,以便更好地帮助你解决问题。
阅读全文