我在以自己想要的方式在乳胶中插入图片时遇到了一些麻烦。我希望它看起来像这样。
不过我尝试使用下面的代码来实现这一点
\begin{figure}[H]
\begin{center}
\begin{tabular}{l}\includegraphics[width=0.1\textwidth]{Basic}\end{tabular}%
\hspace{1em}%
\textrm{Basic event type}
\caption{Circle}
\end{center}
\end{figure}
然而这导致
我想删除标题编号“图 1:”,并将其置于图片下方的中心。但我似乎无法让它工作。有人能帮我吗?
亲切问候 Carl
答案1
我认为您实际上并不想要标题,而想要一张带有文字的简单图像,因此我建议您采用以下解决方案。
当然你不必使用\usepackage{mwe}
(我添加它只是为了有盲文和示例图)并且你必须用example-image-1x1
你实际图片的名称来替换它Basic
)。
\documentclass{article}
\usepackage{graphicx}
\usepackage{array}
\usepackage{mwe} % only to create blind text and example-image
\begin{document}
\blindtext
\begin{center}
\begin{tabular}{m{.1\textwidth}l}
\includegraphics[width=0.1\textwidth]{example-image-1x1} & \textrm{Basic event type}\\
\multicolumn{1}{c}{\textrm{Circle}} & \\
\end{tabular}
\end{center}
\blindtext
\end{document}
答案2
标题和其他内容一样居中。一旦将\caption
宏放在 -环境之外,center
它将左对齐。您也可以将其放在\parbox
\parbox{\linewidth}{\caption{Circle}}
parbox 将居中,但宽度为 100%,因此实际上不会移动。其内容左对齐。
我还没有玩过太多\caption
,也许你不能将它嵌套在任意结构中。如果你遇到问题,你可以\captionof
从capt-of
包中查找。