Code: Select all
\documentclass[a4paper,12pt]{article}
\usepackage[style=numeric,subentry]{biblatex}
\addbibresource{publications.bib}
\usepackage[utf8]{inputenc}
\usepackage[hmargin=2cm,bottom=3cm,top=2.3cm]{geometry}
\pagenumbering{arabic}
\begin{document}
\newgeometry{hmargin=2cm,bottom=3cm,top=1.5cm}
\maketitle
\nocite{*}
\printbibliography[type=article,title={Journal papers},maxnames=99]
\printbibliography[type=inproceedings,title={Conferences},maxnames=99]
\end{document}
- Each bibliography entry is printed with its reference label. How can I get rid of them?
- The .bib file contains sufficient entries to make the output file longer than one page but the page number doesn't get printed while I'm indeed running latex twice
- I would like only the first page with the geometry specified to
\newgeometry
but since\printbibliography
can spread over more than one page, I don't know where to put\restoregeometry
.