如何在 LaTeX 中放置一张图片(关于位于中心并且适合高度和宽度)?

如何在 LaTeX 中放置一张图片(关于位于中心并且适合高度和宽度)?

我尝试将图片放在页面中,图片有点大。我尝试了这种方法,但它没有给出最佳答案,图片的某些部分被剪切了。我也尝试了[width=\0.5][scale=\0.6]或许多其他数字来代替它们,但没有好的答案。有人知道width=\linewidth\columnwidth和到底是做什么的height-0.35\textheight吗?

\begin{figure}[H]
    \begin{center}
        \hfill\includegraphics[width=\linewidth,height=0.35\textheight]{axe/11}\hspace*{\fill}  %it is suggested to using scale to zoom figures without distortion
    \end{center}
    \caption{The overview of three tanks connect to each other \cite{xie1999strong}.}
    \label{fig:tank}
\end{figure} 

截屏

答案1

首先,根据@Werner,确保您的图片周围有最少的白色(无用)空间。

然后一个标准

\begin{figure}[h]
\centering
\includegraphics[width=\textwidth]{img/myfigure.jpg}
\caption{blablabla}
\end{figure}

应该可以解决问题。

如果你想要更多调整,可以查看\resizebox{}{}{}。例如:

\resizebox{\textwidth}{!}{
\includegraphics[scale=1]{img/myfigure.jpg}
}

相关内容