Tagged Questions

14
votes
2answers
18k views

How do I cite author in Latex?

How do I cite authors in Latex? I tried using natbib package ---- doc.tex ---- ... \usepackage{natbib} ... \citeauthor{736184} ... ---- doc.bib ---- @inproceedings{736184, author = {Broder, ...
9
votes
2answers
4k views

Compiling LaTex bib source

I am writing my thesis in Latex, and I have the references in an own thesis.bib file which look as follows @Article{xxx, author = "D.A. Reinhard", title = "Case Study", year = ...
2
votes
1answer
508 views

How to cite a document with multiple authors using natbib

I would like to cite a paper by three authors so that all three of them appear in the text. I'm using natbib with the apalike bibliography style. According to natbib's documentation, the way to do ...
1
vote
2answers
451 views

How to change citation format?

I'm using Harvard citations in a paper. I use the following options: \usepackage{natbib} \bibpunct{(}{)}{,}{a}{}{;} ... \bibliographystyle{plainnat} \bibliography{Comparison} When I use \cite and ...