当我将定义环境与枚举环境结合时,我遇到了缩进问题。以下是最简单的示例。
\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}
另外,是否可以去掉定义主体中的斜体样式?
谢谢你的帮助。