I have a little issue, my bibliography (using Biblatex, biber) is written in upper case while I did note specified anything (I think), and I'm not happy with this.
Here is a little example :
\documentclass[a4paper,10pt,twoside]{article}
\usepackage[english,french]{babel}
\usepackage{filecontents}
\usepackage[
backend=biber,
style=chem-angew,
doi = false,
url = false,
sorting = none,
]{biblatex}
\setlength\bibitemsep{0.8\itemsep}
\renewcommand*{\bibfont}{\small}
\begin{filecontents}{sample.bib}
@article{myArticle,
author={Author},
title={Title},
journal={Journal},
year={2000},
volume={1}}
\end{filecontents}
\addbibresource{sample.bib}
\begin{document}
\begin{refsection}
Let's cite this : \cite{myArticle}.
\printbibliography
\end{refsection}
\end{document}
And I obtain "AUTHOR" with the A bigger than the other letters, but still everything in capitalized letters. I saw people have similar issue, but usually this is the opposite.
