用函数作为图像来定义函数

用函数作为图像来定义函数

我想定义一个函数,其函数形式为图像;类似于下面的内容,但我怀疑这array不是最好的结构

\begin{array}{}
f:&A&\to& L(B)\\
&h&\mapsto& f_h:&B&\to& B\\
&&&&x&\mapsto& 2x
\end{array}

(我不知道如何在这个论坛上呈现乳胶代码,所以我只是发布了代码)。
我非常感谢任何形式的帮助:)

答案1

我会使用嵌套aligned

\documentclass{article}
\usepackage{amsmath}

\begin{document}
\[
f\colon
\begin{aligned}[t]
A&\to L(B)\\
h &\mapsto f_h \colon
               \begin{aligned}[t]
               B &\to B\\
               x &\mapsto 2x
               \end{aligned}
\end{aligned}
\]
\end{document}

在此处输入图片描述

相关内容