LaTex常见问题汇总(六)
2020-4-22 12:12
阅读:3127
(1)Latex如何输入大小写罗马数字
\uppercase\expandafter{\romannumeral2} 将输入大写罗马数字2,
\romannumeral2 将输入小写罗马数字2。
(2)如何让Latex公式字体变小
第一种方法:针对单公式用
\begin{small} \begin{equation} \ldots \end{equation} \end{small}
第二种方法:定义新的变量环境
在开始
\newenvironment{sequation}{\begin{equation}\small}{\end{equation}}
演示效果图:
演示代码:
\documentclass{article} \usepackage[includemp,body={398pt,550pt},footskip=30pt,% marginparwidth=60pt,marginparsep=10pt]{geometry} \newenvironment{sequation}{\begin{equation}\small}{\end{equation}} \newenvironment{tequation}{\begin{equation}\tiny}{\end{equation}} \begin{document} \begin{tequation} \int_a^b f(x) \mathrm{d}x=A \end{tequation} \begin{sequation} \int_a^b f(x) \mathrm{d}x=A \end{sequation} \begin{equation} \int_a^b f(x) \mathrm{d}x=A \end{equation} \end{document}
(3)公式左对齐+去编号
左对齐:
\begin{flalign} &formula& \end{flalign}
去编号:在公式末尾添加 \nonumber
左对齐+去编号:
\begin{flalign} &formula& \nonumber \end{flalign}
LaTex系列暂时告一段落(目前已有LaTex(一)~(六)),后期再更新,如若您遇到什么问题,可以留言。
点滴分享,福泽你我!Add oil!
转载本文请联系原作者获取授权,同时请注明本文来自张伟科学网博客。
链接地址:https://wap.sciencenet.cn/blog-3428464-1229593.html?mobile=1
收藏
当前推荐数:0
推荐到博客首页
网友评论0 条评论