Biblatex citation styles
Introduction and example
Biblatex provides numerous citation styles but if no citation style is set LaTeX uses the one that matches the bibliography style. Here is a minimal example showing use of the biblatex parameter style=alphabetic to set the citation style to alphabetic.
\documentclass{article}
\usepackage[
backend=biber,
style=alphabetic,
]{biblatex}
\title{A bibLaTeX example}
\addbibresource{sample.bib} %Imports bibliography file
\begin{document}
\section{First section}
Items that are cited: \textit{The \LaTeX\ Companion} book \cite{latexcompanion} together with Einstein's journal paper \cite{einstein} and Dirac's book \cite{dirac}---which are physics-related items. Next, citing two of Knuth's books: \textit{Fundamental Algorithms} \cite{knuth-fa} and \textit{The Art of Computer Programming} \cite{knuth-acp}.
\medskip
\printbibliography
\end{document}
 Open this example in Overleaf (the sample.bib file is created for you).
This example produces the following output:
 
Citation styles
Standard citation styles include:
- numericImplements a numeric citation scheme intended for in-text citations. Should be employed in conjunction with the numeric bibliography style.
- numeric-compCompact variant of the- numericmode. Citations like [1, 2, 3] are replaced by [1-3].
- numeric-verbVerbose variant of the- numericstyle. Instead of [2, 5, 7] will print [2];[5];[7].
- alphabeticAlphabetic citation scheme similar to the standard- alphain style bibtex. To be used in conjunction with the alphabetic bibliography style.
- alphabetic-verbVerbose version of the- alphabeticstyle. Instead of [Doe98, Doe95, Farn2004] will print [Doe98];[Doe95];[Farn2004].
- authoryearImplements the author-year citation scheme. To be used in conjunction with the author-year bibliography style.
- authoryear-compCompact variant of the- authoryearstyle. Prints the author only once if subsequent references passed to a single citation command share the same author. Prints Doe 1992, 1995 instead of Doe 1992, Doe 1995.
- authoryear-ibidA variant of the- authoryearintended for footnote citations. Replaces repeated citations by the abbreviation ibidem.
- authoryear-icompA style combining the features of- authoryear-compand- authoryear-ibid
- authortitleImplements the author-title scheme. Intended for citations given in footnotes.
- authortitle-compCompact variant of- authortitle. Instead of Doe, First title; Doe, Second title this will print Doe, First title, Second title.
- authortitle-ibidA variant of the- authortitleintended for footnote citations. Replaces repeated citations by the abbreviation ibidem.
- authortitle-icompA style combining- authortitle-compand- authortitle-ibid.
- authortitle-terseVariant of- authoritlethat only prints the title if the bibliography contains more than one work of the respective author/editor.
- authortitle-tcompStyle combining- authortitle-terseand- authortitle-comp.
- authortitle-ticompStyle combining- authortitle-icompand- authortitle-terse.
- verboseCitation style that prints a full citation when the entry is cited for the first time and a short version afterwards.
- readingCitation style that goes with the bibliography style by the same name. Loads the- authortitlestyle.
There are other non-standard citation styles popular in different journals and thesis
- In Sciences:
- American Chemical Society (ACS) style
- American Institute of Physics (AIP) style
- American Mathematical Society (AMS) style
- Vancouver system
- Institute of Electrical and Electronics Engineers (IEEE) style
- Nature style
- Science style
 
- In Humanities:
- Chicago Style
- Harvard referencing style
- MLA style
 
- In Socials:
- American Psychological Association (APA) style
 
| Citation style | biblatexstylename | 
|---|---|
| ACS | chem-acs | 
| AIP | phys(*) | 
| Nature | nature | 
| Science | science | 
| IEEE | ieee | 
| Chicago | chicago-authordate | 
| MLA | mla | 
| APA | apa | 
(*) this is a new style, see http://ctan.org/pkg/biblatex-phys
Further reading
For more information see