Beispieldateien für den Einsatz von LaTeX
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
627 B

%% Dokumentdeklaration
\documentclass{book}
%% Präambel
\usepackage{graphicx}
\graphicspath{{images/},{../some-other/path/}}
\usepackage[ngerman]{babel}
\usepackage{wrapfig}
\usepackage{blindtext}
\begin{document}
\tableofcontents
\chapter{start}
\blindtext
\begin{wrapfigure}{i}{0.5\textwidth}
% \centering
% \raggedleft
\includegraphics[width=0.5\textwidth]{SAKYH}
\caption{Karl's students }
% \label{fig:Karlsstudents}
\end{wrapfigure}
\blindtext
\blindtext
\blindtext
\cleardoublepage
\addcontentsline{toc}{chapter}{\listfigurename}
\listoffigures
\end{document}