是否可以在 tex 文档中仅在一个地方写一个小写数字?

是否可以在 tex 文档中仅在一个地方写一个小写数字?

在我拥有的一份 tex 文档中\textsc{exp3},我想将其设为3小写数字。可以吗?

这是我的代码,它使用 ACM 模板。

\documentclass[acmlarge]{acmart} 

\settopmatter{printacmref=false}% 
\renewcommand\footnotetextcopyrightpermission[1]{}% 
\renewcommand\footnotetextauthorsaddresses[1]{}% \pagestyle{plain} 
\fancyfoot{} 

\makeatletter 
\def\runningfoot{\def\@runningfoot{}} 
\def\firstfoot{\def\@firstfoot{}} 
\def\@copyrightspace{\relax} 
\makeatother 

\usepackage{amsmath} 
\usepackage{amsfonts} 
\usepackage{amsthm}  
\usepackage{amssymb} 
\usepackage[mathscr]{euscript}
\usepackage{booktabs} % For formal tables


\begin{document} 

\title{My Title} 

\author{Me} 

\maketitle 

\thispagestyle{empty} 

This is my file. This is an algorithm, called \textsc{exp3}. Numbers like $1,2,3$ are not small caps. 

\end{document}

见下图(第一组数字;从左到右):

在此处输入图片描述

相关内容