According to the IEEE citation style reference, in case we cite urls the access time of the url should be indicated as well.
Does anybody know how to indicate this when using BibTeX?
Thanks,
Zoltan
...
Hi,
I have created a bibliography with JabRef 2.5. and grouped the bibitems according to their entrytype (article, book,...).
Now I would like to have a bibliography with "sub-headings":
BIBLIOGRAPHY
Journal Article (heading)
here should appear all bibitems belonging to the group entrytype=Article.
Book (heading)
here should appear al...
I am working on writing a scientific poster in LaTeX, and I want to include a few references for my work. Because this is a poster, I have my own customized headers for different sections, and don't want my related works to have a separate title. Essentially I have something like this:
\begin{textblock}{5.5}(19.5,11)
\CHead{Related Wo...
Hi
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 = "1985",
}
and I reference them in my main document as ~\cite{xxx}
When I compile then the main document with: pdflatex main.tex ...
I want to put a title field in a bibtex citation that includes angle brackets:
@article{
title= { <foo> }
}
but when it compiles I get upside down '!' and '?' instead. How to escape the angle bracket?
...
I'm using LaTeX and BibTeX for an article, and I want to able to cite the title of an article I reference. What is the command to do this?
I'm using \bibliographystyle{chicago} and it does not appear to be \citeT{}, \citetitle{} or \citeTitle{}
Thanks!
...
I want to generate the bibliography for each section, and have it at the end of the section. When I do this at the moment it generates the full bibliography and places it after each section.
Is there a way that this can be done?
The advice here says
"The chapterbib package provides an
option sectionbib that puts the
bibliogra...
I've seen this before, but I just can't find it.
I am writing a resume and want to include the articles from my bibtex file. If I write \cite{FOO} then they all appear at the end. I know that there is some way to say \something{FOO} and the FOO reference appears here.
Basically, I want this section of my CV to look like:
\something{FO...
Hi, I'm currently using the apalike style for my bibliography, using natbib for author-year, however when I generate the bibliography I lose the labels that normally precede the reference,
i.e. [S. Rostami, 2010] Shahin Rostami (2010) http://stackoverflow.com/questions/ask etc etc..
I read apalike.bst and it seems this is intended, my ...
Hi,
I was wondering how I can add \label into bibtex so that when I cite in my document and I can also \ref to it by clicking it and jumping to the Bibliography at the end?
for example:
@inproceedings{Boser92atraining,
abstract = {A training algorithm that maximizes the margin between the training patterns and the decision bo...
Hi,
I want to show some letters in Bibliography as capital. For example:
@misc{libsvm,
abstract = {LIBSVM is an implbmentation of Support vector machine (SVM).},
author = {Chang, Chih-Chung},
howpublished = {\url{http://www.csie.ntu.edu.tw/~cjlin/libsvm/}},
keywords = {svm},
posted-at = {2010-04-08 00:05:04},
priority = {2}...
Why is this item not shown properly in my bibliography?
@misc{ann,
abstract = {ANN is an implbmentation of nearest neighbor search.},
author = {David M. Mount and Sunil Arya},
howpublished = {\url{http://www.cs.umd.edu/~mount/ANN/}},
keywords = {knn},
posted-at = {2010-04-08 00:05:04},
priority = {2},
title ...
Hello all,
I am helping a colleague with his PhD thesis and we need to present the bibliography at the end of each chapter.
The question is: does anyone have a minimal working example for this case using latex+bibtex?
The current document structure that we use is the following:
main.tex
chap1.tex
chap2.tex
...
chapn.tex
biblio.bib
...
I have a huge .bib file generated automatically from Papers for Mac and all the capitalization in the .bib is already the way I want it, but it doesn't have {} brackets on word like RNA.
Is there a way to force BibTeX to keep the capitalization rather than change some words to lowercase?
...
I'm using the MLA authoring style. I would like to print out a bibliography subdivided into different sections. I also want annotations on each source. Is this possible with BibLaTeX? Should I just do it manually?
...
I have a paper submission in about 12 hours. I have written references in a separate .bib file in bibtex format. Now please tell how to merge the references with my paper written in MS word in the simplest/ easiest possible manner. I am looking for some automatic tool that does this.
I have never used bibtex before. In fact I came to kn...
I'm using three-letter abbreviations in BibTex for the months, but when I compile my document, the month-names come out in English.
Can I somehow change the output language?
I'm using natbib, but don't mind switching back to vanilla BibTeX if that's required.
...
Hi all,
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 \citep I get the following at the end of the pdf:
S.Shekhar and S.Chawla. Spatial databases: a tour. PrenticeHall, 2003.
Actua...
Hello,
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 this (and the way I remember doing it a few years ago) is to write \citet*{bibliographykeyhere}. Unfortunately, I can't get it to work...
How should I start writing a parser for BibTex files. As the initial design I see following steps.
List down grammar
Build a tokenizer
Do parsing of token stream against grammar
We also need some error mechanism, so the users uploading bibtex files can know line numbers where is the error in their BibTex files. I am looking for commu...