Elección del tamaño de fuente en el nombre de la pieza y la numeración.

Elección del tamaño de fuente en el nombre de la pieza y la numeración.

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 titlesecpero no entiendo cómo. Hay una pregunta similar para una clase diferente aquí:Controlar el tamaño de fuente \part. El paquete sectstyno 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 amsartno puedes usar titlesec.

Simplemente busque la definición de \party agregue

  1. \large
  2. \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}

ingrese la descripción de la imagen aquí

información relacionada