Text Formattingbiblatex | No Reference Labels and different Page Geometry

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
heavytull
Posts: 16
Joined: Wed Feb 08, 2012 9:38 pm

biblatex | No Reference Labels and different Page Geometry

Post by heavytull »

I'm using biblatex in my documents. I have a .bib file containing a list of bibliography entries (publications.bib). Here is the .tex file:

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}
I have three problems with the above code:
  1. Each bibliography entry is printed with its reference label. How can I get rid of them?
  2. 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
  3. 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.
Last edited by localghost on Thu Jun 21, 2012 9:36 am, edited 1 time 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.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

Post Reply