BibTeX, biblatex and biberCitations and References in MLA Format

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
abstracted
Posts: 1
Joined: Sat Dec 08, 2012 11:22 am

Citations and References in MLA Format

Post by abstracted »

I've been searching the internet for hours trying to figure out how to configure BibTeX to use MLA format, but this seems impossible. Is there anyway to get BibTeX to use the MLA format?

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

User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Citations and References in MLA Format

Post by localghost »

I don't know how to do this with BibTeX. Probably by generating a custom BibTeX style file by custom-bib and its tool »makebst«.

With the biblatex-mla style for biblatex in conjunction with Biber (BibTeX replacement) there seems to be an easy method to get citations and references in MLF format.

Code: Select all

\documentclass[11pt,american]{article}
\usepackage[T1]{fontenc}
\usepackage{babel}
\usepackage{csquotes}
\usepackage[
  backend=biber,
  style=mla
]{biblatex}

\defbibheading{bibliography}{\section*{Bibliography}} 
\addbibresource{biblatex-examples.bib} % Replace with your own bibliography file(s)

\begin{document}
This is a citation \cite{knuth:ct:a}. Another citation \cite{companion}.

\printbibliography
\end{document}
The file "biblatex-examples.bib" is shipped with the biblatex package. So the above example should run on your system. Note that you need the following steps to get everything right (assumed that the above code is saved as "sample.tex").

Code: Select all

pdflatex sample
biber sample
pdflatex sample
pdflatex sample
These steps can certainly be done by your editor (and even automated) . Note that you have to configure your editor for the use of Biber.


Best regards and welcome to the board
Thorsten
Attachments
The resulting output.
The resulting output.
biblatex-mla-style.png (24.77 KiB) Viewed 8279 times
Post Reply