Template modification to remove the bibliography title after exporting to latex

Hi,

I have a jupyter notebook with latex citations.

I found the way to export the text with the bibliography to latex and pdf using nbconvert after adding these few lines to the template :

((* block bibliography ))
\bibliographystyle{unsrt}
\bibliography{ipython}
((
endblock bibliography *))

This works but it generates a “References” title above the bibliography.

Anybody knows how to modify the template so that this title does not appear after exporting to latex ?

Thanks for your suggestions !

I found the solution myself after some time.

You just need to modify the tempalte this way:

((* block bibliography ))
\renewcommand\refname{}
\bibliographystyle{unsrt}
\bibliography{ipython}
(( endblock bibliography *))

‘unsrt’ being your bibliography style and ‘ipython’ your .bib file