a problem again! How to insert items into a particular table cell?
This one fails:
Code: Select all
\begin{tabular}{ll}
A: &
\begin{itemize}
\item how to write,
\item how to test.
\end{itemize} \\
B: & how to produce.
\end{tabular}
Code: Select all
\begin{tabular}{ll}
A: &
\begin{itemize}
\item how to write,
\item how to test.
\end{itemize} \\
B: & how to produce.
\end{tabular}
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
\begin{tabular}{p{0.5\textwidth}p{0.5\textwidth}}
A: &
\begin{itemize}
\item how to write,
\item how to test.
\end{itemize} \\
B: & how to produce.
\end{tabular}
Code: Select all
\begin{tabular}{p{0.5\textwidth}p{0.5\textwidth}}
\begin{itemize}
\item i1
\item i2
\end{itemize}
txxx & tex2
\end{tabular}
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