如何引用带或不带括号的论文?

如何引用带或不带括号的论文?

如何在文章正文中用括号标出多年来的论文?谢谢帮助!

\documentclass[12pt,a4paper]{article}
\usepackage{microtype}
\usepackage{sectsty}
\allsectionsfont{\centering}
\usepackage{indentfirst,amsmath,multicol,amssymb,booktabs}
\usepackage{setspace} 
\usepackage{bm}
\usepackage{geometry}
\usepackage[sort]{natbib}
\setlength{\bibsep}{2pt}
\geometry{top=1.4in,bottom=1.in,left=1in,right=1in}
\usepackage{grffile}
\usepackage{epstopdf}
\usepackage[svgnames]{xcolor}
\usepackage{wallpaper}
\usepackage[colorlinks,linkcolor=blue,citecolor=blue]{hyperref} 
\onehalfspacing
\begin{document}
    \citealp{Gil}
    (\citealp{Gil})
\bibliographystyle{chicago}
\bibliography{pa}
\end{document}

在此处输入图片描述

答案1

不确定我是否正确理解了你的问题,但如果你想要在年份周围加括号,你可以使用\citet{}

\documentclass[12pt,a4paper]{article}
\usepackage{microtype}
\usepackage{sectsty}
\allsectionsfont{\centering}
\usepackage{indentfirst,amsmath,multicol,amssymb,booktabs}
\usepackage{setspace} 
\usepackage{bm}
\usepackage{geometry}
\usepackage[sort]{natbib}
\setlength{\bibsep}{2pt}
\geometry{top=1.4in,bottom=1.in,left=1in,right=1in}
\usepackage{grffile}
\usepackage{epstopdf}
\usepackage[svgnames]{xcolor}
\usepackage{wallpaper}
\usepackage[colorlinks,linkcolor=blue,citecolor=blue]{hyperref} 
\onehalfspacing
\begin{document}
    \citealp{bet06}

    (\citealp{bet06})

    \citet{bet06}
\bibliographystyle{chicago}
\bibliography{document}
\end{document}

在此处输入图片描述

相关内容