将图像放置在乳胶中会在图像下方提供额外的空间,我该如何解决此问题?

Placing an image in latex is giving an extra space underneath the image, how do I fix this?

提问人:Keeri 提问时间:11/11/2023 最后编辑:WernerKeeri 更新时间:11/13/2023 访问量:24

问:

如果我插入以 LaTeX 为中心的图像,图像下方的部分格式不正确。下面有一个方形大小的洞。

我尝试了以下代码:

some text
\begin{figure}
    \centering
    \vspace{-0.5cm}
    \includegraphics[width=10cm,height=8cm,keepaspectratio]{some image}
    \caption{some cap} 
    \label{fig:Fig5Hallcoefficient}
    \vspace{-0.5cm}
\end{figure}

some text/new section

但是得到了这个:

The format i got

图像 格式 LaTeX

评论

0赞 samcarter_is_at_topanswers.xyz 11/14/2023
请使您的代码可编译(如果可能),或者至少使用 、 所需的 's、 和 来完成它。这对您来说可能看起来很乏味,但想想它对愿意帮助您的用户来说代表的额外工作。帮助他们帮助你:消除你和你的问题解决方案之间的一个障碍。\documentclass{...}\usepackage\begin{document}\end{document}

答: 暂无答案