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 = ...
8
votes
4answers
817 views

Blinding a latex paper

Many journals require submission of a blinded version of your paper. The blinded version usually removes: the list of authors any citations to the authors' work How can I create a blinded version ...
3
votes
2answers
5k views

Putting citation text on same slide with LaTeX Beamer

By default, using \cite in the Beamer class of LaTeX places the actual citation information at the end of the presentation on a separate slide containing the bibliography. How does one get the ...
2
votes
1answer
507 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
450 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 ...
1
vote
1answer
116 views

How can I cite something as “e.g. Author, 200X” with natbib in LaTeX?

Is it possible to cite something in Latex so that the end result is (e.g. Author, 200X)? At the moment I use this: (e.g. \citep{Author200X}) But I was wondering if there was a better strategy. I'm ...
0
votes
1answer
659 views

Citation formatting and the hyperref package

I'm using the hyperref package in my document. One of the things that it does is create bookmarks in my pdf, based on the table of contents. Some section titles contain a reference to a citation ...
0
votes
4answers
3k views

Latex: Citations in section headings put into table of contents first

I have some citations for sections of my document that I have put in the section heading: \section{The title \cite{abc}, \cite{def}} Text I am also using the table of contents function, but Latex ...