参考书目转到下一页,但我希望它继续到我当前的页面

参考书目转到下一页,但我希望它继续到我当前的页面

这是我的最低代码

%%%%%%%%%%%%%%%%%%%% author.tex %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% sample root file for your "contribution" to a proceedings volume
%
% Use this file as a template for your own input.
%
%%%%%%%%%%%%%%%% Springer %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\documentclass{svproc}

\usepackage{url}
\def\UrlFont{\rmfamily}
%\usepackage{ecrc}
\usepackage{amssymb}
\usepackage{graphicx,subfigure}
\usepackage{amssymb}
\usepackage[figuresright]{rotating}
\usepackage{algorithm}
\usepackage{algorithmic}
\usepackage{float}
\usepackage[numbers]{natbib}
\begin{document}
\mainmatter              % start of a contribution
%
    % typeset the title of the contribution
\begin{abstract}
fgggggggjmnfghndgcnnnnnbhhvbvbvbvbnnnvvncnv

\end{abstract}
\section{INTRODUCTION}
\label{sec1}
ghjfgjhmkfuyhjmjgmjk
fvjmnvjhnjmjhm,


\bibliographystyle{spbasic}
\bibliography{ref}

\end{document}

答案1

通常在参考书目之前有一个清除页,技巧是不要插入分页符:

%%%%%%%%%%%%%%%%%%%% author.tex %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% sample root file for your "contribution" to a proceedings volume
%
% Use this file as a template for your own input.
%
%%%%%%%%%%%%%%%% Springer %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\documentclass{svproc}

\usepackage{url}
\def\UrlFont{\rmfamily}
%\usepackage{ecrc}
\usepackage{amssymb}
\usepackage{graphicx,subfigure}
\usepackage{amssymb}
\usepackage[figuresright]{rotating}
\usepackage{algorithm}
\usepackage{algorithmic}
\usepackage{float}
\usepackage[numbers]{natbib}


\usepackage{filecontents}
\begin{filecontents*}{bib.bib}
@book{knuth,
  author       = {Knuth, Donald E.},
  title        = {The {\TeX} book},
  date         = 1984,
  maintitle    = {Computers \& Typesetting},
  volume       = {A},
  publisher    = {Addison-Wesley},
  location     = {Reading, Mass.},
  langid       = {english},
  langidopts   = {variant=american},
  sortyear     = {1984-1},
  sorttitle    = {Computers & Typesetting A},
  indexsorttitle= {The TeXbook},
  indextitle   = {\protect\TeX book, The},
  shorttitle   = {\TeX book}
}
\end{filecontents*}

\begin{document}
\mainmatter              % start of a contribution
%
    % typeset the title of the contribution
\begin{abstract}
fgggggggjmnfghndgcnnnnnbhhvbvbvbvbnnnvvncnv

\end{abstract}
\section{INTRODUCTION}
\label{sec1}
ghjfgjhmkfuyhjmjgmjk
fvjmnvjhnjmjhm,
\cite{knuth}

\begingroup

\renewcommand{\clearpage}{}
\bibliographystyle{spbasic}
\bibliography{bib}

\endgroup

\end{document}

在此处输入图片描述

相关内容