I have a xyz.bib file like that:
@article{name,
title = {This Is An English Title}
}
@article{name2,
title = {This Is Test German Title}
}
According to the "APA-Rules" the produced entries have only capital letters at the beginning of the title. But for german titles this rule may not apply (don't ask me why).
I want the title to be taken as it is in the bib file. (upper and lower case )
How can I change that using the apacite package like that:
\documentclass{article}
\usepackage{apacite}
\begin{document}
Random citation \cite{name} embeddeed in text.
Random citation \cite{nam2} embeddeed in text.
\bibliography{xyz}
\bibliographystyle{apacite}
\end{document}
I thought about an lang= xyz-tag in the bib-file, but couldn't get it to work.
EDIT:
BibTeX loses capitals when creating .bbl file
I have found a solution. I have probably thought much too complicated.

