Fix casing
This commit is contained in:
parent
78bed6ebe9
commit
f16307ce8f
@ -1,4 +1,4 @@
|
|||||||
\chapter{Basic Document Structure}
|
\chapter{Basic document structure}
|
||||||
\label{sec:basic-document-structure}
|
\label{sec:basic-document-structure}
|
||||||
|
|
||||||
In essence, every \LaTeX{} document is composed of two parts: the first part is
|
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.
|
Let's take a closer look at the preamble.
|
||||||
A minimal preamble should contain the following specifications:
|
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
|
We can define a document class by using the command
|
||||||
\mintinline[breaklines,breakafter=\]]{latex}|\documentclass[<parameter>]{<document class>}|. The most
|
\mintinline[breaklines,breakafter=\]]{latex}|\documentclass[<parameter>]{<document class>}|. The most
|
||||||
commonly used document classes that are supported by default are
|
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.
|
landscape. The language can be passed as an optional parameter, too (cf.
|
||||||
\cref{sec:language}).
|
\cref{sec:language}).
|
||||||
|
|
||||||
\subsection{Digression: Packages}
|
\subsection{Digression: packages}
|
||||||
\label{sec:packages}
|
\label{sec:packages}
|
||||||
\begin{minted}{latex}
|
\begin{minted}{latex}
|
||||||
\usepackage[<optionen>]{<paketname>}
|
\usepackage[<optionen>]{<paketname>}
|
||||||
@ -127,7 +127,7 @@ can be included by using the following command:
|
|||||||
\foreignlanguage{<language>}{<text>}
|
\foreignlanguage{<language>}{<text>}
|
||||||
\end{minted}
|
\end{minted}
|
||||||
|
|
||||||
\section{Document Environment}
|
\section{Document environment}
|
||||||
The actual content of the \acro{PDF} document needs to be put between
|
The actual content of the \acro{PDF} document needs to be put between
|
||||||
\mintinline{latex}{\begin{document}} and \mintinline{latex}{\end{document}}.
|
\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
|
\mintinline{latex}{\textbackslash} must be used.\footnote{An overview of
|
||||||
additional special characters can be found in \cref{sec:special-characters}.}
|
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
|
Continuous text can be structured by headings that divide the document into
|
||||||
sections and chapters. Needless to say, \LaTeX{} provides us with commands for
|
sections and chapters. Needless to say, \LaTeX{} provides us with commands for
|
||||||
that.
|
that.
|
||||||
@ -183,7 +183,7 @@ parameter in square brackets between the command and the actual title:
|
|||||||
\section[Title in the TOC]{Actual Chapter Title}
|
\section[Title in the TOC]{Actual Chapter Title}
|
||||||
\end{minted}
|
\end{minted}
|
||||||
|
|
||||||
\subsection{Front Matter}
|
\subsection{Front matter}
|
||||||
A simple front matter can be created by using the command
|
A simple front matter can be created by using the command
|
||||||
\mintinline{latex}{\maketitle}. The values that get inserted into the front
|
\mintinline{latex}{\maketitle}. The values that get inserted into the front
|
||||||
matter must be specified within the preamble.
|
matter must be specified within the preamble.
|
||||||
|
|||||||
@ -1,6 +1,8 @@
|
|||||||
\chapter{How does \LaTeX function?}
|
\chapter{How does \LaTeX{} function?}
|
||||||
\label{sec:basic-functionality}
|
\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.
|
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.
|
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.
|
||||||
|
|
||||||
|
|||||||
@ -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}
|
\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:
|
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}}
|
\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.
|
If required, both refer to additional packages.
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user