参考文献列表中的参考文献顺序

参考文献列表中的参考文献顺序

我的最低工作示例:

\documentclass{article}


\begin{document}

Here I refer to~\cite{Smaili:2011aa} and here I refer to~\cite{Edwards:2010aa}.


This is a table where I mention all my references:

\begin{table}[!htb]
    \begin{tabular}{lll}
    Reference 1 & Edwards &  \cite{Edwards:2010aa} \\
    Reference 2 & Smaili &  \cite{Smaili:2011aa} \\
    \end{tabular}
\end{table}

\bibliographystyle{ieeetr}
\bibliography{biblio}

\end{document}

以及对应的bib文件:

@conference{Smaili:2011aa,
    Author = {Smaili, Hafid and Breeman, Jan and Lombaerts, Thomas and Stroosma, Olaf},
    Booktitle = {4th European Conference for Aerospace Sciences},
    Title = {{A} {B}enchmark for {F}ault {T}olerant {F}light {C}ontrol {E}valuation},
    Year = {2011}}

@book{Edwards:2010aa,
    Author = {Christopher Edwards and Thomas Lombaerts and Hafid Smaili},
    Publisher = {Springer},
    Title = {{F}ault {T}olerant {F}light {C}ontrol: {A} {B}enchmark {C}hallenge},
    Year = {2010}}

结果是:

在此处输入图片描述

我希望我的引用顺序取决于我的桌子(而不是我的完整报告)。在此表中,我列出了所有参考资料,包括一些信息。

答案1

\nocite{}在文档开始处按表格顺序添加命令。

\documentclass{article}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@conference{Smaili:2011aa,
    Author = {Smaili, Hafid and Breeman, Jan and Lombaerts, Thomas and Stroosma, Olaf},
    Booktitle = {4th European Conference for Aerospace Sciences},
    Title = {{A} {B}enchmark for {F}ault {T}olerant {F}light {C}ontrol {E}valuation},
    Year = {2011}}

@book{Edwards:2010aa,
    Author = {Christopher Edwards and Thomas Lombaerts and Hafid Smaili},
    Publisher = {Springer},
    Title = {{F}ault {T}olerant {F}light {C}ontrol: {A} {B}enchmark {C}hallenge},
    Year = {2010}}
\end{filecontents}


\begin{document}
\nocite{Edwards:2010aa}
\nocite{Smaili:2011aa}

Here I refer to~\cite{Smaili:2011aa} and here I refer to~\cite{Edwards:2010aa}.


This is a table where I mention all my references:

\begin{table}[!htb]
    \begin{tabular}{lll}
    Reference 1 & Edwards &  \cite{Edwards:2010aa} \\
    Reference 2 & Smaili &  \cite{Smaili:2011aa} \\
    \end{tabular}
\end{table}

\bibliographystyle{ieeetr}
\bibliography{\jobname}

\end{document}

在此处输入图片描述

相关内容