Code: Select all
\begin{topic}
\item[A] A
\item[B] B
\item[C] C
\end{topic}
Also, I am using \begin{document}. Is there a way of making the width of the document greater by overwriting just that property?
Thanks
Code: Select all
\begin{topic}
\item[A] A
\item[B] B
\item[C] C
\end{topic}
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
Code: Select all
\documentclass{article}
\usepackage{paralist}
\usepackage[textwidth=15cm]{geometry}
\begin{document}
\begin{compactenum}[A]
\item A
\item B
\item C
\end{compactenum}
\end{document}
Code: Select all
\documentclass{article}
\begin{document}
%-----with the standard separation between items
\begin{enumerate}
\item[A] A
\item[B] B
\item[C] C
\end{enumerate}
%-----with less separation between items
\begin{enumerate}
\setlength\itemsep{-4pt}
\item[A] A
\item[B] B
\item[C] C
\end{enumerate}
\end{document}
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p