LaTeX,引用同一作者而不编号

LaTeX,引用同一作者而不编号

我正在完成一篇论文,但我的 bibstyle 让我很困扰。我找不到以下问题的答案:

如何删除多次引用的同一作者的自动编号(a,b,c,d ...)?

我搜索答案的结果是:我猜这与有关FUNCTION{forward.pass},可能与有关FUNCTION{reverse.pass}。因为如果我删除这些函数(有效),编号就不会再显示,(这是我现在的问题!)逗号和空格符号保留。(这很烦人。因为它看起来像这样:

作者;标题,;URL;注释。(逗号及其后的空格应该消失。)

我发现暂时解决这个问题的方法是:只需编辑 .bbl 文件 - 删除不应该存在的内容并编译一次。(这有效,但非常非LaTeX方式...)


\documentclass[12pt,oneside,]    {report}                       

\begin{document}

Test text with citation 1: \cite{ZeusFocusonPEEK.2006}. And further citations here \cite{Saib.1993,CAMPUSdaten.2012}.

\bibliographystyle{BibstyleDAAK}
\bibliography{literatur2}

\end{document}

和 literature2.bib

@electronic{CAMPUSdaten.2012,
author = {Anonymus},
title = {{C}{A}{M}{P}{U}{S} {D}atenbank},
url = {http://www.campusplastics.com/d},
urldate = {31.10.2012}
}

@article{Saib.1993,
author = {Saib, K. S. and Evans, W. J. and Isaac, D. H.},
year = {1993},
title = {{T}he role of microstructure during fatigue crack growth in poly(aryl ether ether ketone) ({P}{E}{E}{K})},
pages = {3198--3203},
volume = {34},
number = {15},
journal = {Polymer}
}

@electronic{ZeusFocusonPEEK.2006,
author = {Anonymus},
title = {{Z}eus {F}ocus on {P}{E}{E}{K}},
url = {http://www.zeusinc.com/},
urldate = {31.10.2012}
}

BibstyleDAAK 大约有 1700 行。我使用 docstrip 实用程序生成了它。

相关内容