latex/example/example.tex

64 lines
1.3 KiB
TeX
Raw Normal View History

2022-09-13 10:23:58 +02:00
\chapter{Bilder} \label{sec:pictures}
\section{Einzeln}
2022-03-15 13:04:28 +01:00
\begin{figure}[H]
\begin{center}
2022-09-13 10:23:58 +02:00
\includegraphics[width=0.5\linewidth]{example}
\caption{Beispielbild 1}
\label{fig:example-1}
2022-03-15 13:04:28 +01:00
\end{center}
\end{figure}
2022-09-13 10:23:58 +02:00
\section{Doppelt}
2022-03-15 13:04:28 +01:00
2022-09-13 10:23:58 +02:00
\begin{figure}[H]
\begin{center}
\begin{subfigure}[b]{0.48\linewidth}
\includegraphics[width=\textwidth]{example}
\caption{Beispielbild 2}
\label{fig:example-2}
\end{subfigure}
\begin{subfigure}[b]{0.48\linewidth}
\includegraphics[width=\textwidth]{example}
\caption{Beispielbild 3}
\label{fig:example-3}
\end{subfigure}
\caption{Beispielbilder}
\label{fig:examples}
\end{center}
\end{figure}
2022-03-15 13:11:43 +01:00
2022-09-13 10:23:58 +02:00
Die \refa{fig:example-2} ist super!
2022-03-15 13:04:28 +01:00
2022-09-13 10:23:58 +02:00
Schau dir mal \refk{sec:pictures} an!
2022-03-15 13:04:28 +01:00
2022-09-13 10:23:58 +02:00
\chapter{Bibliography}
2022-03-15 13:07:57 +01:00
2022-09-13 10:23:58 +02:00
\cite[vgl.][]{example-book}
2022-03-15 13:07:57 +01:00
2022-09-13 10:23:58 +02:00
\cite[][ein Bild]{example-online}
2022-03-15 13:07:57 +01:00
2022-09-13 10:23:58 +02:00
Vielleicht reicht auch Google\wwwlink{google.de}...
2022-03-15 13:07:57 +01:00
2022-09-13 10:23:58 +02:00
\chapter{Abkürzungen}
2022-03-15 13:07:57 +01:00
2022-09-13 10:23:58 +02:00
\ac{html} ist super. \acf{js} wird ausgeschrieben \engl{written out}. \acs{js} wird nur abgekürzt.
\chapter{Programmierung}
\section{Lstlisting}
2022-03-15 13:07:57 +01:00
2022-03-15 13:04:28 +01:00
\begin{lstlisting}[language=Bash]
#!/bin/bash
echo "Hello World"
\end{lstlisting}
2022-09-13 10:23:58 +02:00
\section{Verbatim}
2022-03-15 13:04:28 +01:00
\begin{verbatim}
$ sudo apt-get update
$ sudo apt-get install python
\end{verbatim}