当我在第 2 页引用同一篇文章时,它一直显示完整标题。当我有很多引用时,这会占用大量空间。我只想显示“作者,同上(如 n.1 所示)”。
我意识到当作者是同一个人时就会发生这种情况。但我必须保留同一作者的引用。我怎样才能去掉被蓝线覆盖的部分?
这是我的代码
\documentclass[11pt,BCOR=8mm]{scrbook}
%basic setting
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[english]{babel}
%citations
\usepackage[
authorformat=abbrv,authorformat==reducedifibidem,
authorformat=year,
citefull=first,
human,
bibformat=compress
bibformat=nohang
colastsep=divis,
chicago=true,
crossref=short,
pages=format,
pages=test,
titleformat=comma,
ibidem=strict,
ibidem=name,%&title
idem=strict,
howcited=compare,
lookat,
superscriptedition=all,
]{jurabib}
\begin{document}
This is the first time I cite this article. \footcitetitle{bibexample1}
This the second citation. \footcitetitle{bibexample2}
\newpage
This is the second time I cite this article, but I do not want to repeat the title. \footcitetitle{bibexample1} Now the second citation comes again. \footcitetitle{bibexample2}
\bibliographystyle{jox}
\bibliography{jurabibtesting}
\end{document}
}
这是 .bib 文件
@article{bibexample1,
title = {This is how to simplify the repeated citations},
author = {Mr Martin and Mr Steve and Mr Crain},
journal = {J. jurabib testing},
volume = {1},
issue = {11},
pages = {58},
numpages = {5},
year = {2016},
}
@article{bibexample2,
title = {It just keeps reapting the titel},
author = {Mr Martin and Mr Steve and Mr Crain},
journal = {J. jurabib testing},
volume = {4},
issue = {22},
pages = {598},
numpages = {4},
year = {2015},
}