$\LaTeX$数学公式大全12
$12\ Font\ sizes$
${\displaystyle \int f^{-1}(x-x_a)\,dx}$ {\displaystyle \int f^{-1}(x-x_a)\,dx}
${\textstyle \int f^{-1}(x-x_a)\,dx}$ {\textstyle \int f^{-1}(x-x_a)\,dx}
${\scriptstyle \int f^{-1}(x-x_a)\,dx}$ {\scriptstyle \int f^{-1}(x-x_a)\,dx}
${\scriptscriptstyle \int f^{-1}(x-x_a)\,dx}$ {\scriptscriptstyle \int f^{-1}(x-x_a)\,dx}
\tiny$=\tiny{smallest}$
\scriptsize$=\scriptsize{very small}$
\small$=\small{small}$
\normalsize$=\normalsize{normal}$
\large$=\large{large}$
\Large$=\Large{Large}$
\LARGE$=\LARGE{LARGE}$
\huge$=\huge{huge}$
\Huge$=\Huge{Huge}$
随机推荐
- 【原创】大叔经验分享(56)hue导出行数限制
/opt/cloudera/parcels/CDH/lib/hue/apps/beeswax/src/beeswax/conf.py # Deprecated DOWNLOAD_CELL_LIMIT ...
- Linux Permission denied 问题
Linux Permission denied 问题 来源 https://www.cnblogs.com/sparkdev/p/10287164.html 如果当前用户没有某个文件的写权限,又要通 ...
- 异常-JDK7针对多个异常的处理方案
package cn.itcast_02; /* * JDK7出现了一个新的异常处理方案: * try{ * * }catch(异常名1 | 异常名2 | ... 变量 ) { * ... * } * ...
- RGB2GRAY 各种算法速度比较,整形乘法比查表法快!
1. 查表法,外循环用 这种格式 : //for(int j = 0; j != h; ++j)// for(int i = 0; i!=w;++i)//. for(int j = 0; j != ...
- 修改this的指向
call var a={ name:'xuux', fn:function(a,b){ console.log(a+b); console.log(this);//{name: "xuux& ...
- 不错的abap技术网站
http://www.saptechnical.com/index.htm https://sapcodes.com/
- HttpClient的GET请求(post)请求
一.不带参数的GET请求 // 创建Httpclient对象 CloseableHttpClient httpclient = HttpClients.createDefault(); // 创建ht ...
- MySQL表内更新时,自动记录时间
1.创建表: create table test_time(id int primary key not null,status varchar(24),create_time datetime d ...
- python之字典一
字典的定义: 前面我们说过列表,它适合于将值组织到一个结构中并且通过编号对其进行引用.字典则是通过名字来引用值的数据结构,并且把这种数据结构称为映射,字典中的值没有特殊的顺序,都存储在一个特定的键(k ...
- ORM简单增删改查
namespace ORM { class Program { static void Main(string[] args) { //AddPetStore();//添加 UpdatePetStor ...