Text Formatting ⇒ Enumeration Issues
Enumeration Issues
I'm fairly new to the LaTeX world, having only used it for about three weeks now, but I'm proficient enough to be using it for school work. I was given a homework assignment (in an MS Word document) where the professor has given us the conditions for a problem, and then an indented list of numbered problems, followed by a new set of non-indented conditions and indented problems. The conditions are basic text, but the problems are numbered. When I use the \enumerate environment, the non-problem text is indented with the last \item entered. How do I tell LaTeX to format the text the way I want it?
Editors: TeXnicCenter/TeXShop
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
Enumeration Issues
Does the following example help?
Code: Select all
\documentclass{article}\usepackage{enumitem}\begin{document}A paragraph of normal text.\begin{enumerate}\item numbered item 1\item numbered item 2\end{enumerate}Another paragraph of text, with the first line indented as a paragraph, with some extra words added to make sure it's more than one line long.\begin{enumerate}[resume]\item numbered item 3\item numbered item 4\end{enumerate}\noindent A paragraph of text, not indented at all.\end{document}
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Enumeration Issues
It might be helpful if this document would be present to us. You can attach it to your next post.jonfucius wrote:[...] I was given a homework assignment (in an MS Word document) where the professor has given us the conditions for a problem, [...]
Best regards and welcome to the board
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: Enumeration Issues
- Attachments
-
- HW Week 5_2009.pdf
- (158.19 KiB) Downloaded 219 times
Editors: TeXnicCenter/TeXShop
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Enumeration Issues
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: Enumeration Issues
Editors: TeXnicCenter/TeXShop