我想知道在元素前面用原子 A 和 Z 的指数和索引来表示核反应的最佳方式是什么?提前谢谢。
答案1
答案2
对于 LaTeX 中的特殊核反应,我已将特定反应放入此链接中https://www.physicsforums.com/threads/latex-help-for-nuclear-reactions.14912/使用isotope
包。我经常使用这个解决方案作为mhchem
包的替代方案。
编辑:-->针对用户@mhchem 的评论。
\documentclass[12pt]{article}
\usepackage[utf8]{inputenc}
\usepackage{sectsty}
\allsectionsfont{\bfseries}
\usepackage{isotope}
\usepackage{xcolor}
\begin{document}
Text mode: \textcolor{red}{\isotope[4][2]{He}} or normal without color \isotope[4][2]{He} and also for the section.
\section{The discovery of \isotope[4][2]{He}}
In math-mode you can have the same thing:
$\isotope[4][2]{He}+\isotope[27][13]{Al}\rightarrow\isotope[31][15]{P}\rightarrow\isotope[30][15]{P}+\isotope[1][0]{n}$
\end{document}
附录:
包中还isotope
可以在文本模式下的部分包含粗体公式。
\documentclass[12pt]{article}
\usepackage{sectsty}
\allsectionsfont{\bfseries\boldmath}
\usepackage{isotope}
\begin{document}
\section{The discovery of \isotope[4][2]{He}}
\end{document}