(请注意,我使用了 \tab)。我尝试使用[itemindent=4cm]
,\addtolength{\itemindent}{4cm}
但结果如下:
我该如何解决?
\documentclass[14pt,handout,t]{beamer}
\usepackage{tabto}
\geometry{paperwidth=297mm,paperheight=210mm}
\setbeamersize{text margin left=100pt,text margin right=100pt}
\usepackage{enumitem}
\begin{document}
\begin{frame}
\TabPositions{6cm}
\begin{itemize}%[itemindent=4cm]
% \addtolength{\itemindent}{4cm}
\item[\large$\Rightarrow$] Versione: \tab\underline{\textbf{2.40}}
\vspace{0.35cm}
\item[\large$\Rightarrow$] Ultimo aggiornamento: \tab 27 Aprile 2015
\vspace{0.35cm}
\item[\large$\Rightarrow$] Realizzato da: \tab M. Marcomarco
\end{itemize}
\end{frame}
\end{document}
答案1
首先,我们\newcommand
为定义一个\rightarrow
,称为\arrowx
(这样我们就不会无意中破坏某些东西),然后我们可以将列表的第一部分括在\makebox
类似的东西中:
\makebox[<horizontal length>][<alignment>]{<text>}
我们甚至可以把它变成一个命令,而不必每次都输入所有内容,例如
\newcommand*\tabit[1]{\makebox[6cm][l]{#1}}
此外,列表项之间的间距由 控制itemsep=.35cm
,无需每次都手动设置。如果您想增加左边距,请添加leftmargin=5cm
或任何其他数字。
输出
代码
\documentclass[14pt,handout,t]{beamer}
\usepackage{tabto}
\geometry{paperwidth=297mm,paperheight=210mm}
\setbeamersize{text margin left=100pt,text margin right=100pt}
\usepackage{enumitem}
\newcommand*\arrowx{\item[\large$\Rightarrow$]}
\newcommand*\tabit[1]{\makebox[6cm][l]{#1}}
\begin{document}
\begin{frame}
\TabPositions{6cm}
\begin{itemize}[itemsep=.35cm, leftmargin=5cm]
\arrowx \tabit{Versione:} \underline{\textbf{2.40}}
\arrowx \tabit{Ultimo aggiornamento:} 27 Aprile 2015
\arrowx \tabit{Realizzato da:} M. Marcomarco
\end{itemize}
\end{frame}
\end{document}
答案2
在我看来,你使用了错误的工具:atabular
要简单得多。
\documentclass[14pt,handout,t]{beamer}
\usetheme{Warsaw}
\geometry{paperwidth=297mm,paperheight=210mm}
\setbeamersize{text margin left=100pt,text margin right=100pt}
\newcommand*\arrowx{\item[\large$\Rightarrow$]}
\newcommand*\tabit[1]{\makebox[6cm][l]{#1}}
\begin{document}
\begin{frame}
\frametitle{Dati}
\hspace{4cm}%
\begin{tabular}{@{$\Rightarrow$ }l@{\qquad}l@{}}
Versione: & \underline{\textbf{2.40}} \\[2ex]
Ultimo aggiornamento: & 27 Aprile 2015 \\[2ex]
Realizzato da: & M. Marcomarco
\end{tabular}
\end{frame}
\end{document}