I'm writing a CV-like document in order to be able to officially mentor PhD students. I face a major issue regarding the bibliography.
My bibliography must be managed like this:
- multi-sections: one for journals, one for books, one for conference proceedings...
- chronological or reversed chronological order
- my name must be highlighted
- references: cited AND non-cited ones
I'm able to solve points 1 to 3 BUT each time I want to print cited references with non-cited ones, cited references are placed at the beginning of each sub-sections (journals, books...) without keeping the original citing order (chronological or reversed chronological). How to solve this issue?
My template use the multibib package and BibTeX.
Hereafter, an example of my code:
\documentclass[french]{hdrapplication}
\usepackage{ae,lmodern}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{textcomp}
\usepackage{textgreek}
\usepackage{hyperref}
\usepackage{array}
\usepackage{color}
\usepackage{xstring}
%\usepackage[resetlabels]{multibib} % Present in the appropriate cls file
\newcites{bookall}{Books}
\newcites{journalall}{Journals}
\newcites{proceedingsall}{Conferences}
\newcites{othersall}{Others}
\begin{document}
My first publication \citeproceedings{RN1} was published in 2006...
With this Phd student, we publised 2 papers \citejournal{RN2}\citeproceedings{RN3}...
\section{References}
% Name & bold
\def\FormatName#1{%
\IfSubStr{#1}{StefM}{\textbf{#1}}{#1}%
}
\begingroup
\makeatletter
\renewcommand{\@seccntformat}[1]{}
\renewcommand{\refname}{}%
\makeatother
\bibliographystylebook{unsrt}
\bibliographybook{myBiblio_book}
\nocitebook{*}
\bibliographystylejournal{unsrt}
\bibliographyjournal{myBiblio_journal}
\nocitejournal{*}
\bibliographystyleproceedings{unsrt}
\bibliographyproceedings{myBiblio_proceedings}
\nociteproceedings{*}
\bibliographystyleotherss{unsrt}
\bibliographyothers{myBiblio_others}
\nociteothers{*}
\endgroup
\end{document}
Configuration: - TeXMaker 5.0.3 - MiKTeX 2.9 - BiBTeX
\nocite{*}in the preamble. This being said, it is quite easy to obtain what you want withbiblatex: e.g.\printbibliography[type=book, heading=subbibliography, title=Books]. – Bernard May 19 '20 at 15:31\nocite{*}can't be in the preamble. I tried to usebiblatexalso without success... Indeed, I can't have cited AND non-cited references at the same time! Maybe I'm wrong. – StefM May 19 '20 at 15:46\nocite{*}should not appear in the preamble. From the BibTeX documentation: "Giving this command, in essence,\nocites all the entries in the database, in database order, at the very spot in your document where you give the command." So the best place to input\nocite{*}is probably just before\printbibliography. – barbara beeton May 19 '20 at 19:31