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
1 answer

errors in texmaker related to bibtex-working with a coauthor and using different distributions of latex

My coauthor and I work on a latex document in dropbox. It was working fine for me until I started receiving this error: This is BibTeX, Version 0.99d (MiKTeX 2.9) The top-level auxiliary file:myfilename.aux White space in argument I use Texmaker and…
0
votes
1 answer

Latex Bibtex Bibliography without new Chapter

I'd like Bibtex to not start a new page, when printing the references. Why? I am using the package quotchap to print those nice big numbers on the right site for each new chapter and I want the references too to have such a big number. Another way…
Timo
  • 313
  • 1
  • 3
  • 13
0
votes
1 answer

LaTEX: changing the format of citation in References to list authors' last name first

It seems the format in the Reference section is a little off! Can you please show me how to format the citation to list authors' last name first? Thanks all. Here is the current form in the Reference section: C. B. Grimmond, A. Isard, and J.…
Kuo-Hsien Chang
  • 925
  • 17
  • 40
0
votes
1 answer

Highlighting/Underline name(s) of specific author(s) in HTML publication list

I am exporting a .bibtex file to HTML code to upload to my website. It creates a list of journal publications. I wanted to be able to highlight/underline the name(s) of specific author(s) in HTML journal citation. How can I do this? Thanks
J Paul
  • 169
  • 5
0
votes
1 answer

BibTeX equivalent for "inproceedings" in Schema.org

I'm listing my conference publications on my homepage (German website). I want to annotate those publications with Schema.org. In bibtex those publications are inproceedings (see here). Schema.org provides CreativeWork and subclasses. But, I can…
schrieveslaach
  • 1,689
  • 1
  • 15
  • 32
0
votes
1 answer

Bibtex parser in Rails; Can get gem to work in console but not app itself

I'm building an app wherein I want to parse bibtex into citations in html. I used the CiteProc-Ruby and bibtex-ruby gems to implement this. I used this gem. I tried the following code in the Rails console. cp = CiteProc::Processor.new style:…
Count Zero
  • 630
  • 1
  • 6
  • 15
0
votes
1 answer

python tuple with missing entry

I am trying to parse a bibtex file with python3's bibtexparser module. A sample bibtex file is: @article{ebert2013, Title={First-principles calculation of the Gilbert damping parameter via the linear response formalism with application to magnetic…
BaRud
  • 3,055
  • 7
  • 41
  • 89
0
votes
1 answer

Rmarkdown PDF citations not rendering correctly (csl issue?)

I'm getting to grips with writing publications in rmarkdown. No issues at all generating .html files, or .docx files, but when I generate .pdf files the citations don't seem to inherit the style defined in the .csl file. For example, with a numbered…
Jordan Mackie
  • 1,193
  • 10
  • 17
0
votes
0 answers

Failed request at Google scholar using python requests

I had a problem while attempting to get text from a url using Python requests module. After managing to find the url of the bibtex of academic articles, I have problems to get the text containing the bibtex. As an example, through some Python lines…
DS81
  • 1
  • 1
0
votes
1 answer

Should I throw an exception in my method?

I'm writing a program to process BibTeX files to HTML code. The program allows a user selection which fields will be processed or how to format output HTML code. BibTeX files are text databases. My program reads BibTeX files and writes to…
Pawel_J
  • 31
  • 7
0
votes
2 answers

Vim: how can I fix missing commas in BibTeX files?

Often, I start with a BibTeX entry: @book{, author = {Person, Some}, title = {Book}, publisher = {Publisher}, year = {2015} } Then, I discover that the editor is called "Editor" and add the appropriate field: @book{, …
0
votes
3 answers

Why is my references section of my LaTeX document empty, and how can I change its name?

In my document I have to specify the references I'm using. I used this code in the preamble: \bibliographystyle{abbrv} \bibliography{main} Where main is the .bib file from the same folder, and contains, for example: @string{jgr =…
qwerty
  • 1,967
  • 6
  • 22
  • 22
0
votes
1 answer

Pasting bibitem into .bib file in terminal emacs

I have a strange problem with emacs in terminal (on both linux and mac). when I want to paste (system paste, Ctrl+Shift+V in linux terminal and Command+V in mac) a bibitem such as an article item into an emacs buffer for a .bib file, it only pastes…
gigilibala
  • 171
  • 1
  • 7
0
votes
1 answer

Why does my R Markdown file not output a citation from Bib

I am using R Markdown to create a document with citations. But the citation doesn't reflect on the pdf document generated. Using RStudio Version 0.98.994 and R 3.1 This is the .rmd file --- title: "Untitled" author: "keniajin" date: "Tuesday,…
Keniajin
  • 1,649
  • 2
  • 20
  • 43
0
votes
2 answers

Escaping curly braces with angular.jstemplating in HTML
 environment

I've found a strange, weird behavior with the
 tag in HTML when used in conjunction with angular.js' method of data binding via curly braces. Given the data binding foo = 'bar', I want to write
{{{foo}}}
such that it…