图表使章节从页面中间开始

图表使章节从页面中间开始

我有一个章节,其中有一些文本,然后使用此代码包含一个图形。

\chapter{Mock-ups And Data Slicing Functionality}
 First text line.

 Second text line \ref{img: applicationPlot}.
 \begin{figure}[H]
 \includegraphics[width=\textwidth]{graphics/applicationPlot.pdf}
 \caption{OpenDiabetesVault: Graph}
 \label{img: applicationPlot}
 \end{figure}
 \begin{figure}[H]
 \includegraphics[width=\textwidth]{graphics/PlotLegend.png}
 \caption{OpenDiabetesVault: Graph Legends \cite{ODV}}
 \label{img: PlotLegend}
 \end{figure}

这会导致章节从非默认位置开始,而是浮动在 PDF 页面第二四分之一处的某个位置。删除它会将章节恢复到正常位置。找到所附图片enter image description here

包含的软件包如下

\usepackage[english,ngerman]{babel}
\usepackage[nottoc]{tocbibind}
\usepackage{wrapfig}
\usepackage{listings}
\usepackage{array}
\usepackage{tabularx}
\usepackage{float}

相关内容