I'm about to deposit my thesis. The grad school administrators set out formatting requirements and someone from years past wrote some tex files (a document class?) that I'm using to make sure my thesis complies with the formatting requirements. The only problem is that whatever this person wrote indents every theorem, definition, lemma etc. So that no matter what I do (actually \noindent is the only thing I know to try), every new theorem looks like this:
obtained from
\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}
which looks really dumb. Especially when I state a theorem right after the first sentence of a new paragraph. Maybe this is impossible to answer without seeing the code for the document class (Actually its right here: http://www.brandeis.edu/departments/mathematics/graduate/current/brandiss.html )
but I was wondering if anyone knows how to fix this. I recall a few weeks ago I was able to do something that unindented everything, but if I did that I'd have to manually indent every paragraph and its a pretty long document.


\parindent=0pt? But then also the normal paragraph start will be unindented (ok in some part of the world, don't know over there). Anyway, the class seems just a slight overload over amsbook, so if you add a MWE with that class it would be useful to help us help you. – Rmano Apr 19 '17 at 07:34amsbookand it shows the same thing. I think that https://tex.stackexchange.com/questions/35215/using-the-amsbook-class is related. – Rmano Apr 19 '17 at 09:34brandissclass loadsamsbook. – Bernard Apr 19 '17 at 09:58amsbook(into which is builtamsthm) is to define a\newtheoremstyle. how to do this is is documented in theamsthmuser's guide (texdoc amsthm). which was completely rewritten about a year ago to give more and clearer examples. – barbara beeton Sep 19 '17 at 01:16