I am currently using a list with bullet-points; however, I think the lines are spaces too far apart and they're indented way too much. I don't see any way to correct this in LyX, however.
Asked
Active
Viewed 1.0k times
2 Answers
10
Try adding the following code to your LaTeX preamble:
\usepackage{enumitem}
\setlist{nolistsep}
You can edit the Latex preamble under Document > Settings, under the LaTeX Preamble tab.
Cf. Remove space around bullet points in itemized or enumerated list. You can make the vertical separation affect only bullet point lists (and not, say description lists), by using \setitemize instead of \setlist.
Charles Stewart
- 21,014
- 5
- 65
- 121
1
Another option is to \usepackage{mdwlist} and then use the itemize* environment defined by that package: it automatically shrinks the spacing between list items.
To use this solution with LyX, you'll apparently need to redefine the actual itemize environment using the solution in this answer
\renewenvironmentto the latex preamble, to make\itemizeuse\itemize*, since Lyx's bellut lists are defined using\itemize. – Charles Stewart Nov 09 '10 at 11:55mdwliists'sitemize*is a wrapper arounditemize. But Stefan's solution will do the job here. – Charles Stewart Nov 09 '10 at 18:17