From 9c486a94137e0673147d55c4eb39b4e1f6372b7a Mon Sep 17 00:00:00 2001 From: Kenneth Odle Date: Tue, 31 Oct 2023 14:58:38 -0400 Subject: [PATCH] Miscellaneous typofixes --- lbol.tex | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lbol.tex b/lbol.tex index 04819a7..10ac2e3 100644 --- a/lbol.tex +++ b/lbol.tex @@ -692,7 +692,7 @@ Lists in \LaTeX{} can be nested, as the following examples will show. \section{Enumerate} -\texttt{enumerate} is used to create numbered lists. They can be nested to create an outline. To prevent \LaTeX{} from adding a lot of space between the item numbers, add the \texttt{enumitem} package pass the \texttt{[noitemsep]} to the environment. +\texttt{enumerate} is used to create numbered lists. They can be nested to create an outline. To prevent \LaTeX{} from adding a lot of space between the item numbers, add the \texttt{enumitem} package and pass the \texttt{[noitemsep]} to the environment. For example, this code: @@ -1156,7 +1156,7 @@ The typical way of doing this requires use of the \Verb+\multicolumn+ command (w \chapter{Math in \LaTeX{}}\label{ch:math} -\LaTeX{} has a couple of different environments that are useful for typesetting math (\texttt{align} and \texttt{array}, but they get a little beyond what I want to cover here. In addition, there are other packages (in particular \texttt{amsmath} and \texttt{mathtools}) that greatly extend the power of LaTeX to handle mathematical typesettings, but again, they are beyond the scope of this book. +\LaTeX{} has a couple of different environments that are useful for typesetting math (\texttt{align} and \texttt{array}, but they get a little beyond what I want to cover here. In addition, there are other packages (in particular \texttt{amsmath} and \texttt{mathtools}) that greatly extend the power of LaTeX to handle mathematical typesetting, but again, they are beyond the scope of this book. \section{Math Entry Modes}\label{math-entry-modes} @@ -1311,7 +1311,7 @@ a_2+d_2-e_2 & = b_2+c_2 A couple of things to note: \begin{itemize}[noitemsep] - \item \texttt{align} is itself a math environment, so you don't need to use a separate math entry mode as described above. + \item \texttt{align} is itself a math environment, so you don't need to use a separate math entry mode as described previously. \item \texttt{align} (no asterisk) produces numbered equations, whereas \texttt{align*} produces unnumbered equations. \end{itemize}