一页中有两份参考书目

一页中有两份参考书目

我正在使用该multibib包和该文档reportpdflatex

这是我的.tex文件:

\documentclass[a4paper]{report}
    \usepackage{multibib}
        \newcites{readinglist}{Reading List}
        \newcites{resources}{Resources}
\begin{document}
    \bibliographystylereadinglist{plain}
    \bibliographyreadinglist{readinglist}
    \bibliographystyleresources{plain}
    \bibliographyresources{resources}
\end{document}

输出结果如下:

由于我的阅读清单和资源都很短,我想将它们放在同一页上。另外,我想继续用作report我的文档类。

答案1

尝试在参考书目周围添加\begingroup和,然后在 之后添加。像这样:\endgroup\def\chapter*#1{\section*{#1}}\begingroup

\documentclass[a4paper]{report}

\usepackage{multibib}

\newcites{readinglist}{Reading List}
\newcites{resources}{Resources}

\begin{document}

\begingroup
    \def\chapter*#1{\section*{#1}}
    \bibliographystylereadinglist{plain}
    \bibliographyreadinglist{readinglist}
    \bibliographystyleresources{plain}
    \bibliographyresources{resources}
\endgroup
\end{document}

代码\def\chapter*#1{\section*{#1}}将 chapter 命令重新定义为 section 命令。参考书目倾​​向于使用 chapter 命令作为标题,但现在它将改用 section 命令,这样不会强制生成新页面 :)

相关内容