将图像缩放至页面宽度

将图像缩放至页面宽度

我正在使用以下代码将图像缩放到页面宽度:

\begin{figure*}[!ht]
    \centering
    \includegraphics[width=0.90\paperwidth]{mypdf.pdf}
    \caption{Caption goes here}
    \label{tautable}
    %   \vspace{-2mm}
\end{figure*}

但是,无论使用 \centering 还是 \centering,上述代码都会拉伸右侧的图像(如下图所示),使其看起来很奇怪。我怎样才能正确地将其定位在中心,使图像在页面宽度的 90% 内均匀缩放。

在此处输入图片描述

答案1

所以,这个问题的最终答案如下:

\documentclass{article}
\usepackage{graphicx}
\begin{document}

\begin{figure}
  \makebox[\textwidth][c]{\includegraphics[width=1.2\textwidth]{image}}%
  \caption{Caption goes here}
  \label{fig:key}
\end{figure}
\end{document}

相关内容