Tagged Questions
The citations tag has no wiki summary.
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
1answer
360 views
How to export an R citation output into endnote?
How can I easily import citations from R into endnote obtained by for instance
citation("ggplot2")
Is there a good workflow for this or do I manually have to do it?
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 ...
3
votes
6answers
724 views
Does the computer science/software engineering field have a standardized citation format?
Wikipedia provides a number of citations used in the sciences, however does one stand out in computer science and software engineering related documents? My initial guess is to the IEEE format, as ...
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 ...
2
votes
3answers
1k views
Approximate Number of CPU Cycles for Various Operations
I am trying to find a reference for approximately how many CPU cycles various operations require.
I don't need exact numbers (as this is going to vary between CPUs) but I'd like something relatively ...
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 ...
1
vote
2answers
521 views
Latex-style citations in emacs and Wanderlust
I'm reading my email in emacs using Wanderlust client. I'm subscribed on a bunch of mailing lists and quite often I'm noticing well-formatted emails which employs LaTeX-style (most simple explanation ...
1
vote
3answers
222 views
What´s your favorite definition/citation of an Object (in general) in OOD? (from a book, a person (Meyer, Booch, Reenskaug, Wirfs-Brock etc..))
There are quite some interesting definitions of what an object in OO is? Please post your favorite definitions and quotes!
One of my favorites comes from Trygve Reenskaug:
"The object has three ...
0
votes
0answers
8 views
How to specify the number of citations of a source and the pages where are founded, in bibliography?
How to specify the number of citations of a source and the pages where are founded in bibliography of a Word 2007 document?
I use Harvard - Leeds style form http://bibword.codeplex.com/, which I have ...
0
votes
0answers
62 views
How to prevent/fix unwanted active hyperlinks in bibliography in Microsoft Word?
The Problem
My links in my bibliography in Microsoft Word are automatically active and delete my angular brackets.
Details
I'm using Microsoft 2007's to write an essay. I've been using the ...
0
votes
0answers
79 views
how to change order of citations in MS Word 2007 or 2010?
i when insert citations to my document, automatically order by first appearance in the document. but i want to reorder by what i like. such as:
books
articles
web pages
can you help me?
0
votes
1answer
661 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 ...