subitem

Beamer 中的描述子项格式
subitem

Beamer 中的描述子项格式

我正在尝试使用description某种格式在我的一个 Beamer 框架中包含一个子列表: \documentclass[10pt]{beamer} \mode<presentation>{ \setbeamertemplate{itemize item}{\color{red}$\blacksquare$} \setbeamertemplate{itemize subitem}{\color{red}$\blacktriangleright$} \setbeamertem...

Admin

在 LaTeX beamer 中,逐个显示子项目
subitem

在 LaTeX beamer 中,逐个显示子项目

我正在尝试这样做: \begin{frame} \begin{itemize} \item<1-> Hello \item<2-> World \begin{itemize}[<.(1)->] \item A \item B \item C \end{itemize} \end{itemize} \end{frame} 不幸的是,它给了我 Hello World A B C 一下子。我需要A和B来C介绍逐个。 ...

Admin

如何编写具有两个不同类别的项目
subitem

如何编写具有两个不同类别的项目

我想要以以下形式写入项目: 1.1 1.2 1.x 2.1 2.2 2.y 等等。我的问题是左侧和右侧的增量。有没有办法不用手动进行增量来编写这个? ...

Admin

使用 Itemize 自定义子项命令
subitem

使用 Itemize 自定义子项命令

我从评论中发现以下代码是否可以使用不带嵌套列表的 \itemize 为 \subitems 创建项目符号? \newcommand{\cvSubItem}[1]{% {\setlength\itemindent{15pt} \item[{\includegraphics[width=0.3cm]{bullet.png}}] #1} } 两个问题: SubItems 的首字母与其他字母之间有空格。看起来像是:“s pace”,而不是“space”。 如果换行,则换行应该从与文本相同的位置开始,而不是从项目符号开始: * this happen...

Admin

使用 enumitem 自动实现括号子项行为
subitem

使用 enumitem 自动实现括号子项行为

我想通过 enumitem 获得以下项目/子项目行为: \documentclass{article} \begin{document} \begin{enumerate} \item [(1)] first item; \item [(2)] second item; \begin{enumerate} \item [(2.1)] first subitem of the second item; \item [(2.2)] second subitem of the second item; \be...

Admin

格式化包含子项的两列索引
subitem

格式化包含子项的两列索引

在格式化带有子项的双列索引时,我遇到两个问题: \documentclass{scrartcl} \usepackage{imakeidx} \usepackage[indentunit=15pt,justific=raggedright, columnsep=10pt, font=footnotesize]{idxlayout} \makeindex \begin{document} Some text. \index{Donahue!Alice} \index{Donahue!Barney} \index{Jones!Alvin} \inde...

Admin