在 LaTeX 中展示核反应

在 LaTeX 中展示核反应

我想知道在元素前面用原子 A 和 Z 的指数和索引来表示核反应的最佳方式是什么?提前谢谢。

答案1

mhchem 呈现的同位素方程

\documentclass{article}
\usepackage[version=4]{mhchem}
\begin{document}
\section{The discovery of \ce{^4_2He}}
$\ce{^4_2He + ^27_13Al -> ^31_15P -> ^30_15P + ^1_0n}$

\sffamily Works also with text fonts (\ce{^4_2He}).
\end{document}

答案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}

相关内容