lowercase calligraphic letters
本系列文章由 @yhl_leo 出品,转载请注明出处。
文章链接: http://blog.csdn.net/yhl_leo/article/details/53454402
LaTeX公式表达中,经常使用手写体字母(calligraphic letters),而默认情形下,手写体字母集是指26个大写字母:
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z

也就是说,字符集中仅仅大写字母是可以使用\mathcal转换符,如果使用小写字母,那就是非法输入,得到的结果就是随机字符,例如:
\begin{equation}
\begin{aligned}
l : \mathcal{l} \\
m : \mathcal{m}
\end{aligned}
\end{equation}
找到如下方法,可以解决这一问题:
- Additional fonts
bickham:(本人测试失败)boondox:boondox-cal和boondox-calodutchcal
- Greek letters and
\ell
如果仅仅使用希腊字符或者l,则可以使用特殊的表示:
| Letter | Grammar | Letter | Grammar | Letter | Grammar |
|---|---|---|---|---|---|
| α | \alpha |
β | \beta |
γ | \gamma |
| δ | \delta |
ϵ | \epsilon |
ε | \varepsilon |
| ζ | \zeta |
η | \eta |
θ | \theta |
| ϑ | \vartheta |
ι | \iota |
κ | \kappa |
| λ | \lambda |
μ | \mu |
ν | \nu |
| ξ | \xi |
o | o |
π | \pi |
| ϖ | \varpi |
ρ | \rho |
ϱ | \varrho |
| σ | \sigma |
ς | \varsigma |
τ | \tau |
| υ | \upsilon |
ϕ | \phi |
φ | \varphi |
| χ | \chi |
ψ | \psi |
ω | \omega |
| ℓ | \ell |
- 更多字体:Font Catalogue
References:
lowercase calligraphic letters的更多相关文章
- Codeforces 708A Letters Cyclic Shift
A. Letters Cyclic Shift time limit per test:1 second memory limit per test:256 megabytes input:stand ...
- AIM Tech Round 3 (Div. 1) A. Letters Cyclic Shift 贪心
A. Letters Cyclic Shift 题目连接: http://www.codeforces.com/contest/708/problem/A Description You are gi ...
- CF708A Letters Cyclic Shift 模拟
You are given a non-empty string s consisting of lowercase English letters. You have to pick exactly ...
- Codeforces Round 56-B. Letters Rearranging(思维)
time limit per test 1 second memory limit per test 256 megabytes input standard input output standar ...
- Letters Shop
B. Letters Shop time limit per test 2 seconds memory limit per test 256 megabytes input standard inp ...
- Codeforces Round #585 (Div. 2) C. Swap Letters
链接: https://codeforces.com/contest/1215/problem/C 题意: Monocarp has got two strings s and t having eq ...
- C. Swap Letters 01字符串最少交换几次相等
C. Swap Letters time limit per test 2 seconds memory limit per test 256 megabytes input standard inp ...
- LATEX公式语法
see how any formula was written in any question or answer, including this one, right-click on the ex ...
- POJ2774 Long Long Message [后缀数组]
Long Long Message Time Limit: 4000MS Memory Limit: 131072K Total Submissions: 29277 Accepted: 11 ...
随机推荐
- CentOS中配置php环境
1.安装apache: yum install httpd httpd-devel 2.安装mysql: yum install mysql mysql-server 3.安装php: yum ...
- 【javascript】ajax 基础
什么是 ajax ajax 即“Asynchronous JavaScript and XML”(异步 JavaScript 和 XML),也就是无刷新数据读取. http 请求 首先需要了解 htt ...
- 第3章 如何用DAP仿真器下载程序—零死角玩转STM32-F429系列
第3章 如何用DAP仿真器下载程序 集视频教程和1000页PDF教程请到秉火论坛下载:www.firebbs.cn 野火视频教程优酷观看网址:http://i.youku.com/firege ...
- cmd文件内容添加到文件内容命令
今天需要因为有点SQL文件需要添加修改,但是感觉是做运维工作得当然不能一个一个来了.搞了半天bat才找到这个命令(真是一个不合格的运维) 例如:a.txt 内容添加到 b.txt (不是覆盖,而是在 ...
- 【iOS】史上最全的iOS持续集成教程 (下)
:first-child{margin-top:0!important}.markdown-body>:last-child{margin-bottom:0!important}.markdow ...
- 树梅派3B kali2.0 启用SSH进行远程登录
工具/原料 kali 2.0 ssh SSH连接工具(XShell)or PUTTY vi /etc/ssh/sshd_config 将#PasswordAuthentication no的注释去掉, ...
- Android内购订单验证 --- php实现
直接上代码: function googleVerify($sdata,$google_public_key) { $sdata = json_decode($sdata,true); $in_app ...
- hive_异常_01_(未解决)FAILED: Execution Error, return code 1 from org.apache.hadoop.hive.ql.exec.DDLTask. org.apache.hadoop.hbase.HTableDescriptor.addFamily(Lorg/apache/hadoop/hbase/HColumnDescriptor;)V
一.如果出现如下错误需要编译源码 需要重新编译Hbase-handler源码 步骤如下: 准备Jar包: 将Hbase 中lib下的jar包和Hive中lib下的jar包全部导入到一起. 记得删除里面 ...
- python3 练习题100例 (十六)鸡尾酒疗法
#!/usr/bin/env python3 # -*- coding: utf-8 -*- __author__ = 'Fan Lijun' n = input('请输入一个大于1,小于等于20的整 ...
- 学习python第十二天,函数4 生成器generator和迭代器Iterator
在Python中,这种一边循环一边计算的机制,称为生成器:generator 要创建一个generator,有很多种方法.第一种方法很简单,只要把一个列表生成式的[]改成(),就创建了一个genera ...