I was wondering how I can change the spacing in my lists when I start my list off with a theorem environment. An example of this is that I have my list using the enumitem package with my code:
\begin{enumerate}[label=(\alph*)]
\item
\begin{scrapwork}
...
\end{scrapwork}
\begin{proof}
...
\end{proof}
\end{enumerate}
Which outputs with my theorem environment (scrapwork) starting on the line after where my item label is.
What I would have liked to happen is for Scrapwork and Proof to be aligned while placing scrapwork on the same line as my item label.
Thank you.
EDIT: MWE
\documentclass{article}
\usepackage{amsmath,amsthm,enumitem}
\theoremstyle{remark}
\newtheorem*{scrapwork}{Scrapwork}
\begin{document}
\begin{enumerate}[label=(\alph*)]
\item
\begin{scrapwork}
wordshere
\end{scrapwork}
\end{enumerate}
\end{document}

\documentclass{}and ends with\end{document}and shows precisely where the error is... – kan Oct 06 '12 at 22:47Also I updated the post with a MWE.
– BenM Oct 06 '12 at 23:02\swapnumbersfrom theamsthmpackages: so you declarescrapworkas a numbered theorem and the number will precede "Scrapwork". – egreg Oct 06 '12 at 23:30