报告附录标题的大小

报告附录标题的大小

有什么方法可以减小附录标题的字体大小吗?默认方法是创建章节的字体大小。

\documentclass[12pt,twoside,onecolumn]{report}
 \usepackage[toc,page]{appendix}
 \begin{document}

  Some text: abcdef

   \appendix 
       \chapter{Appendix A: blah1}  
                   has some equations whose numbering should be A.1
       \chapter{Appendix B: blah2}  
                   has some equations whose numbering should be B.1

\end{document}

我现在的问题是我用 \chapter 定义了附录,这给了章节字体。所以我想缩小这个字体。

a) 使用 \small \LARGE 进行本地尺寸调整实际上是可行的。但是,页面的标题分配的是相同的 \small 或 \LARGE 字体大小。

b)当我使用 \section{Appendix A} 时,我得到的方程编号为 0.1.1 等。

非常感谢您的意见。

答案1

一个简单的选择是使用titlesec更改章节中章节的标题格式\appendix;一个小例子,其中默认值被更改为\large而不是章节的默认大小(\huge标签,\Huge标题)。进行最适合您需求的调整:

\documentclass[12pt,twoside,onecolumn]{report}
\usepackage[toc,page]{appendix}
\usepackage{titlesec}
\usepackage{amsmath}

\begin{document}

\chapter{A regular chapter}
\chapter{Another regular chapter}

\appendix
\titleformat{\chapter}[display]
  {\normalfont\large\bfseries}% <- font for label "Appendix A", default \huge
  {\chaptertitlename\ \thechapter}
  {20pt}
  {\large}% <- font for title, default \Huge

\chapter{Test apendix}  
\begin{equation}
a=b.
\end{equation}
\chapter{Appendix B: blah2}  

\end{document}

比较默认大小

在此处输入图片描述

修改后的尺寸为:

在此处输入图片描述

(两幅图像均放大至 150%)。

相关内容