将图形向左移动一点

将图形向左移动一点

我正在尝试在 Beamer 演示文稿中插入 PDF 图形。我正在使用

\begin{frame}{foo}
\includegraphics[scale=0.6]{bar}
\end{frame}

图形总是放在右边太多了。我怎样才能将图形稍微向左移动一点?这里可以接受一个快速而粗糙的解决方案。

答案1

\hspace{-0.5em}在 之前尝试\includegraphics。你可能需要把它们放在\hbox.So 中:

\begin{frame}{foo}
\hbox{\hspace{-0.5em} \includegraphics[scale=0.6]{bar}}
\end{frame}

答案2

正如 Pieter 所评论的那样,听起来这个数字太大了,不适合你的文档的尺寸。在这种情况下,以单行为中心可能会起作用,因此它会悬垂到两侧:

\centerline{\includegraphics[scale=0.6]{bar}}

请注意,这\centerline实际上只推荐用于这样的情况;它只会在一行中排版其内容,因此通常\centering是首选选项。

答案3

看看这是否有帮助:

\documentclass{beamer}
\usepackage[strict]{changepage}

    \begin{document}
\begin{frame}{foo}
\rule{\textwidth}{1pt}
    \begin{adjustwidth}{-0.5cm}{-0.5cm}
\includegraphics[width=\linewidth, height=7cm]{example-image}
    \end{adjustwidth}
\end{frame}
    \end{document}

在此处输入图片描述

图像上方的规则表示文本宽度。

相关内容