-
|
For some reason, when TexStudio runs, it is changing the Title Case in a bibtex entry to sentence case. What setting can block this from occurring? Here is the tex code:
and the bibtex file "test.bib" is
When you run this, you can see the Title case being changed to Sentence case. Any ideas why? Is perhaps the line bibliographystyle{amsplain} doing this?
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
|
I don't understand what you are doing exactly and where something is changed ? |
Beta Was this translation helpful? Give feedback.
-
|
The case change is done by the bib style See https://tex.stackexchange.com/q/10772 for more info. \begin{filecontents}[noheader, force]{test.bib}
@article{An_author,
archiveprefix = {arXiv},
author = {Author, An},
eprint = {1705.05929},
journal = {arXiv preprint arXiv:1705.05929},
pages = {},
primaryclass = {math.NT},
title = {{The Integer Cuboid Table}},
url = {https://arxiv.org/abs/1705.05929},
year = {2017}
}
\end{filecontents}
\documentclass{article}
\usepackage{amsmath, amssymb, amsthm}
\usepackage{geometry}
\begin{document}
See~\cite{An_author}.
\bibliographystyle{amsplain}
\bibliography{test}
\end{document}With in PDF you then get (may need a manual bibtex run, via Tools - Commands - Bibtex) |
Beta Was this translation helpful? Give feedback.

The case change is done by the bib style
amsplain.bst, more specifically theFUNCTION {format.title}. Adding an extra pair of braces does the trick, but may violate what the bib style requires.See https://tex.stackexchange.com/q/10772 for more info.