Entry in .bib file (edit by Jabref)
@INBOOK{Baier2008a,The output will be like that:
chapter = {4},
pages = {170-198},
title = {{P}rinciples of model checking},
publisher = {MIT Press},
year = {2008},
author = {Christel Baier and Joost-Pieter Katoen},
bibsource = {DBLP, http://dblp.uni-trier.de},
isbn = {978-0-262-02649-9},
owner = {randall},
timestamp = {2013.05.23}
}
[22] ——, Principles of model checking. MIT Press, 2008, ch. 4, pp. 170–198.
Try
If I remove the hyphen which is used to connect the name, it will be alright.
@INBOOK{Baier2008a,The output will be like that:
chapter = {4},
pages = {170-198},
title = {{P}rinciples of model checking},
publisher = {MIT Press},
year = {2008},
author = {Christel Baier and Joost-Pieter Katoen},
bibsource = {DBLP, http://dblp.uni-trier.de},
isbn = {978-0-262-02649-9},
owner = {randall},
timestamp = {2013.05.23}
}
[22] C. Baier and J. P. Katoen, Principles of model checking. MIT Press, 2008,However, the similar entry
ch. 4, pp. 170–198.
@BOOK{Baier2008,will give the right output
title = {{P}rinciples of model checking},
publisher = {MIT Press},
year = {2008},
author = {Christel Baier and Joost-Pieter Katoen},
pages = {I-XVII, 1-975},
bibsource = {DBLP, http://dblp.uni-trier.de},
isbn = {978-0-262-02649-9},
owner = {randall},
timestamp = {2013.05.23}
}
[21] C. Baier and J.-P. Katoen, Principles of model checking. MIT Press, 2008.
Root Cause
If two entries in .bib file have the same author name, then one of them will become 3em dash (——).
It's default behaviour defined in
IEEEtran.bst style.
To remove this limitation, change the CTLdash_repeated_names value to no in .bib file
@IEEEtranBSTCTL{IEEEexample:BSTcontrol,Then add the following line in the tex file
CTLdash_repeated_names = "no"
}
\bstctlcite{IEEEexample:BSTcontrol}However, if the documentclass is not IEEEtrans, then this command \bstctlcite is not available. So this try will failed too.
Solution:
For the Latex file which has documentclass IEEEtrans, the above solution may be applied. For others (Article and Book class), just leave (——), it's not an error
No comments :
Post a Comment