如何让多方报告模式呈现文章模式

如何让多方报告模式呈现文章模式

multibib我使用此代码将书目分为两部分

\documentclass[a4paper,12pt]{scrreprt}
...
\usepackage{multibib}
...
\newcites{doc}{Documentation citees}
...
\begin{document}
...
\bibliographystyledoc{plain-fr}
\bibliographydoc{biblio}

\renewcommand\refname{%
    R\'{e}f\'{e}rences g\'{e}n\'{e}rales}
\bibliographystyle{plain-fr}
\bibliography{biblio}
\end{document}

目前我得到了这个

双倍的

但如果我在文章模式下编译文档,我会得到这个

简单的

最后,我希望在报告模式下拥有渲染文章模式。

答案1

相关命令撰稿人(以及记事本报告)\bibname代替\refname;为了避免分页符,有一个巧妙的技巧:在本地重新定义\clearpage

\cleardoublepage
\begingroup\renewcommand{\clearpage}{}
\bibliographystyledoc{plain-fr}
\bibliographydoc{biblio}

\renewcommand\bibname{%
    R\'{e}f\'{e}rences g\'{e}n\'{e}rales}
\bibliographystyle{plain-fr}
\bibliography{biblio}
\endgroup

\begingroup-对\endgroup将更改保持在本地。

相关内容