如何阻止 Latex 开始新的页面?

如何阻止 Latex 开始新的页面?

我正在写一份双栏式报告,内部样式要求参考文献应打印在底部规则的末尾。结果却是这份参考书目(包含一个参考文献)打印在了新的一页上。真是浪费。我所做的是强制分栏,所以我知道如果我删除最后一栏中的图表,所有内容都可以放进去,但如果我将图表缩小一点,LaTeX 会忽略我的分栏,图表会溢出底部页面的一半。

所以实际上我认为这是两个问题:

  1. 如何在不使用multicol包的情况下强制在 LaTeX 中分列?

  2. 如何阻止 LaTeX 产生分页符?

这是我的代码:

\documentclass[10pt, twocolumn,secnumarabic,amssymb, nobibnotes, aps, prb]{revtex4-1}
\usepackage{graphicx}% Include figure files
\usepackage{dcolumn}% Align table columns on decimal point
\usepackage{bm}% bold math
\usepackage[utf8]{inputenc} 
\usepackage{amsmath}
\usepackage{caption}
\usepackage{booktabs}
\AtBeginDocument{
    \heavyrulewidth=.08em
    \lightrulewidth=.05em
    \cmidrulewidth=.03em
    \belowrulesep=.65ex
    \belowbottomsep=0pt
    \aboverulesep=.4ex
    \abovetopsep=0pt
    \cmidrulesep=\doublerulesep
    \cmidrulekern=.5em
    \defaultaddspace=.5em
}
\begin{document}
    \captionsetup[figure]{labelfont={bf},labelformat={default},labelsep=period,name={Slika}}
    
    \title{Title}%
    %*****************************
    \author{name}%
    \email{email}
    \affiliation{institution}
    \date{\today}%
    %*****************************
    
    \begin{abstract} 

    \end{abstract}
    
    %*****************************
    \maketitle
    %***************************
    \section{title}
    lorem ipsem
    \newpage
    \subsection{title}
    \begin{figure}[h!]
        \includegraphics[width=3.5cm]{helix.jpg}
        \caption{Ilustration}
        \label{helix}
    \end{figure}
    lorem ipsum
    \nopagebreak[4]
    \begin{thebibliography}{50}
        \bibitem{priprema}
        reference title 
    \end{thebibliography}
    \nopagebreak[4]
\end{document}

以下是该问题的图片:

浪费

相关内容