我观看三部分表可以处理标题中的脚注的文件。我尝试过:
\documentclass{article}
\usepackage{threeparttable}
\usepackage{graphicx}
\begin{document}
\begin{figure}[h]
\begin{threeparttable}
\centering
\includegraphics[]{first.jpg}
\caption{second\tnote{1}}
\begin{tablenotes}
\footnotesize
\item [1] three
\end{tablenotes}
\end{threeparttable}
\end{figure}
\end{document}
输出为
因此有两个问题:
- 缺少标题
- 脚注位置太左
有没有办法解决这两个问题?