发布时间:2009-11-05 11:23:13
文章类别:小技巧
原文地址:http://blog.sina.com.cn/s/blog_5e16f1770100fw7o.html
QQ群:91940767/145316219/141877998/80300084/194770436
淘宝店:http://latexstudio.taobao.com
Email:latexstudio@hotmail.com
常见数学公式问题集下载
LaTeX不直接支持显示大小写罗马数字, 但是可以通过自定义命理来实现.
定义新的命令\rmnum,\Rmnum,用来显示大小写罗马数字
用法:\rmnum{数字},\Rmnum{数字}
\makeatletter
\newcommand{\rmnum}[1]{\romannumeral #1}
\newcommand{\Rmnum}[1]{\expandafter\@slowromancap\romannumeral
#1@}
\makeatother
在文章的导言区加入上面四行, 然后就可以在正文中使用命令\rmnum{数字},Rmnum{数字}来分别显示大小写罗马数字.
下面来看一个最简单的使用罗马数字的例子.
\documentclass{article}
%导言区定义新命令
\makeatletter
\newcommand{\rmnum}[1]{\romannumeral #1}
\newcommand{\Rmnum}[1]{\expandafter\@slowromancap\romannumeral
#1@}
\makeatother
\begin{document}
%命令使用方法
\rmnum{1},\rmnum{5},\rmnum{55}\\
\Rmnum{1},\Rmnum{5},\Rmnum{55}
\end{document}
发表评论 取消回复