答案1
答案2
您可以使用tikz-cd
该cramped
选项。
\documentclass{article}
\usepackage{tikz-cd, amsthm}
\theoremstyle{definition}
\newtheorem{definition}{Definition}
\begin{document}
\begin{definition}
A \emph{short exact sequence of complexes} is a sequence of complexes
\begin{tikzcd}[cramped, column sep=4mm]
0\arrow[r]&C\arrow[r, "f"]&D\arrow[r, "g"]&E\arrow[r]&0
\end{tikzcd} such that for all $i$,
\end{definition}
\end{document}
答案3
答案4
有多种方法可以在箭头上方编写函数,例如使用\overset{}{}
,\xrightarrow{}
或\xleftarrow{}
,\stackrel{}{}
,...
通过\overset{}{}
\documentclass{article}
\begin{document}
$0 \rightarrow C \overset{f}{\rightarrow} D \overset{g}{\rightarrow} E \rightarrow 0$
\end{document}
通过\xrightarrow{}
\documentclass{article}
\begin{document}
$0 \rightarrow C \xrightarrow{f} D \xrightarrow{g} E \rightarrow 0$
\end{document}
通过\stackrel{}{}
\documentclass{article}
\begin{document}
$0 \rightarrow C \stackrel{f}{\rightarrow} D \stackrel{g}{\rightarrow} E \rightarrow 0$
\end{document}
通过矩阵
\documentclass{article}
\begin{document}
$0 \rightarrow C ~\begin{matrix} f\\ \rightarrow\\ ~\end{matrix}~ D ~\begin{matrix} g\\ \rightarrow\\ ~\end{matrix}~ E \rightarrow 0$
\end{document}
...