I am new to LaTeX and I have an issue with the bibliography that I am writing using biblatex. The problem is that the journal names appear in the printed bibliography with just the first letter capitalized, for example I get "Materials research society bulletin" instead of "Materials Research Society Bulletin". I know that this is what should happen with the article titles (and in fact it happens), but how can I avoid this to happen also for the journal names?
Here is an excerpt of my main file:
Code: Select all
\documentclass[12pt,a4paper,titlepage]{memoir}
\usepackage[OT1]{fontenc}
\usepackage[french,english]{babel}
\usepackage[utf8]{inputenc}
\usepackage[linkcolor=black,colorlinks=true,citecolor=black,filecolor=black]{hyperref}
\usepackage[backend=bibtex,style=ieee]{biblatex}
\addbibresource{refs.bib}
\begin{document}
\backmatter
\printbibliography
\end{document}
Code: Select all
@article{2014rogers,
title={Materials for semiconductor devices that can bend, fold, twist and stretch},
author={Rogers, J. A.},
journal={Materials Research Society Bulletin},
year={2014},
number={},
pages={549-556},
volume={39},
doi={10.1557/mrs.2014.102},
}