bibtex:在参考书目前没有分页符

bibtex:在参考书目前没有分页符

如果我使用 bibtex(而不是 biblatex),如何避免转到新的参考书目页面?

以下是我的示例:

\documentclass{report}
\usepackage{lipsum}% just to generate text for the example
\begin{document}
\lipsum[1]
\cite{joachims1998making}
\bibliographystyle{apalike}  
\bibliography{scrap_ref}
\end{document}

scrap_ref.bib的内容:

@techreport{joachims1998making,
title={Making large-scale SVM learning practical},
author={Joachims, Thorsten},
year={1998},
institution={Technical Report, SFB 475: Komplexit{\"a}tsreduktion in 
Multivariaten Datenstrukturen, Universit{\"a}t Dortmund}
}

答案1

为了防止出现新页面,您可以暂时重新定义\clearpage通常在新章节开始时发布的页面。

\documentclass{report}
\usepackage{lipsum}% just to generate text for the example

\usepackage{filecontents}
\begin{filecontents*}{\jobname.bib}
@techreport{joachims1998making,
title={Making large-scale SVM learning practical},
author={Joachims, Thorsten},
year={1998},
institution={Technical Report, SFB 475: Komplexit{\"a}tsreduktion in 
Multivariaten Datenstrukturen, Universit{\"a}t Dortmund}
}

\end{filecontents*}

\begin{document}
\lipsum[1]
\cite{joachims1998making}
\bibliographystyle{apalike}

{
\renewcommand{\clearpage}{} 
\bibliography{\jobname}
}
\end{document}

相关内容