0

I have tried to see what is that code which is italicized the introductory part of second chapter and whatever I am writing except lemma, propositions etc as shown in pictures. But in chapter 0 everything seems good they are not getting italicized.

\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

In the last chapter we proved that for a Euclidean ring $A$ subgroup \end{document}

I am attaching screenshots and latex file so that someone can tell me what to change. Chapter 2 Chapter 0

Latex zip file.

I don't have much knowledge of latex I have learned it to write project so please if possible treat me as naive in this field.

Thank you

1 Answers1

1

The problem is very simple. You're using

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

which is wrong syntax.

It must be

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

The same, of course, with \thm that must be

\begin{thm}
Statement
\end{thm}

By the way, $$ is not a LaTeX construct. Replace with \[...\].

egreg
  • 1,121,712