我是使用 latex 的新手。我想使用 latex 定义一个函数,但尝试这样做时遇到了困难,该函数是:
f:A->A
x->(f1(x),f2(x))
我尝试了一些方法,但我知道这肯定是不对的。你能帮我吗?
$f$ : $B_k$ $\longrightarrow$ $B_k$\\
$x$ &\mapsto$ f\(f_1\(x),f_2(x)\)
答案1
如果它是在线数学,您可以使用它:
$\begin{aligned}[t] f\colon A &\longrightarrow A\\
x &\longmapsto \bigl(f_1(x),f_2(x)\bigr)
\end{aligned}$
如果是显示方程, \begin{align*} ... \end{align*}
则使用$\begin{aligned}[t] ... \end{aligned}$
答案2
我不会在内联集中使用对齐方法。您可以使用以下方法:
\documentclass{memoir}
\usepackage{amsmath}
\begin{document}
Let us consider the function
\begin{align*}
f\colon A &\to A,\\
x &\mapsto \big(f_1(x), f_2(x)\big).
\end{align*}
Saepe at quas accusamus molestiae possimus consequatur vitae.
For an inline attempt, I would go with
$f\colon A \to A,\, x \mapsto \big(f_1(x), f_2(x)\big)$.
Saepe at quas accusamus molestiae possimus consequatur vitae.
\end{document}
认真地讲,你应该考虑一些 TeX 的基本训练,例如https://ctan.org/pkg/lshort-english,https://ctan.org/pkg/short-math-guide或者https://ctan.org/pkg/latex-amsmath。