在文本和图形中并排添加“标题”和“标签”

在文本和图形中并排添加“标题”和“标签”

可能重复:
创建不带浮点数且不带标题包的标题?

我有这个:

\begin{minipage}[b]{0.35\linewidth}  

Here is the text

\end{minipage}

\hfill
\begin{minipage}[b]{0.55\linewidth}
\centering
\includegraphics[scale=0.8]{imag9}
\caption{TEXT}
\label{fig3.5}
\end{minipage}

当我尝试添加\caption\label如图所示)时,它显示错误,但我正在获取的 pdf 没问题!还有其他方法可以做到这一点吗?

答案1

要在图形环境之外标记图片,请使用带有宏的 caption 包,captionof如下所示:

\documentclass[11pt]{article}
\usepackage{caption}
\usepackage[draft]{graphicx}
\begin{document}
  \begin{minipage}[b]{0.35\linewidth}\centering
    Here is the text
  \end{minipage}\hfill
  \begin{minipage}[b]{0.55\linewidth}\centering
    \includegraphics[width=5cm]{image}
    \captionof{figure}{A wonderful picture}
  \end{minipage}
\end{document}

相关内容