我希望我的文字看起来如下所示:
\item Parameter and the text should continue at the same "tab space"
\item Variable so it looks like this
似乎可以找到一个简单的方法来做到这一点。
编辑:抱歉,问题不清楚。它应该是一个条目,我想将描述参数和变量的文本对齐到右侧,就像上面的例子一样。
答案1
或许,你可以尝试这样做:
\documentclass{article}
\usepackage{listliketab}
\begin{document}
\storestyleof{itemize}
\begin{listliketab}
\begin{tabular}{Llll}
\textbullet & Parameter & and the text should continue at the same "tab space" \\
\textbullet & Variable & so it looks like this \\
\end{tabular}
\end{listliketab}
\end{document}
答案2
\documentclass{beamer}
\newcommand\itemshape[1]{%
\setbeamertemplate{itemize item}[#1]%
\usebeamertemplate{itemize item}%
}
\begin{document}
\begin{frame}
\begin{description}[align=right]
\item[\itemshape{circle} First Item] Description of first item
\item[\itemshape{circle} Second Item] Description of second item
\item[\itemshape{circle} Third Item] Description of third item
\item[\itemshape{circle} Fourth Item] Description of fourth item
\end{description}
\end{frame}
\end{document}
[但我不确定为什么第一个项目符号没有对齐]