本系列文章由 @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-calboondox-calo
    • dutchcal

  • 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

References:

lowercase calligraphic letters的更多相关文章

  1. Codeforces 708A Letters Cyclic Shift

    A. Letters Cyclic Shift time limit per test:1 second memory limit per test:256 megabytes input:stand ...

  2. 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 ...

  3. CF708A Letters Cyclic Shift 模拟

    You are given a non-empty string s consisting of lowercase English letters. You have to pick exactly ...

  4. Codeforces Round 56-B. Letters Rearranging(思维)

    time limit per test 1 second memory limit per test 256 megabytes input standard input output standar ...

  5. Letters Shop

    B. Letters Shop time limit per test 2 seconds memory limit per test 256 megabytes input standard inp ...

  6. 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 ...

  7. C. Swap Letters 01字符串最少交换几次相等

    C. Swap Letters time limit per test 2 seconds memory limit per test 256 megabytes input standard inp ...

  8. LATEX公式语法

    see how any formula was written in any question or answer, including this one, right-click on the ex ...

  9. POJ2774 Long Long Message [后缀数组]

    Long Long Message Time Limit: 4000MS   Memory Limit: 131072K Total Submissions: 29277   Accepted: 11 ...

随机推荐

  1. glocktop

    glocktop: Display or print active GFS2 locks. Index of glocktop man page Read glocktop man page on L ...

  2. with(){}方法

    <html><head><script type="text/javascript">function validate_email(field ...

  3. jQuery 效果使用

    .hide() 隐藏匹配的元素. .hide() 这个方法不接受任何参数. .hide([duration][,complete]) duration 一个字符串或者数字决定动画将运行多久. comp ...

  4. 访问远程mysql数据库,出现报错,显示“1130 - Host'xxx.xxx.xxx.xxx' is not allowed to connect to this MySQL server“

    在使用Navicat for MySQl访问远程mysql数据库,出现报错,显示“1130 - Host'xxx.xxx.xxx.xxx' is not allowed to connect to t ...

  5. php-5.6.26源代码 - opcode执行

    文件 php-5.6.26/Zend/zend_vm_execute.h ZEND_API void execute_ex(zend_execute_data *execute_data TSRMLS ...

  6. foreachRDD,foreach,foreachPartition区别联系

    foreachRDD(SparkStreaming): SparkStreaming是流式实时处理数据,就是将数据流按照定义的时间进行分割(就是"批处理").每一个时间段内处理到的 ...

  7. Leetcode 538. 把二叉搜索树转换为累加树

    题目链接 https://leetcode.com/problems/convert-bst-to-greater-tree/description/ 题目描述 大于它的节点值之和. 例如: 输入: ...

  8. 20145202马超 《Java程序设计》 实验一 实验报告

    一.实验内容 1.使用JDK编译.运行简单的Java程序: 2.使用Eclipse 编辑.编译.运行.调试Java程序. 二.实验内容 1.完成在Windows环境下对IDEA的配置: 2.实现求正整 ...

  9. 使用 Ajax

    Ajax( Asynchronous JavaScript and XML) 在 Ajax 中 Asynchronous 是指异步, 代表 客户端(Client 通常是指浏览器) 可以向服务器(Ser ...

  10. Javascript Step by Step - 04

    前言 本篇主要讨论jQuery的常用的若干操作.为了能直观的显示操作的结果,首先建立一个html文件,内容如下: <!DOCTYPE html> <html> <head ...