编译器无法启动“biber.exe”,不知道原因

编译器无法启动“biber.exe”,不知道原因

以前的 tex 文件使用 bibtex 作为备份。我想将其更新为 biber 以使用特定的 cite-style (apa)。我已检查 Tex Live Utility 上的下载/更新,并更改了 TexMaker 中的命令等设置。但当我尝试运行该文件时,我收到以下错误消息:

错误:无法启动命令:“biber.exe” “abc”

梅威瑟:

\documentclass[11pt]{article}
\usepackage[backend=biber,citestyle=apa,bibstyle=apa]{biblatex}
\bibliography{xyz}
\usepackage{endnotes}

\let\footnote=\endnote

\begin{document}

text text text... \cite{citekey}

\theendnotes
{\singlespacing\printbibliography}
\end{document}

我尝试了其他帖子中推荐的各种策略——检查下载、编译器设置等——但都无济于事。

更新:运行 biber 作为独立命令可以正常工作。运行 LaTex/biber/LaTex 循环时会出现问题。

答案1

听起来好像你使用的是 Mac,但 Windows 配置移植不正确,其中 biber 可执行文件会是biber.exe。Mac 和 Linux 上的可执行文件通常没有扩展名,所以biber

相关内容