在 LaTex Beamer 中调整大文本段落和图像

在 LaTex Beamer 中调整大文本段落和图像

我正在 Latex 环境中制作演示文稿幻灯片,我尝试在 LaTex 涂漆中并排调整大段落文本和图像,但调整效果不佳。在一张幻灯片中调整大段落和图像的最佳过程是什么。

下面的代码,我正在使用,但它没有正确调整到幻灯片中。

\section{South America Rainfall}

    \begin{frame}{South America (Brazil and Argentina) : Rainfall }
    \begin{columns}[onlytextwidth,T]
        \begin{column}{.25\textwidth}
            \includegraphics[width=\textwidth]{Monsoon-Brazil}
        \end{column}
        \begin{column}{1\textwidth}
            \begin{itemize}
                \item Brazil : In their June Crop Report, Conab increased the 2016/17 Brazilian corn estimate by 1.0 million tons to 93.83 million and they increased the 2016/17 soybean estimate by 0.9 million tons to 113.91 million.

                \item Wheat production for 2016 - 17 is projected to be 14 million tons, while Barley planted area is expected to drop somewhat with a production of 3.2 million tons.Corn returns are expected to be very good (and significantly better than soybeans), encouraging farmers to plant 1 million hectares more with a projected production of 31.5 million tons. 
                Sorghum and rice production are forecast to remain practically unchanged.

            \end{itemize}
        \end{column}
    \end{columns}
\end{frame}

输出 : 在此处输入图片描述

对两列使用相同的值后,结果如下所示,我附加了以下内容。行对齐/两端对齐可以解决问题。?左侧还剩下一些空间,如何筛选左侧的图像和文本?

如果是,那么对齐/调整行的命令是什么在此处输入图片描述

答案1

总结一下评论:

  • 您的代码的主要问题是,两列宽度之和为1.25\textwidth- 这不可能适合具有 的页面1\textwidth。事实上,总和必须小于1\textwidth才能容纳列之间的空间。

  • 如果选择的列宽合理,则图像的左侧边框将与框架的左侧边距对齐。如果有额外的空白,这可能是图形本身的空白,可以使用trimclip选项删除\includegraphics

相关内容