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
0
votes
0 answers

Latex/bibtex: how can I change the template for in-text references from IEEE brackets format to else-harvard to parentheses?

I just downloaded this template https://www.overleaf.com/latex/templates/eth-zurich-disco-thesis-template/hkkbptgjgyyr and want to adjust it to my needs. All works fine, except changing the references. I want them not "bla bla bla, [2]" but "bla bla…
canIchangethis
  • 87
  • 1
  • 10
0
votes
0 answers

Processing .bib entries that contain asterisks in field names

I am using Pandoc to process some R Markdown files. These files include citations to works specified in a BibTeX (.bib) file. In the YAML header of the R Markdown file, I specify the path to this file: bibliography: 'c:/myDir/myRefs.bib' None of…
user697473
  • 2,165
  • 1
  • 20
  • 47
0
votes
1 answer

Bibtex not showing in Latex Doc when inserted in main.tex

I'm trying to include the following in my latex doc (references.tex) @INPROCEEDINGS{inception, author={C. {Szegedy} and {Wei Liu} and {Yangqing Jia} and P. {Sermanet} and S. {Reed} and D. {Anguelov} and D. {Erhan} and V. {Vanhoucke} and A.…
Kode_12
  • 4,506
  • 11
  • 47
  • 97
0
votes
1 answer

How to change the same keys related to different articles in bibtex?

With the help of some plugin, I get a .bib file with information about scientific articles. Sometimes it turns out that the same keys appear in different records. For example: @inproceedings{Hosseini_2016, doi = {10.1109/ism.2016.0028}, url…
0
votes
0 answers

Improve bibliography layout in bookdown gitbook (using zotero)

I am using bookdown to write a paper, and the zotero bibtex plug in to reference. When I knit, the bibliography is automatically added from my references.bibfile. The YAML in my index is: site: bookdown::bookdown_site output: bookdown::gitbook:…
Gabriella
  • 421
  • 3
  • 11
0
votes
1 answer

Django: Load information from file and edit before saving

I have a bib tex file with a lot of references (books with author, name, year etc.), which I want to import within the django admin and edit them before saving. At the moment I have a model with a file, where all resources get saved, when I click…
Stefan Berger
  • 133
  • 1
  • 10
0
votes
0 answers

R Markdown not producing bibliographies for PDF

I am about to give up on LaTex through Rmarkdown. I mean honestly what is the point when it is just a constant stream of errors that take an hour to solve. Anyway, the last thing that I need to solve is the bibliography. It does not appear, no…
0
votes
0 answers

How to include all bibliography in a specific slide in rmarkdown to beamer pdf

I am using a .Rmd file to generate a beamer PDF presentation (which, therefore, accepts LaTeX code). In the standard R Markdown, the reference goes into the last slide. But I want to specify it in a general slide (or specifically, before the last…
0
votes
1 answer

How can I get pybtex to read an absent field as NULL instead of skipping the record?

I have been using pybtex (using a modified version of this) to pass records from a .bib file into a .csv like so from pybtex.database.input import bibtex import csv parser = bibtex.Parser() bibdata = parser.parse_file("../../bib/small.bib") #…
blanky
  • 86
  • 1
  • 9
0
votes
2 answers

Bibtex wrongly compiles accent mark

I am attempting to compile my latex file and I have a source with author's last name with an accent mark (two dots above the letter o). In the preamble of my file, I…
user1723196
  • 125
  • 1
  • 10
0
votes
1 answer

Auto fill the URL field from the DOI field in JabRef

In JabRef (v5.1) if I use the "new entry" tab to build a reference using the DOI I would like it to populate the URL field with the DOI append behind https://doi.org/, for example for if I use the doi "10.1016/j.ymssp.2019.106551" I would like it to…
Austin Downey
  • 943
  • 2
  • 11
  • 28
0
votes
1 answer

Is it possible to format in-text citations with author title and date in markdown/rmarkdown with CSL

I am trying to write a syllabus in Rmarkdown. I would like to be able to use my bibtex file and write citations in text and then knit them to html or pdf. So for instance, I would like to be able to write: For week 1 please read: + [@author2005]…
gfgm
  • 3,627
  • 14
  • 34
0
votes
1 answer

Sharelatex generates only dot on on first reference, instead of reference

I'm trying to compile a LaTex file online with sharelatex. It works fine, but on top of my generated references the first seems to be broken. It only shows " [1] ." . All other 25 references seem to be fine. It is also awkward that the [1] reference…
0
votes
2 answers

How to get readable unicode string from single bibtex entry field in python script

Suppose you have a .bib file containing bibtex-formatted entries. I want to extract the "title" field from an entry, and then format it to a readable unicode string. For example, if the entry was: @article{mypaper, author = {myself}, title =…
Daniele
  • 53
  • 7
0
votes
1 answer

Missing metadata in Zotero BibTeX files

I'm using the bibliometrix package in R to do some citation analysis (not biblioshiny) and my Web of Science call was incomplete by about thirty entries, so I downloaded the BibTeX, added it to Zotero, merged it with another collection my Zotero,…
Ben
  • 103
  • 5