在 REPORT 文档类中格式化章节样式

在 REPORT 文档类中格式化章节样式

我正在尝试使用 LaTeX 撰写论文。我正在使用文档report类。我使用“章节”创建了多个 TeX 文件(摘要、致谢和章节各一个)。当我使用该titlesec包格式化章节标题时,它会应用于整个文档,甚至更改目录、图表列表和表格列表。

我想保留默认章节标题样式frontmatter,并使用自定义章节样式mainmatter

有没有办法将不同的章节样式(默认/多个自定义样式)应用于同一文档中的不同章节?类似于pagestyle


答案1

我的论文主要内容如下:

... 
\begin{document}
\pagenumbering{alph}
\input{caratula}
\newpage

\include{abstract}
\include{agradecimientos}

\pagenumbering{roman}

\tableofcontents
\newpage
\listoffigures
\newpage

\setcounter{page}{1}
\pagenumbering{arabic}

\clearpage

\fancypagestyle{plain}{%redefining plain pagestyle
...
}

\newpage
\include{capitulo_introduccion}
\include{capitulo_tdd}
\include{capitulo_atdd}
\include{capitulo_cambios}
\include{capitulo_propuesta_tesis}
\include{capitulo_casos_de_estudio}
\include{capitulo_trabajos_relacionados}
\include{capitulo_conclusiones}
...
\end{document}

目录有一种样式,然后我将其更改为章节(然后我再次将其更改为附录)。

相关内容