I have a document (Texstudio in OSX) written using the LatexBangla package (XeLaTex system). But I am unable incorporate a bibliography in English written using biblatex (biber). The minimal code is given below.
\documentclass[11pt,a4paper,onesided, notitlepage]{article}
%\usepackage[english]{babel}
\usepackage[banglamainfont=Kalpurush,
banglattfont=Siyam Rupali
]{latexbangla}
\usepackage[backend=biber,style=alphabetic,sorting=nyt, language=english,autolang=other]{biblatex}
\begin{document}
Hello
\end{document}
I get the following error -
line 7: Package etoolbox Error: Toggle 'blx@lang@captions@bengali' undefined. \begin{document}
: 'babel/polyglossia' detected but 'csquotes' missing.
: Unused global option(s): [onesided].
: Language 'bengali' not supported.
: No file bengali_test.bbl.
: There were undefined references.
: Please (re)run Biber on the file:(biblatex) bengali_test(biblatex) and rerun LaTeX afterwards.
etoolboxerror. (I'm usingbiblatexv3.16) What version ofbiblatexare you running? Please upload the complete.logfile of a the failing run to a text-sharing website such as https://pastebin.com/ or https://gist.github.com/. – moewe Jan 15 '21 at 15:56.aux,.bbland.bcffile. Then run XeLaTeX again. (The error about'blx@lang@captions@bengali' undefinedis no longer present. You get a very different error in the.auxfile now.) – moewe Jan 15 '21 at 16:04.logyou show does not report any errors, but it says that your citationbhatt-perfectoidis undefined. Are you sure the citation is contained in your.bibfile? Is the entry key correct? Did you run XeLaTeX, Biber, XeLaTeX, XeLaTeX? Did Biber report any issues in the.blgfile? Can you run https://gist.github.com/moewew/6f24521919be979a478ceb0ffde20153 (without any modifications, the.bibfile used there will be found automatically on your system)? – moewe Jan 20 '21 at 06:58However my original document doesn't work with XeTex, or LuaLaTex (message: XeTeX is required to compile this document.* Sorry!) or pdflatexmk. With XeLaTex it produces empty bibliography. The bibliography is fine as the SAME document produces a bibliography when I change language from LatexBangla to babel English.
– Grobber Jan 20 '21 at 09:41pdflatexmkdoes all of that for you automatically behind the scenes (with pdfLaTeX instead of XeLaTeX) that's why you don't have to run Biber explicitly. See https://tex.stackexchange.com/q/154751/35864 to find out how to configure your editor to help you run Biber for you. I don't quite understand the last error and it does not appear to have anything to do withbiblatex. Note that there usually is a difference between running XeTeX and XeLaTeX: you want the latter. – moewe Jan 20 '21 at 16:20.logof the file where the bibliography does not work reportsfile 'paper.bbl' not found.which suggest that you did not run Biber after running XeLaTeX (or that you did, but Biber stopped early due to an error). Run XeLaTeX, Biber, XeLaTeX, XeLaTeX in that order. – moewe Jan 21 '21 at 06:14