BibTeX, biblatex and biber\printbibliography does not work

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
Lardos
Posts: 1
Joined: Mon Oct 21, 2019 1:11 pm

\printbibliography does not work

Post by Lardos »

Hello everybody,

So it seems that I'm doing something wring with Biblatex.
I'm using Texstudio. I set Biber to my default bib programm in the settings and also
selected the biber.exe in the command tab in the settings.

However when I'm trying to cite anything the bibliography does not appear.

here is a snippet of my code

Code: Select all

\usepackage[backend=biber,citestyle=numeric,bibstyle=numeric,maxnames=10,sorting=none]{biblatex}
\bibliography{literatur}

...

\begin{document}
	
\cite{Blum2018}

...

\newpage
\addcontentsline{toc}{section}{Literatur}
\printbibliography

\end{document}
and here the literatur.bib file:

Code: Select all

% Encoding: UTF-8

@Article{Blum2018,
  author    = {Jürgen Blum},
  title     = {Dust Evolution in Protoplanetary Discs and the Formation of Planetesimals},
  journal   = {Space Science Reviews},
  year      = {2018},
  volume    = {214},
  number    = {2},
  month     = {feb},
  doi       = {10.1007/s11214-018-0486-5},
  publisher = {Springer Nature},
}

@Article{Birnstiel2016,
  author    = {T. Birnstiel and M. Fang and A. Johansen},
  title     = {Dust Evolution and the Formation of Planetesimals},
  journal   = {Space Science Reviews},
  year      = {2016},
  volume    = {205},
  number    = {1-4},
  month     = {may},
  pages     = {41--75},
  doi       = {10.1007/s11214-016-0256-1},
  publisher = {Springer Nature},
}

@MastersThesis{,
  author = {Maya Krause},
  title  = {Untersuchung von Brownscher Bewegung und resultierender Staubagglomeration in einem Mikrogravitationsexperiment},
  year   = {2003},
  month  = may,
  school = {Universität Jena},
}

@Comment{jabref-meta: databaseType:biblatex;}

When I compile the code, the console output states no error, just:

Process started: pdflatex.exe -synctex=1 -interaction=nonstopmode "Bachelorarbeit".tex

Process ended normal

I can not find the solution by myself.
I really appreciate any help.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

User avatar
Stefan Kottwitz
Site Admin
Posts: 10321
Joined: Mon Mar 10, 2008 9:44 pm

\printbibliography does not work

Post by Stefan Kottwitz »

Hi Lardos,

welcome to the forum!

Are you sure that biber is run automatically? Some editors can do it, others require an explicit manual run.

Can you post the generated .log and .blg files here, as attachment?

Stefan
LaTeX.org admin
ujur007
Posts: 9
Joined: Mon May 04, 2020 11:58 am

\printbibliography does not work

Post by ujur007 »

I am facing exactly the similar problem.

I have kept \printbibliogrphy in the document part but still I cannot see the bibs.!!
User avatar
Stefan Kottwitz
Site Admin
Posts: 10321
Joined: Mon Mar 10, 2008 9:44 pm

\printbibliography does not work

Post by Stefan Kottwitz »

Welcome to the forum!

Did you run BibTeX or Biber? Can you post the generated .log and .blg files here, as attachment?

Stefan
LaTeX.org admin
ujur007
Posts: 9
Joined: Mon May 04, 2020 11:58 am

\printbibliography does not work

Post by ujur007 »

Implementation.log
(24.78 KiB) Downloaded 324 times
My bibliogrphy file is something like the following just one sitetion.
@book{1,
title={SpaceWire user's guide},
author="Steve Parkes"
isbn={987-0-9573408-0-0}
}


Then I have my .tex file in there I do something like but in the result I am not seeing the sitetion.

\usepackage[english]{babel}
\usepackage[backend=biber]{biblatex}
\addbibresource{Reference.bib}

\begin{document}
\printbibliography
\end{document}
Attachments
Implementation.blg
(1.01 KiB) Downloaded 354 times
Bartman
Posts: 369
Joined: Fri Jan 03, 2020 2:39 pm

\printbibliography does not work

Post by Bartman »

The key and the data fields with their assignments in an entry type are separated by commas.

It would be beneficial for the overview if you start a new topic with a complete example.
Post Reply