Skip to main content

LaTeX Tutorial: How to use Lists in Latex - itemize, enumerate, description, and inparaenum

LaTeX is a great tool for typesetting and it is more powerful than MS-Word. It has a steep learning curve and that is why I believe these video tutorials will help you guys. Today, I am going to talk about lists in LaTeX. LaTeX can produce both bulleted lists or unordered lists, and numbered lists or ordered lists. We will also see how to use lists with descriptions given to each list item.

Specifically, we are going to have an introduction of following topics in LaTex:
  • Lists in LaTeX: Itemize, enumerate, inparalist, and description
    • Itemized list in LaTeX for bullets
    • enumerated list in LaTeX for numbered lists
    • inparalist in LaTeX for lists wrapped around text
    • description lists in LaTeX for lists with description for each item
  • Nested lists in LaTeX
  • Using styles for numbering lists (roman, in parenthesis etc.)
  • Use of paralist LaTeX package
Here is the video for this tutorial:



If you have a question or comment please do not hesitate to leave a comment. I will answer to as many comments as I can.

The code for this tutorial is here:

\documentclass{article}
\usepackage{paralist}
\begin{document}
\title{Creating Bullets and Lists with \LaTeX by http://QuickLatex.blogspot.com}
\maketitle
\section{Bullets and Lists in \LaTeX}
\begin{itemize}
\item First bullet is here
\item Second bullet is here
\end{itemize}
\begin {enumerate}
\setcounter{enumi}{5}
\item This is item number 1
\item This is item number 2
\end{enumerate}
\begin {description}
\item [Chapter 1] This is the first desciption
\item [Chapter 2] This is the second description
\end{description}
\begin{inparaenum}[(i)]
There are three advantages of this method:
\item it is faster,
\item it is cost effective, and
\item it is efficient
\end{inparaenum}
\end{document}

Comments

  1. you could have mentioned, that you can also create compact lists when using the package paralist. (compactenum or compactitem)
    the "inparaenum" was new for me, thanks for that!

    ReplyDelete
    Replies
    1. Thanks Julia. I am glad you liked inparaenum.

      Regards,
      Dinesh Agarwal

      Delete
  2. what if i dont want to display the date??

    ReplyDelete

Post a Comment

Comments on QuickLatex are strictly moderated. As much as I hate moderation, I must fight spam. Please rest assured that if your comment is relevant I will approve it and answer.

Popular posts from this blog

LaTeX Video Tutorial: How to Create a Resume or CV (Curriculum Vitae) using LaTeX

One of the most frequent questions my colleagues ask me is how to create a Resume or Curriculum Vitae (CV), if you will, in LaTeX . I have a style file that was passed to me by a friend who found it on Internet. Since this looked good I used it and, thanks to the original contributor, I am going to share it with you all today. You will be able to download these files and create a professional Resume for yourself.  The files can be download from the linked locations: The Resume.tex file (main document) The Class file res.cls (for page setting) In the video tutorial , attached below, I have explained how to change the text for your needs. The structure of the Resume (or CV) is highly flexible and once you get hold of the basics it will be pretty straight forward for you to tweak it for your own use.  I have tried to add the basic sections that are present in most of the Resumes but you will most probably add more depending on your requirements. I am pretty sure it

Latex Tutorial: How to Create Images, Diagrams, and Flow Charts Using Latex

This tutorial is an extension of previous video tutorial on how to use tikz for image creation in Latex . In this video I explain how to set up your document for flow chat design. This equally applies to any other image that uses similar structure. Specifically, in this video I talk about following things: How to create a flow chart How to setup styles for reusable components of an image How to draw arrows from one component to other How to change the styles of components How to change the arrowhead for Latex arrows How to align components left, right, top, and below of each other The code use:d in the video is here: \documentclass{article} \usepackage{tikz} \usetikzlibrary{shapes,shadows,arrows} \begin{document} \tikzstyle{decision} = [diamond, draw, fill=blue!50] \tikzstyle{line} = [draw, -stealth, thick] \tikzstyle{elli}=[draw, ellipse, fill=red!50,minimum height=8mm, text width=5em, text centered] \tikzstyle{block} = [draw, rectangle, fill=blue!50, text width

How to draw Reddit Alien in LaTeX using Tikz - Video tutorial and code

If you are not a Redditor you are a lucky person. It's a one way traffic scenario with no dead end. Once you subscribe to Reddit there is no way back and it is no good being there. I am expecting my colleagues to have an intervention for my Reddit addiction soon but till then I am all here to invest (read:waste) my precious time. Since we got that out of our way, let us get back to business. Today, we are going to see how to draw a cartoon figure using LaTeX. The motivation behind this post is /r/latex on Reddit as I wanted that subreddit to have its logo drawn in LaTeX. I did not know it already was in LaTeX but it seems my work is appreciated there so I am going to contribute my 2 cents to the community. Specifically, we will learn following things in this tutorial: How to work with Colors - defining RGB colors in LaTeX. How to use multiple layers to set order of document objects (send to back, bring forward like functionality). How to use Arcs in an effective way.