如何在主文本左侧的LaTeX中编写数字或字符串

时间:2014-12-05 15:31:54

标签: latex

我对LaTeX有疑问。我有一个符号99mTc,我需要有:升高(99m)和文本主线的Tc。我该怎么办?

谢谢

P.S。你可以在第一行看到我需要的方式:http://en.wikipedia.org/wiki/Technetium-99m

1 个答案:

答案 0 :(得分:1)

使用mhchem之类的化学排版包。此外,如果您经常使用此符号,请定义一个宏,以便在需要时重复使用 - 它可以提高一致性:

enter image description here

\documentclass{article}
\usepackage[version=3]{mhchem}
\newcommand{\Technetium}{\ce{^{99m}Tc}}
\begin{document}

\textbf{Technetium-99m} is a metastable nuclear isomer of technetium-99, symbolized as 
\Technetium, that is used in tens of millions of medical diagnostic procedures annually, 
making it the most commonly used medical radioisotope.

\end{document}

请注意,这个无参数的宏应该用作\Technetium{},只要它后面跟一个空格,因为TeX会在控制序列之后占用空格。