BibTeX, biblatex and bibermultibib | Output with different Classes

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
Liberitus
Posts: 2
Joined: Thu Nov 10, 2011 3:14 pm

multibib | Output with different Classes

Post by Liberitus »

Hello,

I make a bibliography divided in two parts using multibib with this code

Code: Select all

\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}
Currently I get this
double.png
double.png (56.24 KiB) Viewed 1549 times
But if I compile the document in Article mode I get this
single.png
single.png (47.32 KiB) Viewed 1549 times
Finaly, I would like to have the rendering article mode in report mode.

Thank you for your help.
Last edited by Liberitus on Thu Nov 10, 2011 6:45 pm, edited 2 times in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

Liberitus
Posts: 2
Joined: Thu Nov 10, 2011 3:14 pm

multibib | Output with different Classes

Post by Liberitus »

There is an answer for my problem

Code: Select all

\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
The original link
http://tex.stackexchange.com/questions/ ... eport-mode
Post Reply