Hey,
this might be a really dumb question but I cant figure it out... Is there a way for me to create tabs after a number in enumeration environment... what i tried is
\begin{tabbing}
\begin{enumerate}
\item \> first thing\\
\item \> second thing
\end{enumerate}
\end{tabbing}
But it didnt work...
I need something like:
1. TAB HERE first thing
2. TAB HERE second thing
thank you all
Text Formatting ⇒ tabs in enumeration
NEW: TikZ book now 40% off at Amazon.com for a short time.

- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
tabs in enumeration
It would be helpful to know what you are after. At the moment I see no sense in what you are trying. Usually the list environments align the items and numbers properly on their own. Finally the list parameters can be modified. Perhaps a tabular environment (perhaps tweaked with automatic line numbering) could also help.
Best regards and welcome to the board
Thorsten
Best regards and welcome to the board
Thorsten
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
tabs in enumeration
You can't really use an enumerate environment inside a tabbing one, as you've no doubt noticed, but from your example, I can't even tell what you're trying to do. In LaTeX, you can't use a tabstop in tabbing until it's been set (with \=), and if you set it right at the beginning of the first item, and then used \> with all the other ones, all you would have accomplished is to line up the start of all the items in the enumeration, but that's already the default behavior in the enumerate environment, so why would it be necessary?
Are you simply trying to increase the horizontal space between the number and the item? If so, I'd simply load the enumitem package and increase the labelsep value:
But is there more to it than that? Do you want left-aligned numbers rather than right-aligned numbers? Do you need multiple tabstops following the numbers? Or what?
Are you simply trying to increase the horizontal space between the number and the item? If so, I'd simply load the enumitem package and increase the labelsep value:
Code: Select all
Code, edit and compile here:
\documentclass{article}\usepackage{enumitem}\begin{document}\begin{enumerate}[labelsep=2em]\item First\item Second\end{enumerate}\end{document}