我在图表中给出了引用,在阅读论坛后,我将代码更改为以下内容,以使参考文献按顺序出现。
\caption[]{caption. \cite{ref}}
但现在我遇到了一个问题,我的图表列表没有显示出来。内容是空的。你们知道如何解决这个问题吗?以下是我的代码:
\documentclass[12pt,a4paper]{article}
\usepackage{newtxtext,newtxmath}
\usepackage{titlesec}
\usepackage{graphicx} % Allows to import images
\usepackage{float} % Allows to control float positions
\usepackage{caption}
%\captionsetup[figure]{font=small,skip=10pt}
\usepackage{subcaption}
\usepackage{amsmath}
\usepackage{capt-of}
\usepackage[hidelinks]{hyperref}
%\usepackage{subfigure}
\usepackage{environ}
\NewEnviron{myequation}{
\begin{align}
\scalebox{1.5}{$\BODY$}
\end{align}
}
\usepackage{url}
\usepackage{titlesec}
\setcounter{tocdepth}{4}
\setcounter{secnumdepth}{4}
\titleformat{\paragraph}
{\normalfont\normalsize\bfseries}{\theparagraph}{1em}{}
\titlespacing*{\paragraph}
{0pt}{3.25ex plus 1ex minus .2ex}{1.5ex plus .2ex}
%\usepackage{floatrow}
% Table float box with bottom caption, box width adjusted to content
%\newfloatcommand{capbtabbox}{table}[][\FBwidth]
\usepackage[
separate-uncertainty = true,
multi-part-units = repeat
]{siunitx}
% Blattlayout
\textwidth15cm
%Header and Footer
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhead{}
\usepackage{setspace}
\setstretch{1.3}
\begin{document}
...
\newpage
\bibliography{database}
\bibliographystyle{ieeetr}
\addcontentsline{toc}{section}{References}
\end{document}
先感谢您!