我有一些简单的 LaTeX 代码,结构如下:
- 介绍
- 结果
- 讨论
结果部分由十个表格组成。问题在于,讨论部分的标题(以及后续的文本/表格)不断上升,并随机分布在结果的表格中。在过去的两个小时里,我一直在尝试解决这个问题,使用、 和 等float
包的组合,但无济于事。我正在 OverLeaf 中工作。这是我的论文的链接:[H]
vspace
纸。 任何帮助将非常感激。
我还看了一个很少 其他 问题并尝试实施他们的建议(\FloatBarrier
、placeins
等),但无济于事。
以下是一些代码:
\documentclass[12pt]{article}
\usepackage{multirow}
\usepackage{float}
\usepackage{physics}
\usepackage{siunitx}
\usepackage{enumerate}
\usepackage{array}
\usepackage{enumitem}
\usepackage[dvipsnames]{xcolor}
\usepackage{tikz}
\usepackage{graphicx,booktabs}
\begin{document}
\title{Very Important Paper}
\author{Billy Ards}
\date{\today}
\maketitle
\section{Introduction}
Lorem Ipsum
\section{Results}
\begin{table}[h!]
\begin{center}
\begin{tabular}{ c p{5cm} p{5cm} }
\toprule
Configuration & Word & Prediction \\
\cmidrule(r){1-1}\cmidrule(lr){2-2}\cmidrule(l){3-3}
\raisebox{-\totalheight}{\includegraphics[width=0.3\textwidth]{B1.png}}
&
stuff in table
&
stuff in table
\\ \bottomrule
\end{tabular}
\caption{$(60,60,60), 60^{\circ}$, P}
\label{tbl:myLboro}
\end{center}
\end{table}
\begin{table}[t]
\begin{center}
\begin{tabular}{ c p{5cm} p{5cm} }
\toprule
Configuration & Word & Prediction \\
\cmidrule(r){1-1}\cmidrule(lr){2-2}\cmidrule(l){3-3}
\raisebox{-\totalheight}{\includegraphics[width=0.3\textwidth]{B2.png}}
&
text in table
&
text in table
\\ \bottomrule
\end{tabular}
\caption{$(60,60,60), 80^{\circ}$, E}
\label{tbl:myLboro}
\end{center}
\end{table}
\begin{table}[h]
\begin{center}
\begin{tabular}{ c p{5cm} p{5cm} }
\toprule
Configuration & Word & Prediction \\
\cmidrule(r){1-1}\cmidrule(lr){2-2}\cmidrule(l){3-3}
\raisebox{-\totalheight}{\includegraphics[width=0.3\textwidth]{B3.png}}
&
text in table
&
text in table
\\ \bottomrule
\end{tabular}
\caption{$(60,60,60), 45^{\circ}$, E}
\label{tbl:myLboro}
\end{center}
\end{table}
\begin{table}[b!]
\begin{center}
\begin{tabular}{ c p{5cm} p{5cm} }
\toprule
Configuration & Word & Prediction \\
\cmidrule(r){1-1}\cmidrule(lr){2-2}\cmidrule(l){3-3}
\raisebox{-\totalheight}{\includegraphics[width=0.3\textwidth]{B4.png}}
&
text in table
&
text in table
\\ \bottomrule
\end{tabular}
\caption{$(60,60,60), 30^{\circ}$, E}
\label{tbl:myLboro}
\end{center}
\end{table}
\section{Discussion}
\begin{figure}[H]
\centering
\includegraphics[width=14cm]{Picture.png}
\caption{These are really important.}
\end{figure}
答案1
我做到了!好极了!这\usepackage[section]{placeins}
就是解决方案!虽然我以前用过它,但我肯定忘记添加参数[section]
了。它真的有效!好极了!