3
votes
1answer
39 views

Globally setting the separation length for _subitems_ in Beamer

How can I globally change the item separation length for subitems in Beamer? I need a command such as the below, only working. \setbeamertemplate{itemize/enumerate subbody begin}{\normalsize ...
2
votes
1answer
117 views

Spacing problem while using itemize in minipage

I am using itemize in minipage and observe unexpected spacing among items. \documentclass[11pt,table,a4paper]{article} \usepackage[framemethod=TikZ]{mdframed} \usepackage[top=.5cm, bottom=2cm, ...
2
votes
1answer
52 views

Vertically aligning list bullet when using \infer

I have a list where one of the list items is an \infer{...}{...} command. In this case, the list bullet is not vertically centered with the item, as you can see in the picture: How can I move the ...
1
vote
1answer
73 views

How to control spacing in end of itemize?

This refers to my previous question How to reduce space in begining but not in end of itemize Now I need to control spacing in the last of itemize like I could control in the beginning as suggested ...
2
votes
1answer
61 views

How to reduce space in begining but not in end of itemize

This refers to my question. How to reduce space in begining of itemize? [topsep=0] also reduces space between the itemize and text below to itemlist. I just want to reduce space in the begining not ...
2
votes
2answers
111 views

How to reduce space in begining of itemize?

I am writing one list after one text? Following is list items: 1. Pen 2. Hen 3. Ten I need to reduce spacing between text (Following is list items:) and begining of list(Pen). How can i ...
4
votes
2answers
106 views

How to modify itemize vertical spacing within blocks in beamer?

I have noticed that when I have "itemize" environments defined within blocks in beamer, that they introduce more vertical spacing between the top and the bottom of the blocks, than vertical text. ...
8
votes
1answer
335 views

Adjust vertical space before enumerated list in Beamer

In Beamer, I can easily set the desired vertical space between items in an enumerated list with itemsep. But how do I set the vertical space between the line that introduces the enumerated list and ...
6
votes
1answer
596 views

How to remove the whitespace BEFORE itemize/enumerate?

I'm somewhat of a LaTeX noob, and this is driving me completely nuts. When I type \documentclass{article} \usepackage{enumitem} \begin{document} Some text \begin{itemize}[noitemsep] ...
2
votes
3answers
218 views

itemize without line feed

When I write a document with \usepackage[french]{babel} my \begin{itemize} \end{itemize} list begin with '-' before each item and no extra line feed before each item. But when I don't use this package ...
9
votes
1answer
480 views

How do I set \itemsep to rubber length?

I know that I can set \itemsep to any length like this, \setlength{\itemsep}{0pt} But if I want to set \itemsep to a rubber length (e.g. \bigskip), how do I do this? \setlength{\itemsep}{\bigskip} ...
6
votes
1answer
322 views

Spacing after itemize inside a tabular

I have a problem with the spacing after an itemize inside a tabular. \documentclass[12pt]{article} \usepackage{lipsum} \usepackage[usenames,dvipsnames]{xcolor} \usepackage{framed} ...
1
vote
1answer
173 views

Cannot achieve nice spacing in list items in beamer

I am trying to achieve the best spacing between items in a beamer presentation. I am using \documentclass[slidestop,compress,mathserif,12pt,xcolor=dvipsnames]{beamer} \graphicspath{{images/}} ...
2
votes
2answers
128 views

vertical spacing for itemize environment with powerdot

I'm trying to increase the vertical spacing in an itemize environment with the powerdot class. According to the powerdot documentation this is achieved by changing some parameters values in the ...
3
votes
1answer
198 views

Environments with thmtools => too much space if using itemize at the end (also problem with q.e.d. symbol)

I want to use the thmtools package, because it provides some awesome features for declaring environments (proofs, theorems, examples etc.) And I especially like the "qed" feature which places some ...
14
votes
2answers
570 views

adding space before each item in itemize

I would like to add some space before each \item in begin{itemize} When i try doing something like this \begin{itemize} \item \hspace {5cm} Sweden \item \hspace {5cm} Germany \end{itemize} The ...
0
votes
0answers
231 views

Beamer: how to increase spacing between bullet point and text in itemize environment within block environment? [closed]

I need to increase the space between a bullet point and the item text in the itemize environment when the list is in the block environment. I've taken a look at the answer to this question and it ...
2
votes
2answers
882 views

beamer: how to increase space between bullet and text in itemize environment?

I am using \documentclass[final, hyperref={pdfpagelabels=false}, xcolor=svgnames, mathserif]{beamer} and \usepackage[orientation=portrait,size=a0,scale=1.4,debug]{beamerposter} In an itemize ...
1
vote
1answer
432 views

currvita - vertical distance between bullters

How to make smaller vertical distance between item bullets in one section only ? \documentclass[a4paper,10pt]{article} \usepackage[TextAligned,NoDate]{currvita} \usepackage{fullpage} \begin{document} ...
7
votes
1answer
318 views

Choice among asparaitem, compactitem and itemize

I am writing a conference paper (in lncs), I see people use difference itemization styles: asparaitem, compactitem and itemize. Besides the space they occupy is a little bit different, I am wondering ...
6
votes
1answer
2k views

How to do a line break after an itemize?

The question is in the title. I've \begin{itemize} \renewcommand{\labelitemi}{$\bullet$} \item item1 ... \item item2 .... \end{itemize} New ...
1
vote
0answers
628 views

Overlaying in Beamer — Setting the text on each overlay to be in the same spot when each overlay has some different text [closed]

I am trying to create a slide in beamer that has four overlays. There are four sections to the slide. On each overlay, each subsequent section of the slide appears and along with additional ...
0
votes
0answers
106 views

How do I override the \item spacing [duplicate]

Possible Duplicate: Vertical space in lists I have the following list being generated for me: \begin{itemize} \item Introduction (this chapter) \item Yum and RPM in datacenter/cloud ...
1
vote
0answers
251 views

global vertical space of items & subitems in beamer [duplicate]

Possible Duplicate: length between nested lists Possible duplicate: length between nested lists In order to better distinguish groups of notions, I'd like to be able to control ...
6
votes
2answers
5k views

Global setting of spacing between items in itemize environment for beamer

I'd like to modify the spacing between items in the itemize environment. This post shows how to modify a specific itemize environment (\addtolength{\itemsep}{0.5\baselineskip}). However, I'd like to ...
6
votes
1answer
1k views

Prevent itemize from creating newline at end of list

I'm using the itemize environment with the enumitem package, and one of the issues I'm having is that the itemize environment seems to create a newline, or at least add vertical spacing at the end of ...
5
votes
1answer
997 views

Including an itemized list within a tabular column using the paralist package

The paralist package offers the option of typesetting an itemized list with a \topsep length of zero, and this is especially useful in a tabular setting. However, the following minimal example does ...
21
votes
1answer
5k views

Remove space around bullet points in itemized or enumerated list

How can I reduce the amount of space around items in an itemized or enumerated list? I would like to reduce the vertical space between items, the space to the left of the bullet, and the space ...