This is what I have so far:
Code: Select all
\usepackage{natbib}
\begin{document}
\cite{biber1987textual} has found some interesting results.
\nocite{*}
\bibliographystyle{abbrvnat}
\bibliography{BibDeskCostanza}
\end{document}
- in the text, I'd like to see the citation in round brackets, no commas unless there are multiple citations, no first names.
- in the reference list, I'd like to see:
- for books with one author:
author's last name (no comma) initials of author's first names [period] year of publication [period] title of the book, italics, all capital letters [period] address of publication [colon] publisher (no punctuation at the end) - for books with two authors:
first author's last name (no comma) initials of author's first names [comma] second author's last name (no comma) initials of author's first names [period] year of publication [period] title of the book, italics, all capital letters [period] address of publication [colon] publisher (no punctuation at the end) - for chapters in books:
author's last name (no comma) initials of author's first names [period] year of publication [period] title of the chapter, all capital letters [period] "In" editor's last name (no comma) initials of editor's first names [period] title of the book, italics, all capital letters [period] address of publication [colon] publisher (no comma) page numbers, separated by a single hyphen (no punctuation at the end) - for articles:
author's last name (no comma) initials of author's first names [period] year of publication [period] title of the article, all capital letters [period] name of journal, italics (no comma) journal number [colon, no spacing] page numbers, separated by a single hyphen (no punctuation at the end)
- for books with one author:
Many thanks!