tikzpictureの最初の行のベースラインを周囲のテキストのベースラインに揃えて、次のような画像にしたい。
Let A → B be a function from A to B
a → f(a)
しかし、現時点では、tikzpictureは垂直方向に中央に配置されています。私のコードは次のとおりです。
Let
\begin{tikzpicture}[baseline=-2.6pt,description/.style={fill=white,inner sep=2pt}]
\matrix (m) [matrix of math nodes, row sep=0em, column sep=2em, text height=1.75ex, text depth=.25ex, column 2/.style={anchor=base west}]
{
A & B \\
a & f(a) \\
};
\path[->]
(m-1-1) edge node[above] {$f$} (m-1-2);
\path[|->]
(m-2-1) edge (m-2-2);
\end{tikzpicture}
be a function from A to B.
答え1
あなたが望むものを手に入れるにはaligned
:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
Let
$\!\begin{aligned}[t]
A &\overset{f}{\longrightarrow} B\\
a &\longmapsto f(a)\end{aligned}$
be a function from $A$ to $B$.
\end{document}
しかし、このような大きなオブジェクトをインラインで置かない方が良いでしょう。
Let $f\colon A\to B$, $a\mapsto f(a)$, be a function from $A$ to $B$.
割り当てを別の行に設定すると、情報が追加されず、スペースが失われます。
どうしても TikZ でやりたい場合は、次のようになります。
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{matrix}
\begin{document}
Let
\begin{tikzpicture}[
baseline=(m-1-1.base),
description/.style={fill=white,inner sep=2pt}
]
\matrix (m) [
matrix of math nodes,
row sep=0em,
column sep=2em,
text height=1.75ex,
text depth=.25ex,
column 2/.style={anchor=base west}]
{
A & B \\
a & f(a) \\
};
\path[->] (m-1-1) edge node[above] {$\scriptstyle f$} (m-1-2);
\path[|->] (m-2-1) edge (m-2-2);
\end{tikzpicture}
be a function from $A$ to $B$.
\end{document}
答え2
tikz
私たち、プレーン TeX のユーザーには、このような例は必要ありません。
Let
\vtop{\halign{$\hfil#{}$&$#\hfil$\cr
A \buildrel f\over\longrightarrow& B\cr
a \longmapsto& f(a)\cr}}
be a function from $A$ to $B$.
\bye