Is there any way to cite all articles in the bibliography (i.e. BiBTeX entries with @article type)?
I know there is a type option in the \printbibliography command. I want something like \cite[type=article]{*}...
UPD: For example, I have 100 articles in the bib file and 100 proceedings. I want to print the bibliography that shows the articles first, then the proceedings.
If I use the following code
\nocite{*}
\printbibliography[type=article,title={Articles}]
\printbibliography[type=inproceedings,title={Proceedings}]
I will have bad numeration (since the articles and the proceeding are "mixed" in the bib-file:
Articles:
1. Article#1
3. Article#2
4. Article#3
...
183. Arctice#100
Proceedings:
2. Proceeding#1
5. Proceeding#5
...
200. Proceeding#100
P.S. Manually citing all the papers in the correct order (\cite{article1, article2, ..., article100, proceeding1, proceeding2, ..., proceeding100}) is not a good option.
\nocite{*}\printbibliography[type=article,title={Bibliography}]? – Johannes_B Jun 26 '15 at 09:35citingall articles, orprintingall articles at the end? – Bernard Jun 26 '15 at 09:45Articles [1–20], Proceedings [21–25]. Note that the articles are cited first (they have ascending numbers from 1 to 20) – bcp Jun 26 '15 at 09:50\citecommand… – Bernard Jun 26 '15 at 10:20\cite{*}command in the text). (Once again, I don't want to write a long\cite{article1, article2, article3, article4, ...}command, since I have hundreds of references in my bib file). – bcp Jun 29 '15 at 07:39defernumbers=trueas explained in the example? If the problem persists, please consider posting a full MWE for us to play around with (usingbIblatex-examples.bibso you don't even have to use your private.bibfile). – moewe Jul 02 '15 at 06:54defernumbers=truesolves the problem. – bcp Jul 02 '15 at 08:08