Latex角标(subscript/superscript)

简介: Latex角标,包括一个字符的左上,左下,右上,右下位置,具体有多重实现方式,分别适用不同情况\documentclass[UTF8]{ctexart}\usepackage{mathtools}\usepack...

Latex角标,包括一个字符的左上,左下,右上,右下位置,具体有多重实现方式,分别适用不同情况

\documentclass[UTF8]{ctexart}

\usepackage{mathtools}
\usepackage{amsmath}
\usepackage{mhchem}
\usepackage{tensor}

\begin{document}

%For general math scripts before something, use \prescript provided by mathtools package, for better alignment
\begin{equation}
	\prescript{14}{2}{\mathbf{C}}	
\end{equation}

%For large operators, use \sideset from amsmath	
\begin{equation}
	\sideset{_a^b}{'}\sum A_n
\end{equation}

%For chemical equations, use mhchem package
\begin{equation}
	\ce{^{227}_{90}Th+}
\end{equation}

%For tensors, use tensor package
\begin{equation}
	BIOR(f, \chi)=\frac{\sum_{\tensor[]{f}{^'} \in \chi} \Delta l(f, \tensor[]{f}{^'})}{L(f)}	
\end{equation}
	
\begin{equation}
\tensor*[^A]{P}{^B} = \tensor*[^B]{P}{}\tensor*[^A_B]{T}{}
\end{equation}

\end{document}
效果如图




目录
相关文章
markdown 里的上标以及下标写法
markdown 里的上标以及下标写法
106 0
markdown 里的上标以及下标写法
C# Aspose.Words 用法
C# Aspose.Words 用法
192 0
C# Aspose.Words 用法
Unicode 上角标下角标,可用于代码字符串中
Unicode 上角标下角标,可用于代码字符串中
word中插入上标快捷键
学会word中插入上标快捷键
HDU-1062,Text Reverse(字符串处理 and 栈)
HDU-1062,Text Reverse(字符串处理 and 栈)
NPOI处理Word文本中上下角标
原文:NPOI处理Word文本中上下角标 读取Word文档,并将文本转成html标签,后面发现,经常有带上下角标的内容,于是一并处理了。 核心在于对XWPFRun对象中Subscript属性的处理。 1 /// 2 /// 读取Word,并识别文本中的...
1024 0