Latex 中的函数符号

Latex 中的函数符号

有没有办法以以下格式显示数学函数

$f: \mathbb{N} \to \mathbb{N}$
       $x      \to    x^2$

其中 x -> x^2 正好位于定义域和余域的下方?

抱歉,如果这个问题已经有人问过了,我不确定如何搜索它。

答案1

如果您的文档中有多个这样的表达式,则设置一个宏来收集和组织这些元素会很有帮助。在下面的代码中,我\myfunc为此目的定义了一个宏;它需要五个参数:函数名称、域、陪域和第二行的项。

在此处输入图片描述

\documentclass{article}
\usepackage{array,amsfonts}
\newcommand\myfunc[5]{%
  \begingroup
  \setlength\arraycolsep{0pt}
  #1\colon\begin{array}[t]{c >{{}}c<{{}} c}
             #2 & \to & #3 \\ #4 & \to & #5 
          \end{array}%
  \endgroup}
\begin{document}
The function $\myfunc{f}{\mathbb{N}}{\mathbb{N}}{x}{x^2}$ is known \dots

\bigskip
The function $\myfunc{g}{\mathbb{R}}{\mathbb{C}}{x}{\sqrt{x}}$ is called \dots
\end{document}

相关内容