logo

TikZを用いた普遍性質図の描画方法 📂論文作成

TikZを用いた普遍性質図の描画方法

コード

diagram.png

\documentclass[12pt]{article}
\usepackage{tikz}

\begin{document}

$$
\begin{tikzpicture}[node distance=3.5cm, auto]
  \node (Vtimes) {$V_{1} \times V_{2}$};
  \node (Votimes) [right of = Vtimes] {$V_{1} \otimes V_{2}$};
  \node (W) [node distance=2.0cm, below of = Votimes] {$W$};
  \draw[->] (Vtimes) to node [swap] {$\phi$} (W);
  \draw[->] (Vtimes) to node {$f$} (Votimes);
  \draw[->, dashed] (Votimes) to node {$\psi$} (W);
\end{tikzpicture}
$$

\end{document}

설명

$\KaTeX$はまだ図を描く機能が不足している。上に示されたような斜め線が含まれる図を描くには、TikZの助けが必要だ。上のコードはOverleafで問題なく実行される。