我想将上面的流程图定位到投影仪幻灯片的一小部分上:
我知道也许\hspace{}
可以\vspace{}
帮到你,但还需要“调整大小”之类的功能。但我不知道该怎么做。
下面我复制了一个带有必要代码的 MWE:
\documentclass[12pt,twoside]{beamer}
\usepackage[spanish,es-noquoting]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{multimedia}
\usepackage{forest}
\usepackage{float}
\usepackage{booktabs}
%\setbeamercovered{transparent}
\usepackage[flushleft]{threeparttable}
\setbeamertemplate{frametitle}[default][center]
\setbeamersize{text margin left=2em,text margin right=2em}
\begin{document}
\begin{frame}[shrink=25]{Resultados - glioxal}
\medbreak
\centerline{Una vez establecido el estado de protonación se estimó $\Delta G^\circ_{\text{r}}$.}
\vspace{-0.5cm}\centering{
\begin{threeparttable}
\caption{Reacción problema}\label{table:reaccion_central}
\begin{tabular}{lcc}
\toprule
\multicolumn{1}{c}{Compuesto} & \multicolumn{2}{c}{RM1} \\ \midrule
& $\Delta G^\circ_{\text{COSMO}}$ & $\Delta G^\circ_{\text{SS-COSMO}}$ \\ \cmidrule(lr){2-3}
CC$_{\text{ref}}$ & - & - \\
cis dihidro-dihidroxi & 20.6 & 15.9 \\
trans dihidro-dihidroxi & 20.6 & 15.1 \\
& & \\
H$_{\text{ref}}$ & - & - \\
glioxal-1ºhidratación & -1.5 & -4.0 \\
glioxal-2ºhidratación & -1.4 & -2.9 \\
glioxal-neta & -2.9 & -6.9 \\ \bottomrule
\end{tabular}
\begin{tablenotes}
\item {\scriptsize $\text{H}_{\text{ref}}$: 2PG = PEP + H2O y $\text{CC}_{\text{ref}}$:2,3-diMMA = propanoato + pir. Se reemplazó dihidro-dihidroxi- imidazol por dihidro-dihidroxi.}%Resultados con hamiltoniano RM1, aplicando la estrategia isodésmica. Las Referencias son:
\end{tablenotes}
\end{threeparttable}
}\medbreak
\begin{forest}
for tree={
rounded corners, draw, align=center, top color=white, bottom color=blue!20,
edge+=->,
l sep'+=10pt,
},
[This
[is the forest
[chart I want ]%want this block green if is possible.. :)
[but it is not]
]
[working
[help!]
]
]
\end{forest}
\end{frame}
\end{document}
有什么帮助吗?
答案1
beamer
提供一个columns
环境,您可以在其中定义所需的任意数量的列。
在这种情况下,您可以使用三列,第一列和第三列大小相似,第二列大小随您喜欢。在下面的代码中,我使用了两列,宽度等于.23\textwidth
,中间一列为.5\textwidth
。
由于中央列和第三列都不足以容纳其内容,因此我还使用了将\resizebox
它们缩放到一定宽度以保持原始框的纵横比。
我不喜欢这张幻灯片的整体设计,但这是另一个问题。
\documentclass[12pt,twoside]{beamer}
\usepackage[spanish,es-noquoting]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{multimedia}
\usepackage{forest}
\usepackage{float}
\usepackage{booktabs}
%\setbeamercovered{transparent}
\usepackage[flushleft]{threeparttable}
\setbeamertemplate{frametitle}[default][center]
\setbeamersize{text margin left=2em,text margin right=2em}
\begin{document}
\begin{frame}[shrink=25]{Resultados - glioxal}
\begin{columns}[t,onlytextwidth]
\column{.23\textwidth}
\column{.5\textwidth}
\centering
Una vez establecido el estado de protonación se estimó $\Delta G^\circ_{\text{r}}$.
\resizebox{\textwidth}{!}{
\begin{threeparttable}
\caption{Reacción problema}\label{table:reaccion_central}
\begin{tabular}{lcc}
\toprule
\multicolumn{1}{c}{Compuesto} & \multicolumn{2}{c}{RM1} \\ \midrule
& $\Delta G^\circ_{\text{COSMO}}$ & $\Delta G^\circ_{\text{SS-COSMO}}$ \\ \cmidrule(lr){2-3}
CC$_{\text{ref}}$ & - & - \\
cis dihidro-dihidroxi & 20.6 & 15.9 \\
trans dihidro-dihidroxi & 20.6 & 15.1 \\
& & \\
H$_{\text{ref}}$ & - & - \\
glioxal-1ºhidratación & -1.5 & -4.0 \\
glioxal-2ºhidratación & -1.4 & -2.9 \\
glioxal-neta & -2.9 & -6.9 \\ \bottomrule
\end{tabular}
\begin{tablenotes}
\item {\scriptsize $\text{H}_{\text{ref}}$: 2PG = PEP + H2O y $\text{CC}_{\text{ref}}$:2,3-diMMA = propanoato + pir. Se reemplazó dihidro-dihidroxi- imidazol por dihidro-dihidroxi.}%Resultados con hamiltoniano RM1, aplicando la estrategia isodésmica. Las Referencias son:
\end{tablenotes}
\end{threeparttable}}
\column[T]{.23\textwidth}
\resizebox{\textwidth}{!}{
\begin{forest}
for tree={
rounded corners, draw, align=center, top color=white, bottom color=blue!20,
edge+=->,
l sep'+=10pt,
},
[This
[is the forest
[chart I want ]%want this block green if is possible.. :)
[but it is not]
]
[working
[help!]
]
]
\end{forest}}
\end{columns}
\end{frame}
\end{document}
答案2
正如@Bobyandbob 所建议的,您可以在居中文本之后使用\usepackage{multicol}
, 和\begin{multicols}{2}
(当然,\end{multicols}
也在 之后)\end{frame}
。为了调整流程图的大小,您可以使用\scalebox{0.6}{
:
\documentclass[12pt,twoside]{beamer}
\usepackage[spanish,es-noquoting]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{multimedia}
\usepackage{forest}
\usepackage{float}
\usepackage{booktabs}
%\setbeamercovered{transparent}
\usepackage[flushleft]{threeparttable}
\usepackage{multicol}
\setbeamertemplate{frametitle}[default][center]
\setbeamersize{text margin left=2em,text margin right=2em}
\begin{document}
\begin{frame}[shrink=25]{Resultados - glioxal}
\medbreak
\centerline{Una vez establecido el estado de protonación se estimó $\Delta G^\circ_{\text{r}}$.}
\begin{multicols}{2}
\vspace{-0.5cm}\centering{
\begin{threeparttable}
\caption{Reacción problema}\label{table:reaccion_central}
\begin{tabular}{lcc}
\toprule
\multicolumn{1}{c}{Compuesto} & \multicolumn{2}{c}{RM1} \\ \midrule
& $\Delta G^\circ_{\text{COSMO}}$ & $\Delta G^\circ_{\text{SS-COSMO}}$ \\ \cmidrule(lr){2-3}
CC$_{\text{ref}}$ & - & - \\
cis dihidro-dihidroxi & 20.6 & 15.9 \\
trans dihidro-dihidroxi & 20.6 & 15.1 \\
& & \\
H$_{\text{ref}}$ & - & - \\
glioxal-1ºhidratación & -1.5 & -4.0 \\
glioxal-2ºhidratación & -1.4 & -2.9 \\
glioxal-neta & -2.9 & -6.9 \\ \bottomrule
\end{tabular}
\begin{tablenotes}
\item {\scriptsize $\text{H}_{\text{ref}}$: 2PG = PEP + H2O y $\text{CC}_{\text{ref}}$:2,3-diMMA = propanoato + pir. Se reemplazó dihidro-dihidroxi- imidazol por dihidro-dihidroxi.}%Resultados con hamiltoniano RM1, aplicando la estrategia isodésmica. Las Referencias son:
\end{tablenotes}
\end{threeparttable}
}\medbreak
\scalebox{0.6}{
\begin{forest}
for tree={
rounded corners, draw, align=center, top color=white, bottom color=blue!20,
edge+=->,
l sep'+=10pt,
},
[This
[is the forest
[chart I want ]%want this block green if is possible.. :)
[but it is not]
]
[working
[help!]
]
]
\end{forest}
}
\end{multicols}
\end{frame}
\end{document}