33 lines
544 B
TeX
33 lines
544 B
TeX
|
\section{Example}
|
||
|
|
||
|
\begin{figure}[H]
|
||
|
\begin{center}
|
||
|
\includegraphics[width=0.8\textwidth]{example}
|
||
|
\caption{Example Image}
|
||
|
\label{fig:example}
|
||
|
\end{center}
|
||
|
\end{figure}
|
||
|
|
||
|
\cite[vgl. dazu][]{example-book}
|
||
|
|
||
|
\cite[vgl. dazu][]{example-online}
|
||
|
|
||
|
\newpage
|
||
|
|
||
|
\begin{lstlisting}[language=Bash]
|
||
|
#!/bin/bash
|
||
|
|
||
|
echo "Hello World"
|
||
|
\end{lstlisting}
|
||
|
|
||
|
\begin{lstlisting}[language=Python]
|
||
|
# same in python
|
||
|
|
||
|
print("Hello World")
|
||
|
\end{lstlisting}
|
||
|
|
||
|
\begin{verbatim}
|
||
|
$ sudo apt-get update
|
||
|
$ sudo apt-get install python
|
||
|
\end{verbatim}
|