发布时间:2009-11-24 15:59:23
文章类别:小技巧
原文地址:http://blog.sina.com.cn/s/blog_5e16f1770100g5sl.html

QQ群:91940767/145316219/141877998/80300084/194770436
淘宝店:http://latexstudio.taobao.com
技巧续篇:http://latexstudio.net/
常见数学公式问题集下载

  以前,帮助一同学输入LaTeX源文件的时候才知道,LaTeX不能输入罗马数字,搞得我好几天都在研究和寻找,最后,终于搞定,相信大家如果使用罗马数字,肯定不会再有问题了。 如下解决方案:

\uppercase\expandafter{\romannumeral20}

将输入大写罗马数字20,

\romannumeral20

将输入小写罗马数字20。

演示结果图:

LaTeX技巧100:LaTeX如何输入大小写罗马数字?

演示代码:
\documentclass{article}
\usepackage{CJK}
\usepackage{times}
\pagestyle{empty}
\setcounter{page}{6}
\setlength\textwidth{59.0pt}
\usepackage{colortbl}
\begin{CJK*}{GBK}{song}
\begin{document}
\begin{tabular}
{>{\columncolor{blue}\color{white}\bfseries}cc|c|}
\rowcolor[gray]{0.8}
\color{black} 小写罗马数字 & \bfseries 大写罗马数字&\bfseries 对应阿拉伯数字\\[2pt]
\romannumeral1& \uppercase\expandafter{\romannumeral1} &1\\
\romannumeral2& \uppercase\expandafter{\romannumeral2} &2\\
\romannumeral3& \uppercase\expandafter{\romannumeral3} &3\\
\romannumeral4& \uppercase\expandafter{\romannumeral4} &4\\
\romannumeral5& \uppercase\expandafter{\romannumeral5} &5\\
\vdots& \vdots &\vdots\\
\cellcolor[gray]{0.8}\color{black}\romannumeral10& \uppercase\expandafter{\romannumeral10}&10\\ \hline
\end{tabular}
\paragraph{}
\newpage
\end{CJK*}
\end{document}


点赞(0)

评论列表 共有 0 条评论

暂无评论
立即
投稿

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部