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

Citation Network - What is the most effective way to present?

I have been working on a project that illustrates relationships between authors' articles and their respective citations (from other authors). Then, I created a matrix that shows edges between them. Ultimately, we want to measure originality among…
0
votes
1 answer

R Studio in Scoupus Dataset(Bibtex) Error in names(Y) = c("Year ", "Articles") :

I download datatset from the scopus dataset then try to read the dataset but an error occurred when trying show the summary of the dataset. I Downloaded BIBTEX file or (.bib). All of the scopus dataset I downloaded in Bibtex is not working. But then…
0
votes
0 answers

error "undefined control sequence" after converting bibtex entries to \bibitem in Latex

I am using TEXnicCenter 2.0.2. After compiling the .tex and .bibtex files, all citations are converted in bibitem in the .bbl file. I used the following bibitem in the .tex file: \bibitem{nadel1990some} B.~Nadel,…
DaliMidou
  • 111
  • 1
  • 3
  • 14
0
votes
1 answer

Attaching Mendeley .bib to RMarkdown

EDIT: Fixed first problem, but now I've got a different one. I have been attempting to attach a bibliography generated by Mendeley to an RMarkdown document, but it's yielding a font error. I'm following instructions found here. Here's the error:…
nmariano
  • 11
  • 3
0
votes
1 answer

Customized hyperlinks for markdown-bibtex to html conversion using Pandoc

I am using the following style to have my bibilography imported from a bibtex file in markdown and from there to html/pdf: --- bibliography: test.bib nocite: '@*' ... # Biliography After that I run: pandoc test.md -o test.html --bibligraphy…
Arash
  • 101
  • 3
0
votes
1 answer

Read entries bibtex (Parser bibtext entries)

I need to read a bibtext file, but i dont know to read it. My idea is read all entries for a txt or bib file and create object related to the entries. I've tried to use the Renanbr bibtext-parser…
0
votes
1 answer

extract comment groups from bibtex file (in Python?)

I am trying to extend a bit the features-set available to manage groups in BibDesk and I want to manipulate from a program the bibtex comments in which BibDesk writes down information for Static Groups. To do this I need a systematic and robust way…
Rho Phi
  • 1,182
  • 1
  • 12
  • 21
0
votes
3 answers

Regex nested brackets (ignoring inside brackets and whitespace)

I am trying to create a regex pattern that reads through a bibTex citation file and match everything inside the brackets. For those who don't know, a bibtex citation looks like the following : @INPROCEEDINGS{Fogel95, AUTHOR = {L. J. Fogel…
Matt
  • 23
  • 3
0
votes
1 answer

How to get BibTex reference of a matlab code

I want to cite a matlab documented code from https://www.mathworks.com/. How can I get a BibTex reference of the code?
0
votes
0 answers

display @misc reference in order of key appearance

I can't seem to find the option for ordering a reference item based on appearance of the key values in cite. I have the following in my .bib file: @misc{test, author = "Test", title = "Title", note = "6 October 2016", howpublished =…
user1213904
  • 1,830
  • 4
  • 23
  • 39
0
votes
1 answer

Latex how I add local file pdf path \bibliographystyle{natdin}

I have a latex file with bib text file. I have the problem that I would like to add on my literatur add my local pdf path so that when i have my pdf file I can open it direktly from my local hard drive.…
Ben
  • 3
  • 3
0
votes
1 answer

Emacs bibtex-mode unable to parse un-visited file

I'm not sure the best way to phrase this question, but hopefully my examples will make clear what's going on. I have some code where I want to insert the contents of a bibtex file in a temporary buffer and move through the entries one at a time,…
Bill Broderick
  • 303
  • 1
  • 2
  • 10
0
votes
0 answers

Latex - References are not numbered

I have the following latex…
pauloss
  • 47
  • 9
0
votes
1 answer

Bibliography in PHP with CSL

I am trying to display a bibliography in PHP and allowing the use of CSL to format it, but am coming up short of good examples of how to implement it. Basically, I am looking for a library or script which can take a bibliography, in the form of…
OleVik
  • 1,222
  • 3
  • 14
  • 28
0
votes
1 answer

Not able to add the second refernce, as i add second citation in .bib file and build the file from latex ,the changes are not shown

basic structure of my latex file is :- \documentclass{article} \usepackage{cite} \begin{document} % all the content goes here \bibliographystyle{plain} \bibliography{biblio.bib} \end{document} biblio.bib is the file where the bibliography is…
Amarjit Dhillon
  • 2,718
  • 3
  • 23
  • 62