On MS Windows 10, 64 bit, recent TeXlive instalation, I am unable to run Biber. I am using TeXWorks for compilation. When biber is called, it produces no output in console and running lualatex biber lualatex produces same output as running only lualatex.
- Biblatex v. 3.14
- Biber from TeXlive 2019
Searching with where biber in windows cmd line, I get correct location of instalation:
C:\texlive\2019\bin\win32\biber.exe
same binary is also used in TeXworks as compilation tool.
According to answer here:
issuing in cmd line
biber --help
produces no output whatsoever (no webpage, no error). How can I resolve this situation? How can I reinstall Biber, preferably via tlmgr? This issue is present on my Office PC (at work), so I might not be able to tinker with TeXlive installation fully.
As MWE (in case content of .aux files or so is required) could work example from Overleaf tutorial:
https://fr.overleaf.com/learn/latex/Bibliography_management_with_biblatex
MWE
\documentclass{article}
%citations
\begin{filecontents}{sample.bib}
@article{einstein,
author = "Albert Einstein",
title = "{Zur Elektrodynamik bewegter K{\"o}rper}. ({German})
[{On} the electrodynamics of moving bodies]",
journal = "Annalen der Physik",
volume = "322",
number = "10",
pages = "891--921",
year = "1905",
DOI = "http://dx.doi.org/10.1002/andp.19053221004",
keywords = "physics"
}
@book{dirac,
title={The Principles of Quantum Mechanics},
author={Paul Adrien Maurice Dirac},
isbn={9780198520115},
series={International series of monographs on physics},
year={1981},
publisher={Clarendon Press},
keywords = {physics}
}
@online{knuthwebsite,
author = "Donald Knuth",
title = "Knuth: Computers and Typesetting",
url = "http://www-cs-faculty.stanford.edu/~uno/abcde.html",
keywords = "latex,knuth"
}
@inbook{knuth-fa,
author = "Donald E. Knuth",
title = "Fundamental Algorithms",
publisher = "Addison-Wesley",
year = "1973",
chapter = "1.2",
keywords = "knuth,programming"
}
\end{filecontents}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{comment}
\usepackage[
backend=biber,
style=alphabetic,
sorting=ynt
]{biblatex}
\addbibresource{sample.bib}
\title{Bibliography management: \texttt{biblatex} package}
\author{Overleaf}
\date{ }
\begin{document}
\maketitle
Using \texttt{biblatex} you can display bibliography divided into sections,
depending of citation type.
Let's cite! The Einstein's journal paper \cite{einstein} and the Dirac's
book \cite{dirac} are physics related items.
Next, \textit{The \LaTeX\ Companion} book \cite{latexcompanion}, the Donald
Knuth's website \cite{knuthwebsite}, \textit{The Comprehensive Tex Archive
Network} (CTAN) \cite{ctan} are \LaTeX\ related items; but the others Donald
Knuth's items \cite{knuth-fa,knuth-acp} are dedicated to programming.
\medskip
\printbibliography
\end{document}
PAR_GLOBAL_TEMPso that it points to a temporary folder for which you certainly have writing rights. See https://github.com/plk/biber/issues/70 – Ulrike Fischer Mar 02 '20 at 13:01set PAR_GLOBAL_TEMP=path/to/folderand thenbiber --helpto check if it can unpack. – Ulrike Fischer Mar 02 '20 at 13:25Can't locate PAR.pm in @INC (you may need to install the PAR module) (@INC contains:) at -e line 593.Is PAR some Perl module? I have (clean) Strawberry Perl installed. – Tomáš Kruliš Mar 02 '20 at 13:38biber, I get this output: INFO - This is Biber 2.14 INFO - Logfile is 'MWE.blg' INFO - Reading 'MWE.bcf' INFO - Found 7 citekeys in bib section 0 INFO - Processing section 0 INFO - Globbing data source 'sample.bib' INFO - Globbed data source 'sample.bib' to sample.bib INFO - Looking for bibtex format file 'sample.bib' for section 0 Can't decode ill-formed UTF-8 octet sequencefilecontentsis not working. But I have finally obtained output from biber in cmd line session. How can I set it now to be able to compile in TeXworks or witharara? – Tomáš Kruliš Mar 02 '20 at 14:15biber --help. Afterwards, using generatedbiber.exein TeXworks leads again to error:Can't locate PAR.pm in @INC (you may need to install the PAR module) (@INC contains:) at -e line 593.Usingecho %PAR_GLOBAL_TEMP%produces correct location, meaning the env. variable should be set OK. – Tomáš Kruliš Mar 02 '20 at 14:36arara. Would it be beneficial to create some summary of the process as an answer? – Tomáš Kruliš Mar 02 '20 at 14:57biberandbiblatexon creating custom bibliogaphy driver and citation commands. I have a lot of questions which I hope I will be able to solve with documentation, but if not, I hope my questions will catch your sight and that they could be answered! ... – Tomáš Kruliš Mar 05 '20 at 08:05