Questions tagged [itemize]

{itemize} is about the itemize list environment. If you use this tag, add the more general {lists} tag.

The environment is used to create bulleted lists; if you use this tag, add the more general tag. For numbered lists, one uses the environment, and for descriptive lists, one uses the environment.

Typically, itemize is used like this:

\begin{itemize}
  \item The first item
  \item The second item
  \item (and so on...)
\end{itemize}

There are a few packages for customizing the appearance of bulleted lists.

  1. The package (documentation) provides an interface to adjust the vertical and horizontal spacing of list items, change the bullet shape, and define custom list environments.
  2. The package (documentation) provides commands for using lists compactly within paragraphs.

Frequently Asked Questions

1795 questions
19
votes
4 answers

Putting anything in front of \item in lists

So for example if I have this list: \documentclass[a4paper,10pt]{article} \usepackage[utf8]{inputenc} \usepackage{mathtools} \begin{document} \begin{itemize} \item one \clap{some text}\item two \item three …
71GA
  • 3,573
15
votes
1 answer

Suppress left indentation in itemize environment

I used itemize code as follows: \begin{itemize} \item \item \item \end{itemize}, and the assoicated results are displayed as: But I want no left indentation about the round point mark. I want the following results which produced in Word…
user22986
  • 1,421
13
votes
2 answers

How do I make ditto marks?

In France, students are taught not to repeat the same text twice when there is little difference between a line and the one below. It's a quick way to take notes. I reproduced this effect by tinkering: The code is as…
AndréC
  • 24,137
8
votes
3 answers

How to split item in itemize over two lines

I have to use the document set up with the packages shown because this is dictated by the journal. I simply want to prevent the item shown below from disappearing off the right hand side of the page. The most obvious solution would be to split it…
Bazman
  • 857
6
votes
4 answers

Array and Itemize at the same time

I need to itemize a text but at the same time to put in columns the text without the use of spaces. Example of what I need: \begin{itemize} \item blabla & blabla \item blabla & blabla \end{itemize}
6
votes
2 answers

How do I make a really long bullet point next not dissappear off the left of the page?

I'm trying to put text as my "bullet point" but it's far too long as extends beyond the left of the page. What can I do to stop it doing this? \begin{itemize} \item[\textsc{Contact Information}] Address: Address \\ Telephone: Telephone…
6
votes
1 answer

itemize environment with a bracket

I want to enclose an itemize environment with a bracket inside an itemize environment. \documentclass[a4paper]{article} \usepackage{enumitem} \usepackage{pifont} \begin{document} \begin{itemize}[label=\ding{42}, leftmargin=2cm] \item Example…
Educ
  • 4,362
5
votes
2 answers

How to Skip One Bullet in ITEMIZE?

As aforementioned, I wonder whether I can skip one bullet during itemize. For example, \documentclass{article} \begin{document} \begin{itemize} \item Item 1 \item Item 2\\Item 3 \item Item 4 \end{itemize} \end{document} Though the code doesn't put…
Junyong Kim
  • 533
  • 4
  • 13
5
votes
1 answer

how to align text using \begin{itemize}

I'm trying to create a short list of items with a brief description on right side. I'm using the \begin{itemize}[label={}] environment and the \hspace*[2cm] command for alignment, but i can't get the text aligned. Could someone give me any…
5
votes
1 answer

Strange error when using makebox inside a item

I would like to define a command that takes three arguments; a question number, the question text from the problem, and finally my answer. Though there are a lot of different solutions out there I am sure but I do not know what is the right answer.…
4
votes
2 answers

Permanently change symbol of itemize

I am aware one can locally change the symbol of itemize by adding an option to \item, like: \begin{itemize} \item[$\uparrow$] some item \end{itemize} Is there a way to set permanently the symbol of itemize, for instance by redefining a…
cesco
  • 165
4
votes
1 answer

How can set symbol in \itemize

How can I set a symbol/icon from fontawesome package as an itemize \item point. Like, I want to set the frown-o or heart-o icon as an itemize symbol. I am on mobile that's why I can not make a figure or code for it.
user257005
  • 55
  • 6
4
votes
2 answers

Listem items show with dashes only

perhaps a noob question, i'm new to latex : \documentclass[a4paper,11pt,oneside]{article} \usepackage[utf8]{inputenc} \usepackage[T1]{fontenc} \usepackage[frenchb]{babel} \begin{document} \begin{itemize} \item First Level \begin{itemize} …
4
votes
2 answers

How to write small size text between the itemised?

I want to write between the itemise, that is after one bullet point, I want to add 2 small sentences below it. See my code and what I want is given below: \documentclass{amsart} \newtheorem{thm}{Theorem} \usepackage{xcolor} \begin{document} …
new_born
  • 680
4
votes
1 answer

How to include math symbols in itemize?

I want to code the below lines of the image in latex. \begin{itemize} \item [m] - Number of training examples \item [x] - "Input" variables / features \item [y] - "Output" variable / "target" Variable \item [(x,y)] - One training…
James K J
  • 155
1
2 3 4 5 6 7 8