MiKTeX and proTeXtBiber on current MiKTeX

Information and discussion about MikTeX distribution for Windows and the related proTeXt: Installing, updating, configuring
Post Reply
DarkRuler
Posts: 2
Joined: Sat Mar 23, 2013 1:57 pm

Biber on current MiKTeX

Post by DarkRuler »

Hey guys!

I am trying to use biblatex and Biber for citation. I installed MiKTeX 2.9/32bit (at first I tried 64 bit, but I have read that Biber is not included in x64). Now I want to run a simple file with one citation, but the problem is I get a PDF without the bibliography. Is there something wrong with the following? My problem is I don't get a single error message in the console.

Code: Select all

Code, edit and compile here:
\documentclass[11pt]{scrartcl}
\usepackage[
backend=biber,
style=authoryear, %% Zitierstil (siehe Dokumentation)
natbib=true, %% Bereitstellen von natbib-kompatiblen Zitierkommandos
hyperref=true, %% hyperref-Paket verwenden, um Links zu erstellen
]{biblatex}
\addbibresource{literatur.bib}
\begin{document}
Test
\parencite{berger}
\printbibliography
\end{document}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
The "literatur.bib":

Code: Select all

Code, edit and compile here:
% This file was created with JabRef 2.9.2.
% Encoding: Cp1252
@BOOK{berger,
title = {Der demographische Wandel : Chancen fuer die Neuordnung der Geschlechterverhaeltnisse},
publisher = {Campus-Verl},
year = {2006},
author = {Berger, Peter A.},
address = {Frankfurt am Main ua},
language = {ger},
shorttitle = {Der demographische Wandel}
}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
Greetings
Last edited by localghost on Sat Mar 23, 2013 2:43 pm, edited 1 time in total.

Recommended reading 2024:

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

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

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Biber on current MiKTeX

Post by localghost »

And you have run Biber on the *.aux file in between? If you don't use an editor with built-in automatism you have to do that manually. The biblatex package won't do that for you. Tools like arara or latexmk could be helpful then.


Best regards and welcome to the board
Thorsten
DarkRuler
Posts: 2
Joined: Sat Mar 23, 2013 1:57 pm

Re: Biber on current MiKTeX

Post by DarkRuler »

Hey!
Thanks for your answer, you solved my problem :) I opended the file in Texmaker, set biber for the biblatex command and ran biber. Now it works, but the process is not automated yet. I will try to do that some other time.
Post Reply