标题字体大小影响内容的字体大小

标题字体大小影响内容的字体大小

我更改了一些标题的字体大小,例如第一章和第一个附录

\documentclass[11pt,a4paper,oneside,titlepage]{report}
\usepackage{amssymb,amsthm,amsmath,amsfonts,mathrsfs,syntonly}
\usepackage{mathtools}
\usepackage{graphicx}
\usepackage{verbatim}
\usepackage{color}
\linespread{1.4}
\usepackage{hyperref}
\usepackage{epstopdf}
\usepackage{multirow}
\usepackage{booktabs}


\title{\textbf{My Title}}
\author{John Smith\\[5pt]
University of XXX\\[15pt]}

\date{\today}



\begin{document}
\maketitle
\tableofcontents


\chapter{\LARGE My first chapter}
Here is my first chapter


\chapter{My second chapter}
Here is my first chapter



\chapter{My third chapter}
Here is my first chapter



\appendix
\chapter{\LARGE The first appendix}
\end{document}

但是,这些命令会影响我的目录,此行内容也会改变字体大小。有人能告诉我如何避免这种情况吗?

我正在使用 TeXnicCenter 和 MiKTeX 发行版。

答案1

您可以使用可选参数来避免在目录(和标题)中也使用字体更改:

\chapter[My first chapter]{\LARGE My first chapter}

但你确实应该避免这种个别字体大小的改变。这样看起来会很糟糕。所有章节标题都应使用相同的字体大小。

相关内容