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}
you could have mentioned, that you can also create compact lists when using the package paralist. (compactenum or compactitem)
ReplyDeletethe "inparaenum" was new for me, thanks for that!
Thanks Julia. I am glad you liked inparaenum.
DeleteRegards,
Dinesh Agarwal
what if i dont want to display the date??
ReplyDeleteYou need \date{}
Delete