参考列表的放置

参考列表的放置

我正在写一份很小的报告,其中我直接在文档中使用了一对声明为 bibitems 的参考文献,如下所示。

\begin{thebibliography}{}
\bibitem{title}
Title and author
\end{thebibliography}

我希望报告的最后一部分是附录,其中包含一些图表(使用“此处”位置插入)。但是,我的问题是参考列表显示在附录中的第一张图片之后,而不是附录之前。我该如何决定参考列表的位置?

下面是我的文档的精简版本(因为它是很好的 stackexchange 实践,而且无论如何,没有图像文件就无法准确渲染它)。这实际上按我想要的方式渲染,但如果有更多文本和正确的图像,它的渲染效果将如前所述。

\documentclass[a4paper]{article}

\usepackage[swedish]{babel}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{fixltx2e}
\usepackage{graphicx}

\title{
Title
}

\author{
}

\begin{document}
\providecommand{\abs}[1]{\vert#1\vert}
\setlength{\parindent}{0pt}

\maketitle

\section{Preface}
\subsection{Summary}

\subsection{Another section}
Some more text and an equation.
$$
F(s) = 4 \cdot \frac{ 2s+1 }{ 3s + 1 }
$$

\begin{figure}
\centering
\includegraphics[height=6cm]{fig1}
\caption{A caption}
\label{fig:gk}
\end{figure}

Some text

\begin{thebibliography}{}
\bibitem{title1}
  Author and title
\bibitem{title2}
  Title and author
\end{thebibliography}

\section{Appendix: Diagrams}

\begin{figure}[h]
\centering
\includegraphics[keepaspectratio,width=\textwidth]{pic1}
\caption{Caption}
\label{fig:gk}
\end{figure}

\begin{figure}[h]
\centering
\includegraphics[keepaspectratio,width=\textwidth]{pic2}
\caption{Caption}
\label{fig:gk}
\end{figure}

\begin{figure}[h]
\centering
\includegraphics[keepaspectratio,width=\textwidth]{pic3}
\caption{Caption}
\label{fig:gk}
\end{figure}

\end{document}

答案1

thebibliography\section使得附录不会浮动,它们只会出现在源中出现的位置。因此,如果您希望参考资料部分位于附录之前,只需将环境放在该位置即可。如果这不能解决问题,您需要提供完整的文档 MWE

相关内容