Questions tagged [biblatex]

It is a management software for formatting lists of references, intended for use together with Latex.

BibTeX makes it easy to cite sources in a consistent manner, by separating bibliographic information from the presentation of this information, similarly to the separation of content and presentation/style supported by LaTeX itself.

Basic structure

In the words of the program's author: "Here's how BibTeX works. It takes as input

(a) an .aux file produced by LaTeX on an earlier run;

(b) a .bst file (the style file), which specifies the general reference-list style and specifies how to format individual entries, and which is written by a style designer [..] in a special-purpose language [..], and

(c) .bib file(s) constituting a database of all reference-list entries the user might ever hope to use.

BibTeX chooses from the .bib file(s) only those entries specified by the .aux file (that is, those given by LaTeX's \cite or \nocite commands), and creates as output a .bbl file containing these entries together with the formatting commands specified by the .bst file [..]. LaTeX will use the .bbl file, perhaps edited by the user, to produce the reference list.

149 questions
1
vote
0 answers

Where to download BibLaTEX

I'm trying to write my thesis using overleaf, but having trouble with the referencing. I've been told to use BibLaTEX but it doesn't seem to be formatting correctly see 1. From what I gather it's because I don't have the external software…
1
vote
1 answer

Highlight one specific author when generating references in Pandoc

I am using Pandoc to generate a list of publications for my website. I'm using it solely to generate the html with the publications so that I can then paste the raw html in jekyll. This part works fine. The complications arise when I tty to generate…
TomCho
  • 3,204
  • 6
  • 32
  • 83
1
vote
1 answer

Problems with bibliography file in LaTex

Bibliography doesn't show up. My .bib file is okay I think but when I compile the main file bibliography doesn't show. I don't know what's wrong, please help. Important parts of code in my main…
Marianna
  • 33
  • 2
  • 6
1
vote
0 answers

Latex it is showing the in-text references with numbers, but there is no numbers for references at the end of dcument

I have a draft in elsevier science direct LaTeX template. I have chosen the \bibliographystyle{elsarticle-num} as bibliography style. There are different styles such as model1-num-names.bst, model5-names.bst. The reference numbers in-text is shown…
user630317
  • 31
  • 8
1
vote
1 answer

Latex: Can I cite a reference after the bibliography

I'm having trouble with citations after the bibliography (in my appendices) using Bibtex/pdflatex. I'm using the 'puthesis' class - Purdue's class for our theses - which is built on top of the 'report' class. I'm using package 'natbib' with the…
ahagen
  • 600
  • 6
  • 13
1
vote
2 answers

How to cite full author name using Jabref in latex?

Hi. I am using JabRef for citation and Harvard style. I want cite the full author name in some cases. How do I do this with JabRef? For example: Many people defined frogs as animals (John Frank, 2000).
Aharoun Baalan
  • 169
  • 4
  • 13
1
vote
2 answers

How to call Makefile recipe/rule multiple times?

With the following example: .PHONY: hook1 hook2 # Default target all: hook1 hook2 hook1 echo "Calling all" hook1: echo "Calling hook1" hook2: echo "Calling hook2" I got the output: $ make echo "Calling hook1" Calling hook1 echo…
Evandro Coan
  • 8,560
  • 11
  • 83
  • 144
1
vote
2 answers

Latex - Bibtex/BibLatex - How can I include a file with space in the path?

I am using Mac and \usepackage{natbib} It seems that the space in the path caused problems, i.e. Box Sync. \bibliography{/Users/c082213/Box Sync/AA_My_Papers/MyStats.bib} I have tried to put them in double "", and it doesn't work on Mac. Is…
drbombe
  • 609
  • 7
  • 15
1
vote
1 answer

how to split equation on two lines

I wrote the following two equations in latex, but the problem is when I run the code, both equation are written on the same line how can I split them on two lines \begin{equation} N = R * cos(lat) * sin(lon) \\ E = R * cos(lat) *…
Amrmsmb
  • 1
  • 27
  • 104
  • 226
0
votes
0 answers

Multiple citations using biblatex, ordering by year using parencite and textcite

The bibliography is arranged in ascending order of names of authors which is fine since the sorting style is nyt. But when I do multiple citations in one parencite{}, the citations are sorted by name. I want to sort it by year as in the oldest one…
0
votes
0 answers

Long journal names or article titles break border with biblatex :(

The top border spill is a journal name, and the bottom spill is an article title I am using the LaTex template my university provides. It runs…
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
1 answer

Capitalize book titles and subtitles in `biblatex` bibliography

@samcarter has very helpfully shown how to capitalize article, journal and book titles in biblatex bibliography (see here). However, the question remains as to how to capitalize subtitles as in this bib entry for a book with a title and a…
Daniel
  • 77
  • 5
0
votes
0 answers

Biblatex: print autor names respecting maxcitenames in bibliography styling

I need to create a bibliography style based on authoryear, which precedes the entry with its original citation label. I know that I can set the additional style somewhat like this. \renewbibmacro*{begentry}{% \printnames{labelname}…
0
votes
0 answers

! LaTeX Error: Illegal character in array arg. appeared while executing the .tex code for Table

When I tried to run tex code to generate table, I encountered the error stating that ! LaTeX Error: Illegal character in array arg. And The code goes like this. How can I fix this error? %Table \begin{table} \caption{Drag Breakdown - Component…