내 LaTeX
문서에서는 번호가 매겨진 정리를 사용했습니다.
\newtheorem{theorem}{Theorem}[section]
\begin{theorem}
......
\end{theorem}
정리에는 "정리 2.1"과 같은 번호가 매겨집니다.
제 질문은: 마지막 생리를 어떻게 없앨 수 있나요? "정리 2.1"을 인쇄하고 싶습니다.
답변1
다음 솔루션은 다음의 간단한 적용을 기반으로 합니다.이 답변~에 의해@egreg.
\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}