% -----------------------------------------------------------------
% PREAMBLE
% -----------------------------------------------------------------
\documentclass[12pt,a4paper]{article}

% additional packages
\usepackage{natbib}

% Defintions
\bibpunct{(}{)}{;}{a}{,}{,}

% -----------------------------------------------------------------
% TITLE
% -----------------------------------------------------------------
\title{Example of Bibliography Creation Using BibTeX}
\author{Stuart P. Robinson\\{\tt Stuart.Robinson@mpi.nl}}
\date{\today}

% -----------------------------------------------------------------
% BEGIN DOCUMENT
% -----------------------------------------------------------------
\begin{document}

\maketitle
\tableofcontents
\pagebreak


% ---------------------------------------------------------
% PRELIMINARIES
% ---------------------------------------------------------
\section{Sample Section}
According to \cite{firchow:1969}, Rotokas has only 12 phonemes: 5
vowels and 6 consonants. This puts it at the extreme end of the
continuum of phonological inventory size \citep{maddieson:1984}.

% -----------------------------------------------------------------
% SECTION: BIBLIOGRAPHY
% -----------------------------------------------------------------
\newpage
\bibliography{references}
\bibliographystyle{linquiry2}


\end{document}

