如何在对齐环境中将数字更改为罗马数字

如何在对齐环境中将数字更改为罗马数字

如何改变对齐环境对方程式进行编号的方式? 在此处输入图片描述

假设我想将(1)改为(I)或(A)

答案1

您可以使用\newtagform\usetagformfrom mathtools。以下是一些示例:

\documentclass[leqno]{article}
\usepackage[utf8]{inputenc}
\usepackage{fourier, erewhon}
\usepackage{mathtools}

\newtagform{Alph}[\renewcommand{\theequation}{\Alph{equation}}]()
\newtagform{roman}[\renewcommand{\theequation}{\roman{equation}}]()
\newtagform{scroman}[\renewcommand{\theequation}{\scshape\roman{equation}}][]

\begin{document}

\usetagform{Alph}
\begin{equation} 
a = b + c 
\end{equation}
\usetagform{roman}
\begin{equation}
d = e + f
\end{equation}

\usetagform{default}
\begin{equation}
x = y + z
\end{equation}

\usetagform{scroman}
\begin{equation}
u = v + w
\end{equation}

\end{document} 

在此处输入图片描述

相关内容