From f16307ce8fdba2db4f1203a0dd5da92d6b8371e6 Mon Sep 17 00:00:00 2001 From: Florian Knoch Date: Tue, 10 Aug 2021 20:54:31 +0200 Subject: [PATCH] Fix casing --- content/basic-document-structure.tex | 12 ++++++------ content/basic-functionality.tex | 4 +++- content/prospects.tex | 2 +- 3 files changed, 10 insertions(+), 8 deletions(-) diff --git a/content/basic-document-structure.tex b/content/basic-document-structure.tex index 92f31d0..bd8163b 100644 --- a/content/basic-document-structure.tex +++ b/content/basic-document-structure.tex @@ -1,4 +1,4 @@ -\chapter{Basic Document Structure} +\chapter{Basic document structure} \label{sec:basic-document-structure} In essence, every \LaTeX{} document is composed of two parts: the first part is @@ -17,7 +17,7 @@ of our document, that is, the things that we will later see in our generated Let's take a closer look at the preamble. A minimal preamble should contain the following specifications: -\subsection{Document Class}\label{sec:document-class} +\subsection{Document class}\label{sec:document-class} We can define a document class by using the command \mintinline[breaklines,breakafter=\]]{latex}|\documentclass[]{}|. The most commonly used document classes that are supported by default are @@ -55,7 +55,7 @@ A5\footnote{The default case would be A4.}, and the orientation of the page to landscape. The language can be passed as an optional parameter, too (cf. \cref{sec:language}). -\subsection{Digression: Packages} +\subsection{Digression: packages} \label{sec:packages} \begin{minted}{latex} \usepackage[]{} @@ -127,7 +127,7 @@ can be included by using the following command: \foreignlanguage{}{} \end{minted} -\section{Document Environment} +\section{Document environment} The actual content of the \acro{PDF} document needs to be put between \mintinline{latex}{\begin{document}} and \mintinline{latex}{\end{document}}. @@ -158,7 +158,7 @@ In order to escape the backslash, the command \mintinline{latex}{\textbackslash} must be used.\footnote{An overview of additional special characters can be found in \cref{sec:special-characters}.} -\subsection{Sections and Chapters} +\subsection{Sections and chapters} Continuous text can be structured by headings that divide the document into sections and chapters. Needless to say, \LaTeX{} provides us with commands for that. @@ -183,7 +183,7 @@ parameter in square brackets between the command and the actual title: \section[Title in the TOC]{Actual Chapter Title} \end{minted} -\subsection{Front Matter} +\subsection{Front matter} A simple front matter can be created by using the command \mintinline{latex}{\maketitle}. The values that get inserted into the front matter must be specified within the preamble. diff --git a/content/basic-functionality.tex b/content/basic-functionality.tex index 0b01f0f..09981da 100644 --- a/content/basic-functionality.tex +++ b/content/basic-functionality.tex @@ -1,6 +1,8 @@ -\chapter{How does \LaTeX function?} +\chapter{How does \LaTeX{} function?} \label{sec:basic-functionality} +\todo{Really ``function'', not ``work''?} + Word processing and document creation programs use different approaches to create a document based on an edited file. When working with Microsoft Word, the rule is: a document exported as \acro{PDF} looks exactly like the source document in Word. Where a graphic is placed in Word, it is also found in the \acro{PDF}. Adjustments to the appearance in MS Word and other popular programs thus result in a direct visual change in the resulting export. This type of formatting is called \emph{What you see is what you get} (\acro{WYSIWYG} for short). Content and structure are closely linked. diff --git a/content/prospects.tex b/content/prospects.tex index 78281ee..28ac66c 100644 --- a/content/prospects.tex +++ b/content/prospects.tex @@ -113,7 +113,7 @@ We already have presented a selection of packages. However, there are thousands \noindent \texttt{beamer}, which is not a package, but another document class, can be used to create \textbf{slide shows} with \LaTeX{}. Information on the document class and examples are available at Overleaf\footnote{\url{https://www.overleaf.com/learn/latex/Beamer}}, which brings us to the next section: -\section{Help and Information} +\section{Help and information} \textbf{Wikibooks} provides you with a much more detailed introduction into \LaTeX{}. Note that the German version\footnote{\url{https://de.wikibooks.org/wiki/LaTeX-Kompendium}} is less complete than the English one.\footnote{\url{https://en.wikibooks.org/wiki/LaTeX}} If required, both refer to additional packages.