此图片的代码

此图片的代码

在此处输入图片描述

在此图片中写入此映射的代码是什么?

答案1

tikz-cd

\documentclass[margin=3mm]{standalone}
\usepackage{tikz-cd}

\begin{document}
    \begin{tikzcd}[cells = {nodes={minimum width=3.5em, inner xsep=0pt}},
                   row sep=0pt]
\rho:G \ar[r]           &   GL(V)   \\
s      \ar[r, mapsto]   &   \rho_s
    \end{tikzcd}
\end{document}

在此处输入图片描述

答案2

amsmathmathtools每个都使用\rightarrow和提供和的可扩展版本。\mapsto\xrightarrow{<stuff>}\xmapsto{<stuff>}

下面我插入了一个1em空格(使用\quad)作为两者的参数( )。您可以在指定适当的 gth 时<stuff>使用(请参阅\hspace{<len>}<len>有哪些命令可以控制水平间距?)。

在此处输入图片描述

\documentclass{article}

\usepackage{mathtools}

\begin{document}

\begin{align*}
  \rho \colon G &\xrightarrow{\quad} GL(V) \\
              s &\xmapsto{\quad} \rho_s
\end{align*}

\end{document}

答案3

\begin{document}
    $\rho:G \longrightarrow GL(V)$

    $s\longmapsto \rho_s$
\end{document}

这应该重现上面的图片。

相关内容