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

Cannot print bibliography despite changing backend to biber, print bibliography says empty bibliography

Hi I have tried a lot of things and gone through several questions posted earlier but I can't seem to get my bibliography to print. I get the following errors: Empty Bibliography (when I write \printbibliography) Undefined Control Sequence (when I…
KatShill
  • 13
  • 3
1
vote
0 answers

References do not show up after I run Biblatex in rmarkdown latex

My biblatex does not generate references section with the following error: I have a difficulty finding the source of problem. I am using TexShop and already refer to…
jck21
  • 751
  • 4
  • 16
1
vote
1 answer

Use Biblatex to get an overview of the keywords from my sources

Hi I'm using LaTeX to write a literature review and BibLaTeX to print my sources and bibliography. I would like to get an overview of all the keywords used in the articles I have gathered so far. Since I have them all in a .bib file I figured that…
cissi
  • 13
  • 6
1
vote
1 answer

Citation not getting displayed - instead the alias is getting displayed in the pdf

I am trying to use \cite to cite items from bibliography.bib. However, my citations are not working properly. The environment, code and output are as…
Anisha Garg
  • 53
  • 5
  • 10
1
vote
1 answer

Biblatex: website citation is italicized and uses title instead of author when removing "n.d."

I'm trying to cite a website using the authoryear style with BibLaTeX. \documentclass{article} \usepackage[utf8]{inputenc} \begin{filecontents}{ref.bib} @online{nanopore, author = "{Oxford Nanopore Technologies}", title = "Oxford…
1
vote
2 answers

knitr chapter bibliographies from .Rnw files?

One can create chapter bibliographies using BibLaTeX and straight .tex files, as shown in this MWE: % main.tex \documentclass{report} \usepackage{natbib} \usepackage{chapterbib} \begin{document} \include{chap1} \include{chap2} \end{document} %…
1
vote
1 answer

biblatex: splitting bibliography entry which are connected by name as "package"

I'm currently struggeling with my BibLaTeX file. I wanna separate the bibtex entries which are connected by the last name of the author (as you can see with the first and second entry). Also i wanna turn the (Hrsg.) Tag like the rest of the author…
slb20
  • 127
  • 1
  • 7
1
vote
0 answers

How do I reference a bibliography in a path name with a -?

My work is all stored on our work's OneDrive and so the path name has a dash in it: OneDrive - My Organization I think I can handle the spaces, but the dash is giving me a problem. I can't get biblatex to find the file! Thank…
spindoctor
  • 1,719
  • 1
  • 18
  • 42
1
vote
0 answers

Overleaf/Latex: No Errors, good job! + Fatal Syntax Errors

This isn't a very big problem, but it's really annoying. I couldn't find any similar question (actually only one, but with no clear answers, sadly), therefore I decided to put this here. I've been working on my master's thesis in Overleaf, I'm a…
7ovana
  • 13
  • 3
1
vote
1 answer

Add all bib files from a directory to bookdown

I am working on a multi-author bookdown and the authors will have their own bib files. I think it would be annoying to name them one by one in the index.Rmd file. I will be putting all the bib files in one folder and I wonder if I can somehow…
wut
  • 81
  • 5
1
vote
1 answer

How to get rid of brackets in my citation using rmarkdown and biblatex

i'm an absolute beginner in RMarkdown und Latex. So, this is my first time trying to write a paper. I've got a template from my university which I use, but I have a problem with the citation. I want to use an apa style, which works very well in the…
Fade
  • 59
  • 5
1
vote
1 answer

More than 99 references using natbib in Overleaf LaTeX

I'm currently writing my thesis and I've run into a problem where I have more than 99 references. normally i would used biblatex for my references and just the command: \usepackage[maxbibnames=150]{biblatex} to increase my max references limit to…
1
vote
1 answer

Cite author and title for monographs

for a university paper I have to write an essay. The professor has percise instructions how to cite. For monograph books, he wants the author and the title in the footnotes. I tried to use biblatex for this, but could not manage to get it to work My…
spqx
  • 19
  • 5
1
vote
1 answer

latex bibliography problem, it was working fine with natbib, not working with biblatex

Good afternoon, I have a problem with bibliography, it worked ok with natbib, but unfortunately now I need to use biblatex, with ''phys'' style and I get some errors, it doesn't work anymore. This is the code, sorry for long…
Nik
  • 11
  • 2
1
vote
1 answer

Including entire bibliographic entry in RMarkdown - equivalent of \fullcite?

Is there a way to include an entire bibliographic entry in the main text of my Rmarkdown document? If I were using LaTeX, I'd use \fullcite{Smith2000}. And then it would print, wherever I wanted: Smith, J. 2000. A nice book. Oxford: Oxford…
dmt
  • 2,113
  • 3
  • 24
  • 23