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
MiKTeX and proTeXt ⇒ Problem with downloading biber and biblatex on Windows
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Problem with downloading biber and biblatex on Windows
The chance that texmaker isn't working anymore is very low to nil. Texmaker is just a frontend.
Copy that minimal working example, save it and compile it. What happens?
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}
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
Re: Problem with downloading biber and biblatex on Windows
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.
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.
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Re: Problem with downloading biber and biblatex on Windows
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.
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.