Angezeigte Theoremnummerierung ändern

Angezeigte Theoremnummerierung ändern

In meinem LaTeXDokument habe ich nummerierte Theoreme verwendet mit

\newtheorem{theorem}{Theorem}[section]
\begin{theorem}
......
\end{theorem}

Die Theoreme werden etwa mit „Theorem 2.1“ nummeriert.

Meine Frage ist: Wie kann ich den letzten Punkt loswerden? Ich möchte "Theorem 2.1" ausdrucken.

Antwort1

Die folgende Lösung basiert auf einer einfachen Anpassung vondiese Antwortvon@egreg.

Bildbeschreibung hier eingeben

\documentclass{article}
\usepackage{amsthm}
%% Create a new theorem style called 'PlainNoDot':
\newtheoremstyle{PlainNoDot}% name of the style to be used
  {\topsep}% measure of space to leave above the theorem. E.g.: 3pt
  {\topsep}% measure of space to leave below the theorem. E.g.: 3pt
  {\itshape}% name of font to use in the body of the theorem
  {}% measure of space to indent
  {\bfseries}% name of head font
  {}% punctuation between head and body: NONE <-- only diff. from default
  { }% space after theorem head; " " = normal interword space
  {\thmname{#1}\thmnumber{ #2}\thmnote{ (#3)}}
%% Switch the active theorem style to 'PlainNoDot':
\theoremstyle{PlainNoDot}
%% Start creating theorem-like environments:
\newtheorem{theorem}{Theorem}[section]

\begin{document}
\setcounter{section}{2} % just for this example
\begin{theorem} Bla bla bla. \end{theorem}
\end{document}

verwandte Informationen