들여쓰기 문제

들여쓰기 문제

정의 환경과 열거 환경을 결합할 때 들여쓰기 문제가 있습니다. 다음은 최소한의 예입니다.


\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 이후에 과도한 들여쓰기를 볼 수 있습니다. 여기에 이미지 설명을 입력하세요

또한 정의 본문에서 이탤릭체 스타일을 제거하는 것이 가능합니까?

도움을 주셔서 감사합니다.

관련 정보