General ⇒ Enumerate in other environments
-
- Posts: 2
- Joined: Sun Jun 08, 2008 11:36 pm
Enumerate in other environments
What should I be using with tabular to stick a number (letter) in each spot? Should I just go back to a basic \Alph command?
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
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Enumerate in other environments
the enumerate environment can be used inside the tabular environment, for instance in a p column:
Code: Select all
\documentclass[a4paper,10pt]{article}
\begin{document}
\begin{tabular}{l|p{2cm}}
Test &
\begin{enumerate}
\item One
\item Two
\end{enumerate}
\end{tabular}
\end{document}
Stefan
-
- Posts: 2
- Joined: Sun Jun 08, 2008 11:36 pm
Re: Enumerate in other environments
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Enumerate in other environments
Here are examples and explanations for these commands: Creating Tables in LaTeX.
But if you want to use different rows or columns you would have to construct it by yourself using a self-defined counter,
Stefan
Re: Enumerate in other environments
B.A.