![インデントの問題](https://rvso.com/image/476226/%E3%82%A4%E3%83%B3%E3%83%87%E3%83%B3%E3%83%88%E3%81%AE%E5%95%8F%E9%A1%8C.png)
定義環境と列挙環境を組み合わせるとインデントの問題が発生します。以下に最小限の例を示します。
\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}
次のような出力が得られ、定義 0.1 の後のインデントが過剰であることがわかります。
また、定義の本文で斜体スタイルを削除することは可能でしょうか?
ご協力いただきありがとうございます。