介绍和除定理和引理之外...其他部分得到斜体

介绍和除定理和引理之外...其他部分得到斜体

我试图查看第二章引言部分中斜体显示的代码是什么,以及我所写的内容(引理、命题等除外),如图所示。但在第 0 章中,所有内容似乎都很好,它们没有被斜体显示。

\documentclass[12pt,a4paper]{report}
\usepackage[latin1]{inputenc}
\usepackage{amsmath, amsfonts,amssymb, amsthm,}
\usepackage{verbatim}
\usepackage[colorlinks = true]{hyperref}
\usepackage[square,sort,comma,numbers]{natbib}
\usepackage[a4paper, total={6in, 9in}]{geometry}
\newtheorem{thm}{Theorem}[chapter]
\newtheorem{propn}[thm]{Proposition}
\usepackage{makeidx}
\usepackage{enumerate}
\setcounter{chapter}{-1}
\usepackage{setspace}
\usepackage{enumitem}
\setstretch{1.15}
\hyphenpenalty
\exhyphenpenalty
\begin{document}
\newpage

\chapter{Preliminaries \& Notations}
\vspace{1cm}


Throughout these notes A
\newpage


simpler and eye soothing form
$$K_1(A) = \frac{GL(A)}{E(A)}$$  
\newpage
\chapter{Cohn's Example} 
    \vspace{1cm}
In the last chapter we



    

在上一章中我们证明了对于欧氏环 $A$ 子群 \end{document}

我附加了屏幕截图和乳胶文件,以便有人可以告诉我要更改什么。 第2章 第 0 章

Latex 压缩文件

我对乳胶了解不多,我学它是为了写项目,所以如果可能的话,请把我当作这个领域的新手。

谢谢

答案1

问题很简单。你正在使用

\propn $[GL(A), GL(A)] = E(A) = [E(A), E(A)].$

这是错误的语法。

必须

\begin{propn}
$[GL(A), GL(A)] = E(A) = [E(A), E(A)].$
\end{propn}

当然,同样\thm如此必须

\begin{thm}
Statement
\end{thm}

顺便说一句,$$不是 LaTeX 构造。请用 替换\[...\]

相关内容