我可以在 \newtheorem 中的下页上缩进多行吗?

我可以在 \newtheorem 中的下页上缩进多行吗?

我喜欢这样操作:当我使用 \begin{pf} 时,区域中的所有内容都会缩进一点;当使用 \end{pf} 时,后面的文本会再次缩进,如果其中还有其他文本,则会缩进更多(有点像伪代码),就像这样我想要什么样子 到目前为止

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{amsmath,amsthm,amssymb,amsfonts}
\usepackage{graphicx}
\usepackage[dvipsnames]{xcolor}
\usepackage{enumerate}

\newtheorem*{pf}{\textcolor{Emerald}{Proof}}
\newtheorem*{remark}{\textcolor{WildStrawberry}{Remark}}
\newtheorem*{note}{\textcolor{Cyan}{Note}}
\newtheorem*{ex}{\textcolor{Mulberry}{Example}}

\newtheorem{theorem}{\textcolor{OliveGreen}{Theorem}}[section]

在此处输入图片描述

我走对路了吗? 我可以做出这样的缩进吗?

相关内容