Vorlagen für Hausarbeiten, Diplomarbeiten, etc. von Usern für User.
Gast
Beitrag
von Gast » Di 8. Aug 2017, 16:51
Hallo
Nach dem Einfügen einer wrapfigure-Umgebung ist der Titel des nächsten Textes irgendwie verrückt. Ich weiss allerdings nicht, ob dies durch wrapfigure ausgelöst wurde...
Wie kann ich dies wieder ändern?
\documentclass[12pt,a4paper,ngerman]{report}
\usepackage{graphicx}
\usepackage{caption}
\usepackage{subcaption}
\usepackage{wrapfig}
\usepackage{caption}
\usepackage[ngerman]{babel}
\begin{document}
\subsection{Aufzucht}
Hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo
\begin{wrapfigure}{r}{7.5cm}
\centering
\includegraphics[scale=0.1]{Schuh}%
\caption{Schöne Schuhe}%
\end{wrapfigure}
Hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo
\newpage
\raggedright
\section{in der Schweiz zum Einsatz kommende HSH-Rassen}
\subsection{Hallo}
\end{document}
Gast
Beitrag
von Gast » Di 8. Aug 2017, 17:12
Etwas spekulativ, weil Dein Beispiel leider nicht lauffähig ist: Das passiert, weil für
wrapfig noch nicht genügend Text ausgegeben wurde. Es reagiert diesbezüglich nämlich nicht auf \newpage, sondern nur auf \clearpage:
\documentclass[12pt,a4paper,ngerman]{report}
\usepackage[demo]{graphicx}
\usepackage{caption}
\usepackage{subcaption}
\usepackage{wrapfig}
\usepackage{caption}
\usepackage[ngerman]{babel}
\begin{document}
\subsection{Aufzucht}
Hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo
\begin{wrapfigure}{r}{7.5cm}
\centering
\includegraphics[scale=0.1]{Schuh}%
\caption{Schöne Schuhe}%
\end{wrapfigure}
Hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo hallo
\clearpage
\section{in der Schweiz zum Einsatz kommende HSH-Rassen}
\subsection{Hallo}
\end{document}
Nächstes Mal bitte die
Minimalbeispiel -Anleitung beachten!
Gast
Beitrag
von Gast » Di 8. Aug 2017, 18:46
Herzliche Dank für die Hilfe.
Tut mir leid wegen dem Minimalbeispiel. War gerade im Stress und dachte, vlt. kann mir auch so jemand helfen.
Das konntest du ja! Danke!!