Hi.
I am wanting to use strictly bulleted sentences in the article document class. How do I go about doing that?
Also, I want to use an exceptionally small font size. I can't seem to change it.
Any ideas?
Thanks.
Text Formatting ⇒ Using enumeration in article document class
NEW: TikZ book now 40% off at Amazon.com for a short time.
- Stefan Kottwitz
- Site Admin
- Posts: 10321
- Joined: Mon Mar 10, 2008 9:44 pm
Using enumeration in article document class
Hi,
you could use the itemize environment to get bulleted sentences and \tiny, for example:
For tutorials and basic documentation you could have a look here: LaTeX Introductions and Guides.
Stefan
you could use the itemize environment to get bulleted sentences and \tiny, for example:
Code: Select all
\documentclass{article}
\begin{document}
\begin{itemize}
\tiny
\item Test
\end{itemize}
\end{document}
Stefan
LaTeX.org admin
Re: Using enumeration in article document class
The problem is that I am trying to get it so that the items in the list are flush left.
Using \setlength{\itemindent}{-20pt} I can get the first line of each item to be as far left as I want, but the second. third, etc. lines of an item won't seem to move left (despite using \listparindent)
Also, is there a way I underline words without increasing the vertical space between adjacent lines?
Thanks again.
Using \setlength{\itemindent}{-20pt} I can get the first line of each item to be as far left as I want, but the second. third, etc. lines of an item won't seem to move left (despite using \listparindent)
Also, is there a way I underline words without increasing the vertical space between adjacent lines?
Thanks again.
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Using enumeration in article document class
All your questions are answered by the following example.schmag wrote:The problem is that I am trying to get it so that the items in the list are flush left.
[...]
Also, is there a way I underline words without increasing the vertical space between adjacent lines? [...]
Code: Select all
%\listfiles
\documentclass[11pt,a4paper,english]{article}
\usepackage[T1]{fontenc}
\usepackage[latin1]{inputenc}
\usepackage{babel}
\usepackage{lmodern}
\usepackage{enumitem} % Enhancing the list environments
\usepackage{soul} % Enable underlining with line break
\usepackage{parallel} % Typesetting parallel in columns
\usepackage{blindtext}
\parindent0em
%Setup for list environments (enumitem)
\setenumerate{leftmargin=*}
\begin{document}
\blindtext
\tiny
\begin{enumerate}
\item \blindtext
\item \blindtext
\end{enumerate}
\normalsize
\begin{Parallel}{0.49\textwidth}{0.49\textwidth}
\ParallelLText{\ul{The quick brown fox jumps over the lazy dog. This quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.}}
\ParallelRText{The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.}
\end{Parallel}
\end{document}
Best regards
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
Re: Using enumeration in article document class
Thanks for the help. \listparindent doesn't seem to be working and so all the indenting isn't working as I would like.