使用 itemize 时 latex 缺少“\item”

使用 itemize 时 latex 缺少“\item”

我正在尝试在 Latex 文档中添加项目列表。我目前有以下设置:

\documentclass[a4paper,10pt]{article} % Default font size and paper size


\begin{itemize}
\Item this is not a test
\end{itemize}

或者

\begin{itemize}
\item this is not a test
\end{itemize}

我收到此错误:

(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/se-ascii-print.def)
Overfull \hbox (26.52249pt too wide) in paragraph at lines 61--67
[][]
! Undefined control sequence.
l.81 \Item
           this is not a test

当我将此列表添加到我的文档时,为什么不断出现编译错误?

这不是一个打字错误,我只是想表达我尝试了 \item 和 \Item 但它们都给出了相同的错误。

我想要在表格部分内添加项目符号列表。我通过复制粘贴项目符号并使用脚注大小的文本解决了这个问题。

\begin{tabular}{r|p{11cm}}
\emph{Jun 2010 - Current} & Soccer Player at \textsc{University of ...}, City, Country \\
& \footnotesize {An excellent forward and some more stuff.... }\\\\
& \footnotesize {• bullet list item one} \\
& \footnotesize {• bullet list item two} \\
\multicolumn{2}{c}{} \\

%a few more items
\end{tabular}

不清楚您是否不能在开始和结束表格部分之间添加一个逐项列表,因此乳胶编译器会抛出引用该项目的错误。

答案1

\documentclass{article}
\usepackage[T1]{fontenc}
\begin{document}

\begin{tabular}{r|p{11cm}}
\emph{Jun 2010 - Current} & Soccer Player at \textsc{University of ...}, City, Country \\
  &  \begin{itemize}
    \item An excellent forward and some more stuff
    \item bullet list item one
    \item bullet list item two
  \end{itemize}
\end{tabular}

\end{document}

答案2

\Item和 不一样\item

当命令中应该使用小写字母时,请勿使用大写字母,否则将消除错误。

\documentclass[a4paper,10pt]{article} % Default font size and paper size

\begin{document}
\begin{itemize}
\item this is not a test
\end{itemize}
\end{document}

相关内容