同一行中的两个函数

同一行中的两个函数
      \documentclass[12pt,a4paper]{report}
  \usepackage{mathtools, nccmath}
    \usepackage{amssymb, amsthm, mathrsfs}

   \begin{document}
    \begin{align*}
   h\colon S(0,1)& \rightarrow S^A(0,1)\\
    x&\mapsto \frac{x}{\|x\|_A},
   \end{align*}
   and
   \begin{align*}
  g\colon S^A(0,1)& \rightarrow S(0,1)\\
 y&\mapsto \frac{y}{\|y\|},
\end{align*}
   \end{document}

在此处输入图片描述

我想让两个方程在同一行

答案1

使用aligned

\documentclass[12pt,a4paper]{report}
\usepackage{mathtools}

\begin{document}

\begin{equation*}
\begin{aligned}[t]
  h\colon S(0,1) &\rightarrow S^A(0,1)\\
  x              &\mapsto \frac{x}{\|x\|_A},
\end{aligned}
\quad\text{and}\quad
\begin{aligned}[t]
  g\colon S^A(0,1) &\rightarrow S(0,1)\\
  y                &\mapsto \frac{y}{\|y\|},
\end{aligned}
\end{equation*}

\end{document}

在此处输入图片描述

我以前很喜欢这种函数符号,但后来我开始不喜欢它了:它很笨重,占用空间,而且没有什么用处。它在黑板上很有用,但在论文上却没用。

答案2

使用aligned您可以在数学模式下完成作业inline。我想您希望结果居中,因此,我将代码放在环境中center,最后,我添加了一些\hspace命令以获得更好的间距:

 \documentclass[12pt,a4paper]{report}
  \usepackage{mathtools, nccmath}
    \usepackage{amssymb, amsthm, mathrsfs}

   \begin{document}
    \begin{center}
    \(\begin{aligned}
   h\colon S(0,1)& \rightarrow S^A(0,1)\\
    x&\mapsto \frac{x}{\|x\|_A},
   \end{aligned}
   \hspace{20pt}\text{ and }\hspace{20pt}
   \begin{aligned}
  g\colon S^A(0,1)& \rightarrow S(0,1)\\
 y&\mapsto \frac{y}{\|y\|},
\end{aligned}\)
\end{center}
   \end{document}

在此处输入图片描述

答案3

像这个一样的东西吗?

\documentclass[12pt,a4paper]{report}
\usepackage{mathtools, nccmath}
\usepackage{amssymb, amsthm, mathrsfs}

\begin{document}

\[ \begin{aligned}
h\colon S(0,1)& \longrightarrow S^A(0,1)\\
x&\longmapsto \frac{x}{\|x\|_A},
\end{aligned}
\qquad\text{ and }\qquad
\begin{aligned}
g\colon S^A(0,1)& \longrightarrow S(0,1)\\
y&\longmapsto \frac{y}{\|y\|},
\end{aligned} \]\bigskip

\[ \begin{rcases} \begin{aligned}
h\colon S(0,1)& \longrightarrow S^A(0,1)\\
x&\longmapsto \frac{x}{\|x\|_A},
\end{aligned}\end{rcases}
\quad\text{ and }\quad
\begin{dcases} \begin{aligned}
g\colon S^A(0,1)& \longrightarrow S(0,1)\\
y&\longmapsto \frac{y}{\|y\|},
\end{aligned}\end{dcases} \]

\end{document} 

在此处输入图片描述

相关内容