图形四处飘浮

图形四处飘浮

我写了这段 LaTeX 代码

\chapter{Datenmodellierung}
\paragraph{Fremdschlüssel}
\includegraphics[width=0.4\textwidth]{Resources/Included Graphics/foreign_keys_example.png}

\paragraph{Integritätsprüfung via Checks}
\includegraphics[width=0.4\textwidth]{Resources/Included Graphics/integrity_checking.png}

并期望它看起来像一个标题,然后是下一行中的一张图片,然后再次是一个标题(在新行中),最后是另一行中的第二个图形。

不幸的是,它看起来像这样:

因此,也许使用数字有帮助...不,没有帮助:

\chapter{Datenmodellierung}
\paragraph{Fremdschlüssel}
\begin{figure}
    \includegraphics[width=0.4\textwidth]{Resources/Included Graphics/foreign_keys_example.png}
\end{figure}

\paragraph{Integritätsprüfung via Checks}
\begin{figure}
    \includegraphics[width=0.4\textwidth]{Resources/Included Graphics/integrity_checking.png}
\end{figure}

我当然在 Google 上搜索了这个问题并找到了解决方案:插入浮动屏障并使用包placeins

我像这样插入它们

\chapter{Datenmodellierung}
\paragraph{Fremdschlüssel}
\FloatBarrier
\begin{figure}
    \includegraphics[width=0.4\textwidth]{Resources/Included Graphics/foreign_keys_example.png}
\end{figure}

\FloatBarrier
\paragraph{Integritätsprüfung via Checks}
\FloatBarrier
\begin{figure}
    \includegraphics[width=0.4\textwidth]{Resources/Included Graphics/integrity_checking.png}
\end{figure}

不知怎的,情况变得更糟了:

我想让东西完全不漂浮。这可能吗?

我已经在表格声明后面使用了包float和s ( ) 来阻止它们到处浮动。但是,这对图形的浮动没有帮助。H\begin{table}[H]

文章类型为report

答案1

标准行为\paragraph是在线打印标题。

如果希望标题后有换行符,请输入

\paragraph{Fremdschlüssel}\mbox{}\\*
\includegraphics[width=0.4\textwidth]{Resources/Included Graphics/foreign_keys_example.png}

相关内容