Text Formatting ⇒ Itemization problem
Itemization problem
I have started writing a document where i need to use itemize. The fact is that the items do not leave the same space at the beginning. If you don't understand what i mean look at this: If it is necessary i will show you the document too. Can anyone help me?
Edit by localghost: No external links (where applicable)! Attachments go onto the forum server (see Board Rules.
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Itemization problem
That would be helpful to get a clue of what is going wrong. But, please reduce the code to a minimal example (see Board Rules) [1]. Otherwise we have to dig through too much code that is not relevant to the problem.valefor wrote:[…] If it is necessary i will show you the document too. […]
[1] View topic: Avoidable mistakes
Best regards
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Itemization problem
Speaking generally, you may try using enumitem package and specify topsep parameter either globally or for specific lists. However, this may not be the proper solution for your problem since something may be wrong with your code which causes improper spacing.
Code: Select all
\documentclass{article}
\usepackage{enumitem}
\setitemize{topsep=12pt}% "global" settings
\begin{document}
\section{Test}
Test
\begin{itemize}
\item Test
\item Test
\item Test
\begin{itemize}
\item Test 1
\item Test 1
\item Test 1
\end{itemize}
\item Test
\item Test
\item Test
\end{itemize}
Test
\begin{itemize}[topsep=32pt]% "local" settings
\item Test 1
\item Test 1
\item Test 1
\end{itemize}
Test
\end{document}
Re: Itemization problem
I didnt know about topsep
I found the solution and it was at the arrays code. I thought it was the itemize command the problem but it was not.
I am sorry for not asking properly my problem. I will improve next time!