Problema de sangría

Problema de sangría

Tengo un problema de sangría cuando combino un entorno de definición con un entorno de enumeración. Aquí hay un ejemplo mínimo.


\documentclass[11pt,a4paper]{amsbook}

\usepackage[utf8]{inputenc}
\usepackage{txfonts}
\usepackage{hyperref}
\usepackage{mathrsfs}
\usepackage{mathdots}
\usepackage{epigraph}
\usepackage{csquotes}
\usepackage{verbatim,enumitem}


\newtheorem{theorem}{Theorem}[section]
\newtheorem{proposition}[theorem]{Proposition}
\newtheorem{lemma}[theorem]{Lemma}
\newtheorem{corollary}[theorem]{Corollary}
\newtheorem{definition}[theorem]{Definition}
\newtheorem{remark}[theorem]{Remark}
\newtheorem{example}[theorem]{Example}

\theoremstyle{definition}
\makeatletter
\patchcmd\@thm
{\let\thm@indent\indent}{\let\thm@indent\noindent}%
{}{}
\makeatother

\begin{document}
    
    \title{Result}
    
    \begin{definition}\label{linear_representation}
        \begin{enumerate}[label=\roman*), font=\normalfont]
            \item A \textit{linear representation} of $ G $ is a pair $ (V,\rho) $ .
            
        \end{enumerate}
    \end{definition}

\end{document}

Da el siguiente resultado, puede ver la sangría excesiva después de la Definición 0.1. ingrese la descripción de la imagen aquí

¿También sería posible eliminar el estilo en cursiva en el cuerpo de la definición?

Gracias por cualquier ayuda.

información relacionada