答案1
答案2
带有 tikz 叠加层的答案(1 和 2 不在 tikz 图片中,但可能在)
\documentclass[]{article}
\usepackage{tikz}
\newcommand{\tikzmark}[1]{\begin{tikzpicture}[overlay,remember picture]\coordinate(#1);\end{tikzpicture}}
\begin{document}
{\Huge 1\tikzmark{A}\hspace{50pt}\tikzmark{B}2}
\begin{tikzpicture}[overlay,remember picture]
\draw[thick,->] ([shift={(0,0.4)}]A)--([shift={(0,0.4)}]B) node[midway, above]{{\large a}};
\draw[thick,<-] ([shift={(0,0.1)}]A)--([shift={(0,.1)}]B) node[midway, below]{{\large b}};
\end{tikzpicture}
\end{document}
答案3
目前尚不清楚,如果你喜欢有数学表达式(如提供弗兰在他很好的回答中),或者你喜欢有这样的内容的图片。对于后者是一个方便的包tikz-cd
(用于交换图):
\documentclass{article}
\usepackage{tikz-cd}
\begin{document}
\begin{tikzcd}
1 \arrow[r,shift left,"a"]
&
2 \arrow[l,shift left,"b"]
\end{tikzcd}
\end{document}