![들여쓰기 문제](https://rvso.com/image/476226/%EB%93%A4%EC%97%AC%EC%93%B0%EA%B8%B0%20%EB%AC%B8%EC%A0%9C.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 이후에 과도한 들여쓰기를 볼 수 있습니다.
또한 정의 본문에서 이탤릭체 스타일을 제거하는 것이 가능합니까?
도움을 주셔서 감사합니다.