Parents : Latex
| Date and time note was created | $= dv.current().file.ctime |
| Date and time note was modified | $= dv.current().file.mtime |
To create a horizontal list in latex
- First import enumerate package along with the inline option to enable the environments itemize* and enumerate* from the package as mentioned in documentation1
- Use itemize* on the
\beginto get horizontal lists
% Include inline for making the lists go inline and make environments available
\usepackage[inline]{enumerate}
\begin{itemize*}
\item hello
\end{itemize*}