Questions tagged [bibtex]

a file format or tool for specifying bibliography entries, mostly used in tex-based document builders

Bibtex is a bibliography data format which is widely used in tex/latex documents. A bibtex entry consists of a subset of about 20 different data entries; the subset often depends on the document type.

A sample bibtex entry may look like this:

@article{consensus,
  author = {Jeroen Bruggeman and V.A. Traag and Justus Uitermark},
  year = {2012},
  title = {Detecting communities through network data.},
  journal = {American Sociological Review},
  volume = {77},
  number = {6},
  pages = {1050-1063},
  note = {A comment on 
    <a href="http://asr.sagepub.com/content/75/6/817.abstract">
    The temporal structure of scientific consensus formation
    </a>, with <a href="http://asr.sagepub.com/content/77/6/1064.extract">
    reply</a> from authors.},
  doi = {10.1177/0003122412463574},
  url = {http://asr.sagepub.com/content/77/6/1050.abstract},
  gsid = {3563051433438701877},
  pdfurl = {publications/ASR-comment.pdf}
}
410 questions
11
votes
3 answers

How to represent "{{" in a django template?

I'm trying to output in bibtex format in Django and the template looks like this: @{{ pubentry.type }{, author = {{% for author in pubentry.authors.all %}{{ author.first_name }} {{ author.middle_name }} {{ author.last_name }}{% if not…
rxin
  • 1,786
  • 16
  • 25
11
votes
3 answers

Is there a way to override a bibtex style file for a particular entry?

My preferred bibtex style file cites via author's initials. However, there are various texts which should be cited differently (for example, Elements Geometrie Algebrique should always be cited as [EGA]). I know how to modify this in the .bbl file…
David Zureick-Brown
  • 695
  • 1
  • 7
  • 13
11
votes
2 answers

Reference management with HTML/CSS/Javascript (BibTeX style)

HTML+CSS+Javascript tools offer a great way to create beautiful presentations (e.g. reveal.js + MathJax). However, I usually need to add citations to my presentations, and I would like to do that in a systematic way (so the bibliography is organized…
GermanK
  • 1,676
  • 2
  • 14
  • 21
10
votes
2 answers

Wrap URL (ignores margin) in BibTeX using pdfLaTeX

I'm using the breakurl package and the hyperref package with pdfLatex and BibTeX to cite a url. The url is breaking, but not according to my margins. Is there any way I can make the url recognize my margins or force a line break? Thanks in…
Andee
  • 227
  • 1
  • 4
  • 14
10
votes
4 answers

Create own BibTeX style or customize existing one?

I'm looking for a way to define new BibTeX style or to customize existing one. I have two reasons for this: I want the author names/editors to be italic (for articles in book, book, magazines, encyclopedia etc) I want numbers at the…
cupakob
  • 8,411
  • 24
  • 67
  • 76
9
votes
5 answers

Avoid \printbibliography being swallowed by Org-mode headings

When using Org-mode and its LaTeX export BibTeX or Biblatex is often used to handle references. In that case the LaTeX command \printbibliography is often included in the org file. \printbibliography is placed in the org file where LaTeX is supposed…
N.N.
  • 8,336
  • 12
  • 54
  • 94
8
votes
2 answers

Is there a way to download bibtex from Google Scholar using PHP

Hi, is there a way to download the BibTeX entry for something from Google Scholar using PHP without having to download the BibTeX manually one by one? For example, setting a search value like "research" and then downloading the related BibTeX from…
jarus
  • 1,853
  • 11
  • 44
  • 76
8
votes
2 answers

biber wants to load libcrypt.so.1 but it is missing

I am Arch GNU/Linux user who usually manages almost every package with pacman; I manage TeX and LaTeX-related things with tlmgr. I installed tlmgr from source. I am writing paper. I would like to use bibliography. When I tried latexmk -pdflua…
wjzkfl
  • 157
  • 1
  • 7
8
votes
1 answer

Use advanced cite commands (e.g., citetitle, citeauthor, footcite from biblatex/natbib) in R markdown file compiled as both PDF & HTML

Both natbib and biblatex offer a great variety of commands to insert citations. However, only a few of them seem to be available in R markdown: Description R markdown natbib Command biblatex Command Classical Citation: Author, year, and…
mavericks
  • 1,005
  • 17
  • 42
8
votes
2 answers

Using short author citations in bookdown/rmarkdown

In my report, I'm citing the Standards for Educational and Psychological Testing by AERA, APA, and NCME. @Book{standards, title = {{Standards for Educational and Psychological Testing}}, author = {{American Educational Research Association} and…
Jake Thompson
  • 2,591
  • 1
  • 16
  • 32
8
votes
1 answer

converting bibtex files to html with python (maybe pybtex?)

Hi I want to parse a bibtex publications file and sort for specific fields (e.g. year) and filter certain content, to then put it on a website. I came across pybtex, which works as far as reading and parsing the bibtex file, but it is basically not…
gletscher
  • 1,132
  • 2
  • 11
  • 18
8
votes
2 answers

Jupyter notebook with bibtex citations

I have a .ipynb file containing markdown text. I have a bibtex file called library.bib with all my references. I wish to cite one of these references in the Markdown cell. I've found information on how to render this when I do nbconvert, but how can…
James
  • 683
  • 9
  • 25
7
votes
5 answers

Bibtex on a webpage?

Are there any python packages to parse a Bibtex file, and output the result using html/xhtml format, with a customizable styles? Preferably, I would like to use python, otherwise what are the most used in PHP?
banx
  • 4,376
  • 4
  • 30
  • 34
7
votes
1 answer

knitcitations gives pandoc-citeproc error

I have the following document, that I am trying to compile with Rstudio: --- output: word_document: pandoc_args: [ "--biblio", "references.bib" ] --- ```{r} library("knitcitations") cleanbib() ``` This is a citation…
highBandWidth
  • 16,751
  • 20
  • 84
  • 131
6
votes
3 answers

How to automatically turn BibTex citation into something parseable by Zotero?

I have a citation system which publishes users notes to a wiki (Researchr). Programmatically, I have access to the full BibTeX record of each entry, and I also display this on the individual pages (for example - click on BibTeX). This is in the…
Stian Håklev
  • 1,240
  • 2
  • 14
  • 26
1 2
3
27 28