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.

36 lines
627 B

  1. %% Dokumentdeklaration
  2. \documentclass{book}
  3. %% Präambel
  4. \usepackage{graphicx}
  5. \graphicspath{{images/},{../some-other/path/}}
  6. \usepackage[ngerman]{babel}
  7. \usepackage{wrapfig}
  8. \usepackage{blindtext}
  9. \begin{document}
  10. \tableofcontents
  11. \chapter{start}
  12. \blindtext
  13. \begin{wrapfigure}{i}{0.5\textwidth}
  14. % \centering
  15. % \raggedleft
  16. \includegraphics[width=0.5\textwidth]{SAKYH}
  17. \caption{Karl's students }
  18. % \label{fig:Karlsstudents}
  19. \end{wrapfigure}
  20. \blindtext
  21. \blindtext
  22. \blindtext
  23. \cleardoublepage
  24. \addcontentsline{toc}{chapter}{\listfigurename}
  25. \listoffigures
  26. \end{document}