
답변1
나는 이것이 특별히 매력적이라고 생각하지 않지만 여기에는 다음과 같은 것이 있습니다.
\documentclass{article}
\usepackage{amsmath,amssymb,array}
\newcommand{\numberset}[1]{\mathbb{#1}}
\newcommand{\R}{\numberset{R}}
\newcommand{\C}{\numberset{C}}
\begin{document}
\begin{equation*}
\setlength{\arraycolsep}{0pt}% disable standard intercolumn spaces
\renewcommand{\arraystretch}{1.5}% more room between rows
\begin{array}{r c >{{}}c<{{}} c}
\Phi\colon{} & \R\times\R & \longrightarrow & \C\times\R=\R^3 \\
& (u,v) & \longmapsto & (e^{iu},v)=(\cos u,\sin u,v)
\end{array}
\end{equation*}
\end{document}
l
마지막 열과 약간 다른 버전 :
\begin{equation*}
\setlength{\arraycolsep}{0pt}% disable standard intercolumn spaces
\renewcommand{\arraystretch}{1.5}% more room between rows
\begin{array}{r c >{{}}c<{{}} l}
\Phi\colon{} & \R\times\R & \longrightarrow & \C\times\R=\R^3 \\
& (u,v) & \longmapsto & (e^{iu},v)=(\cos u,\sin u,v)
\end{array}
\end{equation*}
답변2
패키지로도 할 수 있습니다 eqparbox
:
\documentclass{article}
\usepackage{amsmath,amssymb}
\usepackage{eqparbox}
\newcommand{\eqmathbox}[2][M]{\eqmakebox[#1]{$\displaystyle#2$}}
\newcommand{\numberset}[1]{\mathbb{#1}}
\newcommand{\R}{\numberset{R}}
\newcommand{\C}{\numberset{C}}
\begin{document}
\begin{align*}
\Phi\colon\eqmathbox[L]{\R\times\R} & \longrightarrow \eqmathbox[R]{\C\times\R=\R^3} \\
\eqmathbox[L]{(u,v)} & \longmapsto \eqmathbox[R]{(e^{iu},v)=(\cos u,\sin u,v)}
\end{align*}
\end{document}