I found this: How to change the font style in theorem environment? as well as this: Italic in theorem environment Neither however seem to make sense to me as I have been using the following:
\newtheorem{theorem}{Theorem}[section]
\begin{theorem} \emph{(Fundamental Lemma)} Let $A$ and $A'$ with collections $\partial$ and
Stuff goes here: But it becomes "italicized"
\end{theorem}
However it seems that with the above two links one is either just defining whole new constructs (which I somewhat understand), or just using \textbf, which I don't want the \textbf to override the italics as I don't want bold faced text. What I am after is being able to construct a "Theorem" which keeps track of the numbering and updates itself i.e. 1.1 to 1.2 if another theorem tag is added before.
\begin{theorem}[Fundamental Lemma]instead of\begin{theorem} \emph{(Fundamental Lemma)}– Ruben Apr 14 '14 at 22:35ntheorem, not mentioned in the answers to question 38260. – Bernard Apr 14 '14 at 22:50amsthm):\theoremstyle{definition} \newtheorem{mytheorem}{Theorem}[section] ... \begin{mytheorem}[\emph{Fundamental lemma}] theorem text \end{mytheorem}which will put the theorem text in roman type, not italic. (i'm not entirely clear about this; the question sends me a mixed message.) – barbara beeton Apr 14 '14 at 22:55