biblatex - 作者姓名被隐藏

biblatex - 作者姓名被隐藏

如果有人问到这个问题,我深感抱歉,但说实话,我甚至不知道正确的术语是什么。

我目前遇到了这种行为(例如):

[1] F. Lastname1 和 F. Lastname2,《标题》,期刊,第 1 卷,第 1 期,第 1-3 页,2011 年 1 月。

[2],“Title2”,Journal2,第1卷,第1期,第1-3页,2010年1月。

参考文献[1][2]作者列表相同。我想在两个参考文献中都显示全名(或至少插入一个--)。

我甚至不知道这种行为叫什么,因此很难找到正确的选项来改变它。

这是我的消息来源:

\documentclass[a4paper,oneside]{article}
\usepackage[T1]{fontenc}
\usepackage[american]{babel}
\usepackage{csquotes}
\usepackage[firstinits=true, isbn=false, url=false,  doi=false, style=ieee, defernumbers=true, sorting=ydnt]{biblatex}
\usepackage{hyperref}
\usepackage{nameref}
\addbibresource{mybib.bib}
\begin{document}
\section*{Publications and Patents}
\nocite{*}
\printbibliography[heading=subbibliography,title={Book Chapters},type=incollection,prefixnumbers={B}]
\printbibliography[heading=subbibliography,title={Journals},type=article,prefixnumbers={J}]
\printbibliography[heading=subbibliography,title={Peer Reviewed Conferences},type=inproceedings,prefixnumbers={C}]
\printbibliography[heading=subbibliography,title={Theses}, type=thesis, prefixnumbers={Th}]
\printbibliography[heading=subbibliography,title={Patents},keyword=patent,prefixnumbers={P}]
\printbibliography[heading=subbibliography,title={Letters},keyword=letter, prefixnumbers={L}]
\end{document}

bib 文件如下所示(仅摘录几段)

@article{Zelazo2009b,
author = {Zelazo, Daniel and Mesbahi, Mehran},
doi = {10.1109/TAC.2010.2056730},file = {:Users/zelazo/Research/Mendeley Paper Database/Zelazo, Mesbahi/Data strategies \& benchmarks the monthly advisory for health care executives/Zelazo, Mesbahi - 2000 - Decision-analysis software gives hospitals edge in physician performance monitoring.pdf:pdf},
issn = {0018-9286},
journal = {IEEE Transactions on Automatic Control},
month = mar,
number = {3},
pages = {544--555},
title = {{Edge Agreement: Graph-Theoretic Performance Bounds and Passivity Analysis}},
volume = {56},
year = {2011}
}

@article{Zelazo2010,
address = {Baltimore, MD},
author = {Zelazo, Daniel and Mesbahi, Mehran},
doi = {10.1109/TAC.2010.2085312},
file = {:Users/zelazo/Research/Mendeley Paper Database/Zelazo, Mesbahi/IEEE Transactions on Automatic Control/Zelazo, Mesbahi - 2010 - Graph-theoretic Analysis and Synthesis of Relative Sensing Networks.pdf:pdf},
issn = {0018-9286},
journal = {IEEE Transactions on Automatic Control},
month = may,
number = {5},
pages = {971--982},
title = {{Graph-Theoretic Analysis and Synthesis of Relative Sensing Networks}},
volume = {56},
year = {2011}
}

@incollection{Zelazo,
address = {Boston, MA},
author = {Zelazo, Daniel and Mesbahi, Mehran},
booktitle = {Efficient Modeling and Control of Large-Scale Systems},
doi = {10.1007/978-1-4419-5757-3},
editor = {Mohammadpour, Javad and Grigoriadis, Karolos M.},
isbn = {978-1-4419-5756-6},
keywords = {book},
mendeley-tags = {book},
pages = {219--249},
publisher = {Springer US},
title = {{Graph-Theoretic Methods for Networked Dynamic Systems: Heterogeneity and H2 Performance}},
year = {2010}
}

@inproceedings{Zelazo2009d,
address = {Shanghai, China},
author = {Zelazo, Daniel and Mesbahi, Mehran},
booktitle = {Proceedings of the 48h IEEE Conference on Decision and Control (CDC) held jointly with 2009 28th Chinese Control Conference},
doi = {10.1109/CDC.2009.5400513},
isbn = {978-1-4244-3871-6},
month = dec,
pages = {4747--4752},
publisher = {IEEE},
title = {{H2 performance of agreement protocol with noise: An edge based approach}},
year = {2009}
}

@inproceedings{Zelazo2009a,
address = {Seattle, WA},
author = {Zelazo, Daniel and Mesbahi, Mehran},
booktitle = {AIAA Infotech@Aerospace Conference and AIAA Unmanned ... Unlimited Conference},
file = {::},
issn = {1041-1135},
month = apr,
number = {7},
pages = {C3--C3},
title = {{H2 Performance of Relative Sensing Networks: Analysis and Synthesis}},
volume = {21},
year = {2009}
}

