我有以下 LaTeX 代码:
\documentclass[a4paper,
12pt,
bibliography=totoc,
index=totoc,
abstracton,
headsepline,
]{scrreprt}
\usepackage{latexsym}
\usepackage[latin1]{inputenc}
\usepackage[ngerman,english]{babel}
\usepackage [round,authoryear] {natbib}
\usepackage[bookmarksopen,hyperfootnotes=false,pdftitle=test, pdfauthor=test,pdfsubject=test]{hyperref}
\begin{document}
Here comes a cite to literature\footnote{\citep[p. 53]{LathamWatkins:2011}.}.
\bibliographystyle{autorjahrdidiDE}
\bibliography{Bibref}
\end{document}
在我的 Bibre.bib 中我有以下条目:
@Misc{LathamWatkins:2011,
author = {Latham\&Watkins},
title = "Regulatory Capital Reform under Basel 3",
note = "available: \nolinkurl{http://www.garp.org/media/583507/regulatorycapitalreformbaseliii_nicolaides032311.pdf} (access on 05.03.2013, creation 24.03.2011)",
year = "2011",
}
这会在页面底部创建一个引用条目,如下所示:
^1(Latham&Watkins,2011 年,第 53 页)
请参阅我添加的屏幕截图:
我不想要括号!我需要做哪些更改,才能让括号 () 消失?
编辑(关于第一个答案):\cite 没有改变任何东西,\citet 看起来如下所示:
但是否可以完全不使用括号?这对我来说非常重要,因为我正在设置一个重要的文档,并且我更希望完全不使用括号。
答案1
答案2
尝试使用\cite
和\citet
代替\citep
。这三个命令的作用不同。