如何取消定理縮排

如何取消定理縮排

我正要交論文。研究生院管理人員制定了格式要求,過去幾年的某人編寫了一些 tex 文件(文檔類?),我用它們來確保我的論文符合格式要求。唯一的問題是,無論這個人寫什麼,都會縮進每個定理、定義、引理等。 因此,無論我做什麼(實際上\noindent 是我唯一知道要嘗試的事情),每個新定理看起來都是這樣的:

在此輸入影像描述

從...獲取

\documentclass{brandiss}
\newtheorem*{main}{Theorem}
\newtheorem{thm}{Theorem}[section]
\begin{document}
\noindent Here's a non-indented line of text.
\begin{thm}
Here's a Theorem
\end{thm}
\end{document}

這看起來真的很愚蠢。特別是當我在新段落的第一句之後陳述一個定理時。如果沒有看到文檔類別的程式碼,也許這是不可能回答的(實際上它就在這裡:http://www.brandeis.edu/departments/mathematics/graduate/current/brandiss.html

但我想知道是否有人知道如何解決這個問題。我記得幾週前我能夠做一些取消縮進所有內容的事情,但如果我這樣做,我必須手動縮進每個段落,並且它是一個相當長的文檔。

答案1

你可以嘗試這個(來自這另一個問題):

\documentclass{amsbook}

%%% added in the preamble 
\usepackage{etoolbox}
\makeatletter
\patchcmd\@thm
  {\let\thm@indent\indent}{\let\thm@indent\noindent}%
  {}{}
\makeatother
%%% end added code 

\newtheorem*{main}{Theorem}
\newtheorem{thm}{Theorem}[section]
\begin{document}
\noindent Here's a non-indented line of text.
\begin{thm}
Here's a Theorem
\end{thm}
\end{document}

我檢查過,amsbook但應該適用於您的文件類別。

在此輸入影像描述

相關內容