Page LayoutBibliography with Fullpage Package

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
dward1996
Posts: 16
Joined: Thu Nov 25, 2010 2:32 pm

Bibliography with Fullpage Package

Post by dward1996 »

I am currently trying to add a bibliography to a report I am writing using the report document class with the fullpage package. However, the indentation of each entry seems extremely large. I know it must be possible to decrease this to a more natural level, but with my basic LaTeX knowledge need advice on how to do so. Here is the code I'm using:

Code: Select all

\documentclass[11pt]{report}

\usepackage{fullpage}

\begin{document}

\begin{thebibliography}{Burnside Papers}
\bibitem{Suzuki 2} Michio Suzuki.
\emph{Group Theory II}. English Edition, Springer-Verlag, New York, New York, U.S.A., 1986. x+621pp, ISBN 0-387-10916-1.
\end{thebibliography}

\end{document}
Thanks in advance for your help.
Last edited by dward1996 on Wed Feb 23, 2011 8:51 pm, 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

Frits
Posts: 169
Joined: Wed Feb 02, 2011 6:02 pm

Bibliography with Fullpage Package

Post by Frits »

Your problem lies in the following:

Code: Select all

\begin{thebibliography}{Burnside Papers}
The second argument (Burnside Papers) determines the amount of indentation used.

Try, for instance:

Code: Select all

\begin{thebibliography}{Burn}
\bibitem{Suzuki 2} Michio Suzuki.
\emph{Group Theory II}. English Edition, Springer-Verlag, New York, New York, U.S.A., 1986. x+621pp, ISBN 0-387-10916-1.
\end{thebibliography}
howtoTeX.com - Your LaTeX resource site (Tips, Tricks, Templates and more!)
Follow howtoTeX on twitter
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Bibliography with Fullpage Package

Post by localghost »

Page and paper dimensions are better set up with the geometry package. The argument for the widest label of thebibliography environment is typically given as »9« for bibliographies with less than 10 references, »99« for ones with less than 100, etc.


Best regards and welcome to the board
Thorsten
dward1996
Posts: 16
Joined: Thu Nov 25, 2010 2:32 pm

Bibliography with Fullpage Package

Post by dward1996 »

Frits wrote:Your problem lies in the following:

Code: Select all

\begin{thebibliography}{Burnside Papers}
The second argument (Burnside Papers) determines the amount of indentation used.
Thanks for the advice. I obviously misunderstood the book I read regarding bibliographies!
Post Reply