垂直线与图像之间没有空格

垂直线与图像之间没有空格

我想为投影仪演示文稿(XeLaTeX、Miktex 2.9-64、Win7-64)设计一个标题页,并需要将规则和图形之间的空间减少到 0。

我的代码:

\setbeamertemplate{background}
{\hspace{0.6\paperwidth}
\rule{0.1cm}{\paperheight}
\includegraphics[width=0.4\paperwidth,height=\paperheight]{mypicture}}

我的结果:

我的结果

在上图中,我想要删除的空间已用红色标记。我需要做什么?

答案1

您拥有虚假的空间,而且,构造将比 更宽\paperwidth

\setbeamertemplate{background}
  {\hspace{0.6\paperwidth}%
   \hspace{-0.1cm}%
   \rule{0.1cm}{\paperheight}%
   \includegraphics[width=0.4\paperwidth,height=\paperheight]{mypicture}}

%行尾的掩码将被视为单词间空格;负命令\hspace将补偿规则宽度。

相关内容