I want to cite https://arxiv.org/abs/math/0511710
I have written following in .bib file
@article{baez2007categories,
title={Higher gauge theory, Categories in algebra, geometry and mathematical physics (eds. A. Davydov et al)},
author={Baez, JC and Schreiber, U},
journal={Contemporary Mathematics},
volume={431},
pages={7--30},
year={2007}
}
I am expecting it to come like
J C Baez and Urs Schreiber, Higher gauge theory, in Categories in Algebra, Geometry and Mathematical Physics, eds. A. Davydov et al, Contemp. Math. 431, AMS, Providence, Rhode Island, 2007, pp. 7-30
It is coming as
JC Baez and U Schreiber. Higher gauge theory, categories in algebra, geometry and mathematical physics (eds. a. davydov et al). Contemporary Mathematics, 431:7–30, 2007.
I do not see what is wrong with what I have written, Book name is coming in small letters.
Working example :
\documentclass[12pt,reqno,a4paper]{amsart}
%\usepackage[utf8]{inputenc} % not needed with up-to-date TeX systems
\usepackage[english]{babel}
\usepackage{amsmath,amsthm,amsfonts,amssymb}
\usepackage{mathtools}
\usepackage{color}
\usepackage{mathrsfs}
\usepackage[all]{xy}
\usepackage{tikz-cd}
\usepackage[normalem]{ulem} % do you *really* need it?
\usepackage{datetime}
\usepackage{hyperref}
\theoremstyle{definition}
\newtheorem{theorem}{Theorem}[section]
\newtheorem{construction}{Construction}[section]
\newtheorem{corollary}{Corollary}[section]
\newtheorem{lemma}{Lemma}[section]
\newtheorem{definition}{Definition}[section]
\newtheorem{remark}{Remark}[section]
\newtheorem{proposition}{Proposition}[section]
\newtheorem{example}{Example}[section]
\newtheorem*{question}{Question}
\newtheorem*{solution}{Solution}
\newtheorem{exercise}{Exercise}
\newcommand{\mc}{\mathcal}
\newcommand{\mf}{\mathfrak}
\newcommand{\xra}{\xrightarrow}
\newcommand{\ra}{\rightarrow}
\pagestyle{myheadings}
\textheight 9.3in
\textwidth 6.5in
\calclayout
% metadata
\title{Something}
\author{Someone}
\date{\today}
\begin{document}
\cite{baez2007categories}
\bibliography{Something}
\bibliographystyle{plain}
\end{document}

.bstfile you are using? – MadyYuvi Jun 29 '19 at 04:06.bstfile, https://tex.stackexchange.com/questions/85432/where-the-bst-file-comes-in I came to understand from your MWE, that you are using theplain.bstfile... – MadyYuvi Jun 29 '19 at 04:17@articleentry type only for articles published in journals. You ought to be using the@incollectionentry type. – Mico Jun 29 '19 at 04:17