zepinglee / citeproc-lua

A Lua implementation of the Citation Style Language (CSL)
MIT License
62 stars 7 forks source link

get rid of the title of the bibliography #62

Closed whcjimmy closed 2 months ago

whcjimmy commented 2 months ago

Describe the bug I would like to remove the title of the bibliography. I tried \printbibliography[heading=none], but the title still exists.

If my attempt is incorrect, is there a way to remove the title?

Additional information

To Reproduce

\RequirePackage{filecontents}

\begin{filecontents*}{test.bib}
@article{acar2018survey,
  title={A survey on homomorphic encryption schemes: Theory and implementation},
  author={Acar, Abbas and Aksu, Hidayet and Uluagac, A Selcuk and Conti, Mauro},
  journal={ACM Computing Surveys (Csur)},
  volume={51},
  number={4},
  pages={1--35},
  year={2018},
  publisher={ACM New York, NY, USA}
}
\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[heading=none]

\end{document}

Screenshots

image
whcjimmy commented 2 months ago

I justed found out that [heading=none] is the parameter for biblatex. Therefore, I think my attempet is wrong.

zepinglee commented 2 months ago

This feature works as expected in v0.4.9.

Screenshot 2024-04-26 at 20 21 18
whcjimmy commented 2 months ago

Thanks for your time. I successfully removed the title!