当使用特定的 Bibtex 包进行引用时,如何才能不使用括号进行引用(例如调整输出)?

当使用特定的 Bibtex 包进行引用时,如何才能不使用括号进行引用(例如调整输出)?

我正在使用 Bibtex 样式包之一“cell”包来处理我的引用(我们特别需要以期刊 Cell 的方式引用)。它工作得很好,但当我引用时,我总是得到像“xxxx (Smith et al., 2017)”这样的输出,包括括号。但我还想能够写“Smith et al, (2017) said xxxx”。这可能吗?如果可以,怎么做?我已经制作了序言、引用示例和最后的参考书目。

抱歉,这个问题问得不好——我还只是个初学者!

非常感谢 :))

%PREAMBLE
\documentclass[11pt,a4paper]{report}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{afterpage}
\usepackage{mwe}
\usepackage{siunitx}
\usepackage{float}
\usepackage{mathtools}
\usepackage{xcolor}
\usepackage{tabu}
\usepackage{array}
\usepackage{multirow}
\usepackage[bottom]{footmisc}
\usepackage{caption}
\usepackage{booktabs}
\captionsetup{font=small}
\usepackage{cell}
\usepackage{setspace}
\onehalfspacing %to change line spacing, DO NOT change
\setlength{\parskip}{1em} %to change paragraph spacing
\setlength{\parindent}{0em}%to change paragraph indent
\usepackage{titlesec}
\usepackage{hyperref}
\usepackage{alphabeta}
\usepackage{gensymb}
\graphicspath{C:/Users/esmee/Dropbox/Cambridge/MVST II/Research Project/Project report/Project graphics}
\usepackage[left=2.8cm, right=2.8cm, top=3cm, bottom=3cm, headheight=17pt,
includehead, includefoot, heightrounded]{geometry}
\usepackage{fancyhdr}
\pagestyle{fancy}
\setlength{\footskip}{80pt}
\usepackage{tikz}
\usetikzlibrary{shapes,arrows}
\usepackage{caption}
\usepackage{adjustbox}
\usepackage[section]{placeins}
\usepackage{chngcntr}
\counterwithout{figure}{chapter}
\counterwithout{table}{chapter}
\usepackage{nonumonpart}
\usepackage{scrpage2}

\begin{document}

%Example of citing:

XXXX \cite{wilson_spontaneous_1981}

%End bibliography stuff
\bibliography{References2}
\bibliographystyle{cell}

\end{document}

相关内容