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

Ebib: completion customization

Ebib allows to customize the fields that can be completed (in Ebib itself). The manual says that I can customize the user option ebib-edit-fields-functions. But when I try to customize it, I get an error. Here's the sequence. Run emacs -Q (Windows…
Jabot
  • 5
  • 2
0
votes
1 answer

Ebib: edit completion fields

I am trying to change ebib--field-edit-functions in Ebib to add address to its fields with completions. The manual says that you need to customize the user option ebib--field-edit-functions (actually, it says ebib-edit-fields-functions which is…
Jabot
  • 5
  • 2
0
votes
0 answers

Bookdown references // separate bibliography per .Rmd file

I am using bookdown for my PhD thesis. Everything looks find and I can render the three different .Rmd files using bookdown, with the exception of the references section. Unfortunately, even though I specified separate libraries for each .Rmd file…
0
votes
0 answers

Get bibliography references in text order when using `rticles::elsevier`

I'm writing an article for a Elsevier journal but the the references are generated in alphabetical order and i want them listed in order of their text appearance. Here is the relevant part of my YAML. My LaTex knowledge is unfortunately very…
0
votes
1 answer

How do I convert bibtex citation commands into R markdown format in R?

I have a dataframe in R, one column of which contains bibtex citation commands, such as the following \\cite[265]{delbarrio2014a}, \\cite[423--429]{nieto2009}, \\cite[188, 191, 196--197]{bile1988a}, \\cite[188--189]{bartonek2003},…
Namenlos
  • 475
  • 5
  • 17
0
votes
1 answer

Typesetting "et al" in italics with natbib

It looks I'm dealing with an entient problem here but I seem not to find a solution. I'm using Jabref and LaTex(natbib) and I want my reference to appear like this in the text: Peter et al.(2023) i.e, with an italic et al. #Italic "et al". I've…
Nictor
  • 13
  • 1
0
votes
0 answers

Word macro error SortIndexEntries( sub or function not defined

I have the following Word 2019 macro code: Sub CreateBibleIndex() Dim bibleRefs() As String Dim indexEntries() As String Dim i As Long, j As Long ' Regular expression pattern to match Bible references Dim regexPattern As String …
MCOpen
  • 1
  • 3
0
votes
1 answer

I'm having trouble compiling a template from Overleaf on my personal LaTeX installation in my PC

I have to make a work using this template: https://www.overleaf.com/latex/templates/master-degree-thesis-unir-university-english/rtkkxskmdsbc Now, I can use it directly on overleaf and it works relatively well, but because the final project is going…
0
votes
0 answers

Bibliography not shown

I can't integrate my bibliography in the document. The error is the bibliography seems to be empty, although I used a citation. I use overleaf. My minimal code is: \documentclass[pdftex,title…
Winny
  • 1
  • 1
0
votes
0 answers

BibDesk: search for a keystroke to activate main panel

Preferring the keyboard for switching between different fields in BibDesk (V1.8.15, High Sierra). I am looking for a keystroke to jump back to the main panel. For example, after searching for a reference I would like to jump directly to the found…
Bernd
  • 155
  • 10
0
votes
1 answer

The meaning of double curly braces (`{{ ... }}`) in LaTex?

While compiling sources for my thesis, I noticed that in a *.bib file, the title was written using {{Insert title here}} and copied this in my *.tex file: \section{Recognizing {{Human Daily Activities From Accelerometer Signal}} ... }. I wondered…
Student CS
  • 53
  • 6
0
votes
1 answer

Error reading bibtex file using pandoc with cite-proc "unexpected '\''

i have written an article wit Latex and want to submit it to the publisher. Unfortunately, they only accept .odt or .docx files. Therefore, i wanted to convert my file with pandoc, as i've done it multiple times with other documents. I used a bash…
lukeflo
  • 125
  • 5
0
votes
0 answers

How to generate numbering in latex beamer

How to generate numbering in latex beamer for references? I am using a reference from the bib file \usepackage{natbib} \begin{frame}[allowframebreaks]{References} \bibliographystyle{agsm} \bibliography{Reference} \end{frame} while generating in…
SUGANTH
  • 13
  • 1
  • 5
0
votes
0 answers

Use the same BibTex reference in multiple places of the same page

I am trying to use the BibTex reference macro in Confluence and use the same reference in multiple places of the page. However, if I define a new reference with the same text as the first one, the reference counter will duplicate instead of using…
zaig
  • 391
  • 1
  • 11
0
votes
1 answer

pure text non latex results for python bibtex parser

see also https://github.com/sciunto-org/python-bibtexparser/issues/352 currently i am doing: doi=DOI(self.doi) meta_bibtex=doi.fetchBibtexMeta() bd=bibtexparser.loads(meta_bibtex) btex=bd.entries[0] using the DOI helper class below. I was hoping…
Wolfgang Fahl
  • 15,016
  • 11
  • 93
  • 186