我将章节(由节和小节组成)包含在主文件中,然后从那里编译整个文件。我使用"thesis.cls"
提供给我的文件。唯一的问题是章节中的小节没有显示在目录中,而所有节都显示(introduction
是一个章节并且里面有小节)。现在,我已确保小节没有*
(即
subsection*{methods}
)%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
问题:
嗨...有人能帮我一下如何让子部分的字体大小与章节的字体大小相同吗?我的论文需要始终使用相同的字体...再次感谢
答案1
删除tocnosub
第一行:
\documentclass[noragright,centerchapter,12pt]{thesis}
\usepackage[margin=1in]{geometry}
\setcounter{tocdepth}{4}
\setcounter{secnumdepth}{4}
\author{cat}
\title{cat}
\adviser{cat}
\begin{document}
\maketitle
\parindent 1em%
\frontmatter
\tableofcontents
\chapter{cats}
\section{cats}
\subsection{cats}
\end{document}