MiKTeX and proTeXtProblem with downloading biber and biblatex on Windows

Information and discussion about MikTeX distribution for Windows and the related proTeXt: Installing, updating, configuring
Post Reply
Colin93
Posts: 57
Joined: Mon Apr 04, 2016 2:55 pm

Problem with downloading biber and biblatex on Windows

Post by Colin93 »

Hi everyone

I use Texmaker. I downloaded Biblatex and Biber as I couldn't find them in my Miktex file. I added Biber in C:/Program Files (x86)/MiKTeX 2.9/miktex/bin/x64/biber.exe and the Biblatex directory in C:/Program Files (x86)/MiKTeX 2.9...
I have Windows 10.

I downloaded Biber and Biblatex from the following websites :
https://sourceforge.net/projects/biblat ... p_redirect
https://sourceforge.net/projects/biblat ... rce=navbar

But now Texmaker is no longer working... What did I do wrong ?

Have a nice week

Coline

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Problem with downloading biber and biblatex on Windows

Post by Johannes_B »

The chance that texmaker isn't working anymore is very low to nil. Texmaker is just a frontend.

Code: Select all

\documentclass{article}
\usepackage[style=authoryear,backend=biber]{biblatex}
\addbibresource{biblatex-examples.bib}
\begin{document}
Zitiere Onlinequelle: \cite{ctan,markey}\par
Zitiere Buch: \parencite{companion}\par
Zitiere Artikel: \cite{springer}
\printbibliography[heading=bibintoc]
\end{document}
Copy that minimal working example, save it and compile it. What happens?
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
Colin93
Posts: 57
Joined: Mon Apr 04, 2016 2:55 pm

Re: Problem with downloading biber and biblatex on Windows

Post by Colin93 »

Hi Johannes B

I did make a mistake yes. Now texmaker is working. However my document (thesis) which works at work is not.

I replaced 4 directories that I had in C:/ProgramFiles(x86)/MikTex2.9 by the same I found in the downloaded Biblatex directory : biber, bibtex, doc and tex.

The biber.exe files remains where I put it earlier. Your minimum exmple works well. But I can't get Makeindex and Biber to work...

I get this error message : ! Undefined control sequence.

What should I do if I want to add Biblatex ? My Texmaker version only has Bibtex.
User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Re: Problem with downloading biber and biblatex on Windows

Post by Johannes_B »

You are confusing, you say my document works, on the other hand you cannot biber to work. And why makeindex? It is not needed.

Also, LaTeX is a bit more precise, it tells you which control sequence is undefined. That would have been the really interesting part. You might just have a simple typo, or you forgot to load the package defining the macro.

Please provide a minimal compiling example along with the log file.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
Post Reply