Selasa, 07 Mei 2024

Latex List

Latex Bullet List:

type this following Latex code in your Latex editor:

\documentclass{article}
\begin{document}
\raggedright
\Large{}
Basic unordered lists \\
\large{}
Lists are easy to create:
\begin{itemize}
\item List entries start with the \verb|\item| command.
\item Individual entries are indicated with a black dot, with each use of the \texttt{itemize} environment.
\item The text in the entries may be of any length. \end{itemize}
\end{document}

Result:
Basic unordered lists 
Lists are easy to create: 
  • List entries start with the \item command. 
  • Individual entries are indicated with a black dot, with each use of the itemize environment. 
  • The text in the entries may be of any length. 

Latex Numbering List:

type this following Latex code in your Latex editor:

\documentclass{article}
\begin{document}
\raggedright
\Large{}
Basic ordered lists \\
\large{}
Numbered (ordered) lists are easy to create:
\begin{enumerate}
\item Items are numbered automatically.
\item The numbers start at 1 with each use of the \texttt{enumerate} environment.
\item Another entry
\end{enumerate}
\end{document}
Result:
Basic ordered lists
Numbered (ordered) lists are easy to create:
  1. Items are numbered automatically.
  2. The numbers start at 1 with each use of the enumerate environment.
  3. Another entry

< click to learn Bullet and Numbering in Latex ( simple sample )


Bibliography:

https://www.overleaf.com/
https://en.wikibooks.org/

latex document formatting, latex unicode character, unordered list, ordered item, character encoding, latex of text mode environments, latex environments

Related Post


Tidak ada komentar:

Posting Komentar

Various Other Posts