
Me gustaría utilizar fuentes más grandes (14 puntos) para el nombre y la numeración de las partes, excepto en el TOC. Sé que debo usar el paquete titlesec
pero no entiendo cómo. Hay una pregunta similar para una clase diferente aquí:Controlar el tamaño de fuente \part. El paquete sectsty
no funciona con 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}
Respuesta1
Con amsart
no puedes usar titlesec
.
Simplemente busque la definición de \part
y agregue
\large
\let\@secnumfont\relax
(esto último para utilizar negrita para el número de pieza en el título).
\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}