通过尝试编译以下代码,每个 \item 条目都会引发以下错误。
LaTeX 错误:出现问题 - 也许缺少 \item。
\documentclass{article}
\begin{document}
\begin{tabular}{ll}
\Large{Awards and} & \textbf{Department} \\
\Large{Fellowships} & Course Name, 2014--2015 \\
& \\
& \textbf{Fulbright Scholarship} \\
\begin{itemize}
\item 1
\item 2
\end{itemize}
& City, Country, 2006-2009 \\
\end{tabular}
\end{document}
答案1
itemize
只适用于表格中的 p 列。这应该可以工作
\documentclass{article}
\begin{document}
\begin{tabular}{p{8cm}l}
\Large{Awards and} & \textbf{Department} \\
\Large{Fellowships} & Course Name, 2014--2015 \\
& \\
& \textbf{Fulbright Scholarship} \\
\begin{itemize}
\item 1
\item 2
\end{itemize}
& City, Country, 2006-2009 \\
\end{tabular}
\end{document}
或者,你可以使用假项目要点来代替\begin{itemize}...\end{itemize}
,正如建议的那样这里。
\documentclass{article}
\newcommand{\tabitem}{~~\llap{\textbullet}~~}
\begin{document}
\begin{tabular}{ll}
\Large{Awards and} & \textbf{Department} \\
\Large{Fellowships} & Course Name, 2014--2015 \\
& \\
& \textbf{Fulbright Scholarship} \\
\tabitem 1 & City, Country, 2006-2009 \\
\tabitem 2 & \\
\end{tabular}
\end{document}