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}
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
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}
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis