我正尝试latex
像这样在我的图中添加标题;
\documentclass{article}
\usepackage[caption=false,font=footnotesize]{subfig}
\usepackage{caption}
\captionsetup[table]{font=small, skip=10pt}
\begin{figure}[H]
\centering
\includegraphics[width=5in]{figures/python.png}
\caption[Python]{Python \cite{python}}
\label{fig:python}
\end{figure}
但它像这样添加了两个冒号;
如果我删除这个包\usepackage{caption}
,它可以正常工作,但这个包将\captionsetup[table]{font=small, skip=10pt}
无法工作。
我在这里遗漏了什么?