我有以下内容:
\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}
"thesis.cls" is a style file provided by my university.
有人能帮我一下如何让子节的字体大小与节的字体大小相同吗?我的论文需要始终使用相同的字体……再次感谢
答案1
您可以在序言中尝试这样的事情:
\usepackage{titlesec}
\titleformat*{\section}{\LARGE\bfseries}
\titleformat*{\subsection}{\LARGE\bfseries}
将两个尺寸都设置为\LARGE
。根据需要进行调整。