I have a bib file with most words in the title all capitalized. For instance:
@article{ekstrom2013family,
Author = {Ekstr{\"o}m, Mats and {\"O}stman, Johan},
Date-Added = {2019-03-06 17:27:29 -0800},
Date-Modified = {2019-03-06 17:48:19 -0800},
Journal = {European Journal of Communication},
Number = {3},
Pages = {294-308},
Publisher = {Sage Publications Sage UK: London, England},
Title = {Family Talk, Peer Talk and Young People's Civic Orientation},
Volume = {28},
Year = {2013}}
However, the pdf output does not show these capitals -- the article titles are all turned to lowercase. What would be causing this issue?
In the preamble, I have:
\documentclass[12pt, letterpaper]{article}
\usepackage{natbib}
\usepackage{graphicx}
\usepackage{lipsum}
\usepackage{filecontents}
\usepackage{setspace}
\usepackage{booktabs}
\usepackage[utf8]{inputenc}
\usepackage{threeparttable}
\usepackage{rotating}
\usepackage{amsmath}
\usepackage[margin = .75in]{geometry}
\usepackage{url}
\usepackage{subfig}
\captionsetup[subfloat]{position = top, font = large}
\usepackage{float}
\usepackage[dvipsnames]{xcolor}
\usepackage{hyperref}
\usepackage{cite}
\usepackage{etoolbox}
\usepackage{cleveref}
\usepackage{lscape}
\hypersetup{
colorlinks,
citecolor=Violet,
linkcolor=Red,
urlcolor=Blue}
titlefields are determined by the bibliography style that's in use. Which style do you employ? By the way,natbibdoes not influence the uppercasing or lowercasing of words in thetitlefield. – Mico Apr 03 '19 at 07:43natbibandcite. Use one or the other, but not both. – Mico Apr 03 '19 at 07:45plainnatnorapalikeapply "sentence style" (with lowercasing of all words not encased in curly braces) to the contents of thetitlefield for entries of type@book. Are you maybe concerned about lowercasing of titles of entries of type@articleor@techreport? – Mico Apr 03 '19 at 07:53citeandnatbibare incompatible. In many situations they can coexist peacefully, but there are examples where documents loading both packages break. For most intents and purposesnatbibis more powerful thancite. Note also that usuallyhyperrefshould be the last package you load (only very few packages need to be loaded afterhyperref:cleverefis one of them,citeandetoolboxare not, they should be loaded beforehyperref). – moewe Apr 03 '19 at 08:42