如何添加定义作为项目

如何添加定义作为项目

我想将定义添加为列表项。我有下面显示的脚本。但它在项目点的新行后添加了定义。这对我来说看起来不对。我希望将定义添加到项目点之后。

\documentclass[conference,compsoc]{IEEEtran}

\usepackage{amsthm}
\newtheorem{example}{Example} %for using \beging{example}
\newtheorem{definition}{Definition} %for using \beging{definition}

\begin{document}

\title{Title}
\maketitle

\section{Section}
\begin{itemize}
\item \begin{definition} [My Definition] \end{definition}
\end{itemize}

\end{document}

相关内容