我确实尝试在 Beamer 中实现演示文稿的给定结构Latex
。作为最低限度的工作示例,我编写了以下代码:
我想要构建如图所示的框架:
尺寸大多写在绘制的框内。有些框不符合所写尺寸。例如,0.6(左列)和两列内(每列 0.3)。我不知道是不是没有剩余空间,但为了更容易理解,我不会选择绘制 100% 精确的草图。
我会尝试使用minipage
带有列的 s。如下所示:
对我来说,无论是使用minipage
还是列,或者两者的组合都不起作用。
我目前得到的最佳尝试如代码所示:
\documentclass[10pt]{beamer}
\mode<presentation>
{
\usetheme{Montpellier}
\setbeamercovered{invisible}
}
\usepackage[utf8]{inputenc}
%\usepackage[english]{babel}
\usepackage[T1]{fontenc}
\usepackage[absolute,overlay]{textpos}
\usepackage{booktabs}
\usepackage{tikz}
\usepackage{tikz}
\usepackage{pdfpages}
\usepackage{pgfplots}
\pgfplotsset{compat=1.12}
%\usepackage{showframe}
\usepackage{caption}
\begin{document}
\title{My title}
\author{My name}
\institute{My institute}
\begin{frame}
\vfill
\begin{columns}[T,onlytextwidth]
\begin{column}{.6\textwidth}
\begin{block}{
\begin{center}
\small{Example text}
\end{center}
}
\end{block}
\begin{minipage}[c][3.5cm][c]{0.3\textwidth}
\begin{center}
\begin{figure}
tikz figure
\captionsetup{justification=centering,labelformat=empty}
\caption{{\centering \tiny{caption for graph 1}}}
\end{figure}
\end{center}
\end{minipage}
\hspace{1.5cm}
\begin{minipage}[c][3.5cm][c]{0.3\textwidth}
\begin{center}
\begin{figure}
tikz Figure 2
\captionsetup{justification=centering,labelformat=empty}
\caption{{\centering\tiny{caption for figure 2}}}
\end{figure}
\end{center}
\end{minipage}
\end{column}
\hspace{0.5cm}
\begin{column}{.4\textwidth}
\begin{block}{
\begin{minipage}{0.4\textwidth}
\begin{center}
\scalebox{0.45}{
\vbox{%
\underline{sdsdsdsdsd}:
\begin{align*}
K_{index} &= 1 \\
\Delta &= 1 _{142 } \\
P_{information} &= 1 \\
\Delta &= 1 _{456 } \\
P_{index} &= 288 \\
\Delta &= 2 _{789 } \\
\end{align*}
}
}
\end{center}
\end{minipage}
}
\end{block}
\vfill
\begin{minipage}{0.4\textwidth}
\begin{center}
\begin{tiny}
\begin{itemize}
\item adadad
\item sdssdsd
\item sdsdsdsd
\end{itemize}
\end{tiny}
\begin{figure}
\end{figure}
\end{center}
\end{minipage}
\end{column}
\end{columns}
\vspace{0.1cm}
\begin{minipage}[c]{\textwidth}
\vbox{%
{\tiny
\begin{itemize}
\item adsdsdsd
\item sdsdsdsdsd
\item sdsdsdsd
\item sdsdsdsdsdsd
\end{itemize}
}
}%
\end{minipage}
\end{frame}
\end{document}
使用此代码时出现问题:
tkiz
数字并非真正minipage
居中- 标题距离
tikz
图表太远 - 字幕未居中(居中使用错误)
- 右侧较大块上的条目宽度太小
- 对齐(数学)太细
附加信息:给定的文本是示例文本,所有文本信息在项目中都有许多对齐的字符,并且示例文本应为两个tikz
图的标题。
我将非常感激您的帮助,如果您需要更多信息或者我确实遗漏了任何重要信息,请发表评论。