Is there a way to make the numbering of items non italic. To to be specific in the following example I would like that (v) becomes non italic (italic blablabla is fine).
\documentclass{article} \usepackage{amsthm} \newtheorem{thm}{Theorem} \begin{document} \begin{thm} \begin{enumerate} \item[(v)] blablabla \end{enumerate} \end{thm} \begin{thm} \begin{itemize} \item[(v)] blablabla \end{itemize} \end{thm} \end{document} 
\usepackage{enumitem} \setlist[enumerate]{label={\upshape(\roman*)}}one can enumerate upright. Unfortunately in this circumstance, I should enumerate manually.Theorem 1. item 1 item 2,Theorem 2 item 3 item 4 item 5etc.