@article{Zelazo2011a,
author = {Zelazo, Daniel and Dai, Ran and Mesbahi, Mehran},
journal = {Energy Systems (accepted for publication)},
title = {{An Energy Management System for Off-Grid Power Systems}},
year = {2011}
}
@article{Zelazo2011c,
author = {Zelazo, Daniel and Schuler, Simone and Allg\"{o}wer, Frank},
journal = {Systems \& Control Letters (submitted)},
title = {{Cycles and Performance in Consensus Networks}},
year = {2011}
}

@phdthesis{Zelazo2009c,
author = {Zelazo, Daniel},
school = {University of Washington},
title = {{Graph-theoretic Methods for the Analysis and Synthesis of Networked Dynamic Systems}},
type = {PhD},
year = {2009},
keyword={thesis}
}

答案1

问题是你需要定义一个bibstyle避免使用dashed选项,如软件包文档的第 3.3.2 节。在本例中,我包含了选项bibstyle=numeric

\documentclass[a4paper,oneside]{article}

\usepackage[T1]{fontenc}
\usepackage[american]{babel}
\usepackage{csquotes}
\usepackage[firstinits=true, isbn=false, url=false,  doi=false, style=ieee, defernumbers=true, sorting=ydnt, bibstyle=numeric]{biblatex}
\usepackage{hyperref}
\usepackage{nameref}

\usepackage{filecontents}    
\begin{filecontents}{mybib.bib}
@article{Zelazo2009b,
author = {Zelazo, Daniel and Mesbahi, Mehran},
doi = {10.1109/TAC.2010.2056730},file = {:Users/zelazo/Research/Mendeley Paper Database/Zelazo, Mesbahi/Data strategies \& benchmarks the monthly advisory for health care executives/Zelazo, Mesbahi - 2000 - Decision-analysis software gives hospitals edge in physician performance monitoring.pdf:pdf},
issn = {0018-9286},
journal = {IEEE Transactions on Automatic Control},
month = mar,
number = {3},
pages = {544--555},
title = {{Edge Agreement: Graph-Theoretic Performance Bounds and Passivity Analysis}},
volume = {56},
year = {2011}
}

@article{Zelazo2010,
address = {Baltimore, MD},
author = {Zelazo, Daniel and Mesbahi, Mehran},
doi = {10.1109/TAC.2010.2085312},
file = {:Users/zelazo/Research/Mendeley Paper Database/Zelazo, Mesbahi/IEEE Transactions on Automatic Control/Zelazo, Mesbahi - 2010 - Graph-theoretic Analysis and Synthesis of Relative Sensing Networks.pdf:pdf},
issn = {0018-9286},
journal = {IEEE Transactions on Automatic Control},
month = may,
number = {5},
pages = {971--982},
title = {{Graph-Theoretic Analysis and Synthesis of Relative Sensing Networks}},
volume = {56},
year = {2011}
}

@incollection{Zelazo,
address = {Boston, MA},
author = {Zelazo, Daniel and Mesbahi, Mehran},
booktitle = {Efficient Modeling and Control of Large-Scale Systems},
doi = {10.1007/978-1-4419-5757-3},
editor = {Mohammadpour, Javad and Grigoriadis, Karolos M.},
isbn = {978-1-4419-5756-6},
keywords = {book},
mendeley-tags = {book},
pages = {219--249},
publisher = {Springer US},
title = {{Graph-Theoretic Methods for Networked Dynamic Systems: Heterogeneity and H2 Performance}},
year = {2010}
}

@inproceedings{Zelazo2009d,
address = {Shanghai, China},
author = {Zelazo, Daniel and Mesbahi, Mehran},
booktitle = {Proceedings of the 48h IEEE Conference on Decision and Control (CDC) held jointly with 2009 28th Chinese Control Conference},
doi = {10.1109/CDC.2009.5400513},
isbn = {978-1-4244-3871-6},
month = dec,
pages = {4747--4752},
publisher = {IEEE},
title = {{H2 performance of agreement protocol with noise: An edge based approach}},
year = {2009}
}

@inproceedings{Zelazo2009a,
address = {Seattle, WA},
author = {Zelazo, Daniel and Mesbahi, Mehran},
booktitle = {AIAA Infotech@Aerospace Conference and AIAA Unmanned ... Unlimited Conference},
file = {::},
issn = {1041-1135},
month = apr,
number = {7},
pages = {C3--C3},
title = {{H2 Performance of Relative Sensing Networks: Analysis and Synthesis}},
volume = {21},
year = {2009}
}

@article{Zelazo2011a,
author = {Zelazo, Daniel and Dai, Ran and Mesbahi, Mehran},
journal = {Energy Systems (accepted for publication)},
title = {{An Energy Management System for Off-Grid Power Systems}},
year = {2011}
}
@article{Zelazo2011c,
author = {Zelazo, Daniel and Schuler, Simone and Allg\"{o}wer, Frank},
journal = {Systems \& Control Letters (submitted)},
title = {{Cycles and Performance in Consensus Networks}},
year = {2011}
}

@phdthesis{Zelazo2009c,
author = {Zelazo, Daniel},
school = {University of Washington},
title = {{Graph-theoretic Methods for the Analysis and Synthesis of Networked Dynamic Systems}},
type = {PhD},
year = {2009},
keyword={thesis}
}
\end{filecontents}

\addbibresource{mybib.bib}    
\nocite{*}    

\begin{document}    
\section*{Publications and Patents}    

\printbibliography[heading=subbibliography,title={Book Chapters},type=incollection,prefixnumbers={B}]
\printbibliography[heading=subbibliography,title={Journals},type=article,prefixnumbers={J}]
\printbibliography[heading=subbibliography,title={Peer Reviewed Conferences},type=inproceedings,prefixnumbers={C}]
\printbibliography[heading=subbibliography,title={Theses}, type=thesis, prefixnumbers={Th}]
\printbibliography[heading=subbibliography,title={Patents},keyword=patent,prefixnumbers={P}]
\printbibliography[heading=subbibliography,title={Letters},keyword=letter, prefixnumbers={L}]

\end{document}

固定条目

答案2

自 0.9 版以来,几种BibLaTeX样式都有附加前言选项dashed=false

相关内容