LaTeX beamer: way to change the bullet indentation?

后端 未结 3 1723
情歌与酒
情歌与酒 2021-01-30 10:27

I\'ve checked the Beamer Class manual (PDF file).

I can\'t figure out how to change the indentation bullet assigns to \\itemize.

[This is kind of important, as I

3条回答
  •  萌比男神i
    2021-01-30 11:13

    I use the package enumitem. You may then set such margins when you declare your lists (enumerate, description, itemize):

    \begin{itemize}[leftmargin=0cm]
        \item Foo
        \item Bar
    \end{itemize}
    

    Naturally, the package provides lots of other nice customizations for lists (use 'label=' to change the bullet, use 'itemsep=' to change the spacing between items, etc...)

提交回复
热议问题