缩进问题

缩进问题

当我将定义环境与枚举环境结合时,我遇到了缩进问题。以下是最简单的示例。


\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 之后的过多缩进。 在此处输入图片描述

另外,是否可以去掉定义主体中的斜体样式?

谢谢你的帮助。

相关内容