A html span tag is printed when an extra pair of brackets is used in the bib file.
whcjimmy opened this issue · 2 comments
whcjimmy commented
Describe the bug
When appying an extra pair of brackets in the bib file, the parsing result is incorrect. As figured, a html span tag is printed.
Additional information
- TeX distribution: MacTex 2023.0314
- Package
citation-style-language
version: 0.3.0 - LaTeX engine:
lualatex
To Reproduce
\RequirePackage{filecontents}
\begin{filecontents*}{test.bib}
@misc{BAMF_2022,
author = {{Bundesamt für Migration und Flüchtlinge}},
title = {Curriculum für einen bundesweiten Orientierungskurs},
url={https://www.bamf.de/SharedDocs/Anlagen/DE/Integration/Integrationskurse/Kurstraeger/KonzepteLeitfaeden/curriculum-orientierungskurs-pdf.html},
year={2017},
urldate = {2024-04-26},
}
\end{filecontents*}
\documentclass{article}
% Customize Bibliography Style
\usepackage{citation-style-language}
\cslsetup{style = apa}
\addbibresource{test.bib} % or example.bib or example.yaml
\begin{document}
\nocite{*}
\printbibliography
\end{document}
zepinglee commented
whcjimmy commented
Thank you for your help. I got what I need!