我注意到我正在写的论文中的几处引文显示不正确:(,
引文中出现了附加内容......
例子:
%MatlabSignalAnalysis
@misc{MatlabSignalAnalysis,
author = "Mathworks",
title = "Practical Introduction to Time-Frequency Analysis",
howpublished = "https://www.mathworks.com/help/signal/examples/practical-introduction-to-time-frequency-analysis.html",
year = "2018"
}
%Duarte12
@INPROCEEDINGS{Duarte12,
author = "C. Duarte and P. Delmar and K. W. Goossen and K. Barner and E. Gomez-Luna",
booktitle = "2012 Future of Instrumentation International Workshop (FIIW) Proceedings",
title = "Non-intrusive load monitoring based on switching voltage transients and wavelet transforms",
pages = "1-4",
year = "2012"
}
有什么帮助吗?
编辑:
我正在使用cta-author
文档类和iet
参考书目样式。
\documentclass{cta-author}
\usepackage{graphicx}
\usepackage[export]{adjustbox}
\usepackage{subfig}
\usepackage{tabularx,booktabs}
\usepackage{multirow}
\graphicspath{ {Pictures/} }
\usepackage{hyperref}
\usepackage{amsmath}
\usepackage{mdwmath}
\usepackage{mdwtab}
\usepackage{array}
\usepackage{multirow}
\usepackage{makecell}
\showboxdepth=5
\showboxbreadth=5
当我引用一份文件时我使用\cite{Duarte12}
:
As shown in the literature \cite{Srinivasan06, Duarte12, Lin14}, transients are useful features for the task of loads' identification and disaggregation.
答案1
嗯,根据班级cta-author.cls
嗯国际工程学会并且其中包含的文件iet.bst
我为了测试目的创建了以下 mwe:
\RequirePackage{filecontents}
\begin{filecontents*}{\jobname.bib}
@misc{MatlabSignalAnalysis,
author = "Mathworks",
title = "Practical Introduction to Time-Frequency Analysis",
howpublished = "https://www.mathworks.com/help/signal/examples/practical-introduction-to-time-frequency-analysis.html",
year = "2018",
}
@INPROCEEDINGS{Duarte12,
author = "C. Duarte and P. Delmar and K. W. Goossen and K. Barner and E. Gomez-Luna",
booktitle = "2012 Future of Instrumentation International Workshop (FIIW) Proceedings",
title = "Non-intrusive load monitoring based on switching voltage transients and wavelet transforms",
pages = "1-4",
year = "2012",
}
\end{filecontents*}
\documentclass{cta-author}
\usepackage{graphicx}
\usepackage[export]{adjustbox}
\usepackage{subfig}
\usepackage{tabularx,booktabs}
\usepackage{multirow}
\graphicspath{ {Pictures/} }
\usepackage{hyperref}
\usepackage{amsmath}
\usepackage{mdwmath}
\usepackage{mdwtab}
\usepackage{array}
\usepackage{multirow}
\usepackage{makecell}
\showboxdepth=5
\showboxbreadth=5
\begin{document}
\supertitle{Super Title}
\title{The Title of the Paper}
\author{\au{John Doe$^{1,2}$} \au{Eva Musterfrau$^1$} \au{Max Mustermann$^2$}}
\address{\add{1}{Faculty of Engineering and IT, University of Technology, Sydney PO Box 123, Broadway, NSW 2007, Australia}
\add{2}{Shanghai Institute of Applied Mathematics and Mechanics and Shanghai Key Laboratory of Mechanics in Energy Engineering, Shanghai University, Shanghai, 200072, People's Republic of China}
\email{[email protected]}}
\begin{abstract}
\looseness=-1 The second-order consensus of multiple
interacting non-identical agents with non-linear protocols is studied in this article.
Firstly, it is shown that all agents with different non-linear
dynamics can achieve consensus without a leader. Secondly, an
explicit expression of the consensus value is analytically developed
for the group of all agents. Thirdly, for the consensus of multiple
agents with a leader, it is proved that each agent can track the
position and velocity of the leader, which are different from those
of the follower agents. Finally, numerical simulations are given to
illustrate the theoretical results.
\end{abstract}
\maketitle
\section{Introduction}\label{sec1}
As shown in the literature \cite{Srinivasan06,Duarte12,Lin14},
transients are useful features for the task of loads' identification
and disaggregation.
\nocite{*}
\bibliographystyle{iet} % iet.bst
\bibliography{\jobname}
\end{document}
编译时出现以下警告
Warning--I didn't find a database entry for "Srinivasan06"
Warning--I didn't find a database entry for "Lin14"
Warning--empty author and editor in MatlabSignalAnalysis
Warning--missing publisher in MatlabSignalAnalysis
(There were 4 warnings)
以及以下参考书目:
正如您所看到的,由于缺少发布者,因此您得到的是开头,(
后面跟着一个逗号。
现在让我们将缺失的出版商(和编辑者)添加到 bib 文件中两个都bib 条目。请参阅以下 mwe
\RequirePackage{filecontents}
\begin{filecontents*}{\jobname.bib}
@misc{MatlabSignalAnalysis,
author = "Mathworks",
editor = "Mathworks",
publisher = "Mathworks",
title = "Practical Introduction to Time-Frequency Analysis",
howpublished = "https://www.mathworks.com/help/signal/examples/practical-introduction-to-time-frequency-analysis.html",
year = "2018",
}
@INPROCEEDINGS{Duarte12,
author = "C. Duarte and P. Delmar and K. W. Goossen and K. Barner and E. Gomez-Luna",
booktitle = "2012 Future of Instrumentation International Workshop (FIIW) Proceedings",
title = "Non-intrusive load monitoring based on switching voltage transients and wavelet transforms",
publisher = "Publisher",
pages = "1-4",
year = "2012",
}
\end{filecontents*}
\documentclass{cta-author}
\usepackage{graphicx}
\usepackage[export]{adjustbox}
\usepackage{subfig}
\usepackage{tabularx,booktabs}
\usepackage{multirow}
\graphicspath{ {Pictures/} }
\usepackage{hyperref}
\usepackage{amsmath}
\usepackage{mdwmath}
\usepackage{mdwtab}
\usepackage{array}
\usepackage{multirow}
\usepackage{makecell}
\showboxdepth=5
\showboxbreadth=5
\begin{document}
\supertitle{Super Title}
\title{The Title of the Paper}
\author{\au{John Doe$^{1,2}$} \au{Eva Musterfrau$^1$} \au{Max Mustermann$^2$}}
\address{\add{1}{Faculty of Engineering and IT, University of Technology, Sydney PO Box 123, Broadway, NSW 2007, Australia}
\add{2}{Shanghai Institute of Applied Mathematics and Mechanics and Shanghai Key Laboratory of Mechanics in Energy Engineering, Shanghai University, Shanghai, 200072, People's Republic of China}
\email{[email protected]}}
\begin{abstract}
\looseness=-1 The second-order consensus of multiple
interacting non-identical agents with non-linear protocols is studied in this article.
Firstly, it is shown that all agents with different non-linear
dynamics can achieve consensus without a leader. Secondly, an
explicit expression of the consensus value is analytically developed
for the group of all agents. Thirdly, for the consensus of multiple
agents with a leader, it is proved that each agent can track the
position and velocity of the leader, which are different from those
of the follower agents. Finally, numerical simulations are given to
illustrate the theoretical results.
\end{abstract}
\maketitle
\section{Introduction}\label{sec1}
As shown in the literature \cite{%
% Srinivasan06,
Duarte12%,
% Lin14
},
transients are useful features for the task of loads' identification
and disaggregation.
\nocite{*}
\bibliographystyle{iet} % iet plain
\bibliography{\jobname}
\end{document}
编译时没有对参考书目发出警告,并且以下内容——仍然是错误的!——参考书目:
正如你所看到的(
现在跟着出版商,但是年份之后并没有关闭。这只是一个错误,iet.bst
您应该将其报告给类别维护者!
为了进行简单测试,使用样式plain
而不是iet
在参考书目中显示错误......