我对正在撰写的报告有疑问。第一次使用乳胶并在此处获得有关某些表格怪异的帮助后,我再次遇到了一个令人沮丧的愚蠢问题。数字不会停留在我放置的位置。我做了一个 MWE 贴在下面
\documentclass{article}
\usepackage{graphicx}
\graphicspath{ {./Figures/} }
%%%%%% Referencing %%%%%%
\usepackage{natbib}
\bibliographystyle{abbrvnat}
\setcitestyle{authoryear,open={(},close={)}}
\title{MWE}
\begin{document}
\maketitle
\section{Introduction}
The average sea surface temperature (SST) trend is shown in Figure \ref{fig:SST}.
\section{Figures}
\begin{figure}
\includegraphics[width = \linewidth]{Figures/SST.png}
\label{fig:SST}
\end{figure}
\section{References}
\bibliography{References.bib}
\bibliographystyle{agsm}
\end{document}
我预计,可能是一个错误,该图将被插入到“图”子标题下,但它出现在参考后的下一页上。我必须在文本中引用我的数字,因此 \ref{fig:SST} 所以它是可点击的。这不是尺寸问题,因为页面上有足够的空间来容纳图形。即使这是问题所在,我也希望参考子标题在它之后。