零件名称和编号的字体大小选择

零件名称和编号的字体大小选择

我想使用更大的字体 (14pt) 来显示名称和部分编号,但目录中除外。我知道我必须使用该包,titlesec但我不知道该如何使用。这里有一个针对不同类别的类似问题:控制字体大小 \part。该软件包sectsty不适用于 amsart。

\documentclass[12pt]{amsart}

\newtheorem{thm}{Theorem}[section]
\renewcommand{\thethm}{\Roman{part}.\arabic{section}.\arabic{thm}}
\renewcommand{\thepart}{\Roman{part}}

\begin{document}
    
\setcounter{tocdepth}{1}
\tableofcontents


\part{blabla}

\section{blablabla}


\begin{thm}
    The integer $1+1$ is finite.
\end{thm}

\begin{thm}
    The integer $1+1$ is less than $1000$.
\end{thm}

\end{document}

答案1

amsart不能使用titlesec

只需找到定义\part并添加

  1. \large
  2. \let\@secnumfont\relax

(后者是为了使用粗体表示标题中的零件编号)。

\documentclass[12pt]{amsart}

\makeatletter
\def\part{%
  \@startsection{part}
  {0}
  {\z@}
  {\linespacing\@plus\linespacing}
  {.5\linespacing}
  {\let\@secnumfont\relax\normalfont\large\bfseries\raggedright}%
}
\show\@seccntformat
\makeatother

\newtheorem{thm}{Theorem}[section]
\renewcommand{\thethm}{\Roman{part}.\arabic{section}.\arabic{thm}}
\renewcommand{\thepart}{\Roman{part}}

\begin{document}
    
\setcounter{tocdepth}{1}
\tableofcontents

\part{blabla}

\section{blablabla}

\begin{thm}
    The integer $1+1$ is finite.
\end{thm}

\begin{thm}
    The integer $1+1$ is less than $1000$.
\end{thm}

\end{document}

在此处输入图片描述

相关内容