图表和表格放在一起

图表和表格放在一起

我有一张表格和一张图,都带有标题,我想把它们放在一起,问题是当

\begin{figure}[htbp]
   ...figure code, graphics, plot, whatever
   \caption[small caption]{figure caption}\label{fig:figlabel}
\end{figure}
\begin{table}[htbp]
   \caption[small caption]{table caption}\label{tab:tablabel}
   ...table code, numbers, etc.
\end{table}

使用时,乳胶有时会将它们分开,我真的希望将它们放在一个专用的页面上,单个页面上有足够的空间,用于两者。

有人知道一个简单的解决办法吗?

答案1

您只能使用一个浮动环境,并且\captionfcapt-of(或者caption) 包裹:

\documentclass{article}
\usepackage{capt-of}

\begin{document}

\begin{figure}[htbp]
   ...figure code, graphics, plot, whatever
   \caption[small caption]{figure caption}\label{fig:figlabel}
   \captionof{table}[small caption]{table caption}\label{tab:tablabel}
   ...table code, numbers, etc.
\end{figure}

\end{document}

在此处输入图片描述

相关内容