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

Learn LaTeX easily with newest books:

The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis

The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more

LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis

Post Reply