答案1
答案2
答案3
TikZ
具有-<
内置箭头。要获得与 LaTeX 相同的大小和形状,箭头\to
需要arrows.meta
库。要获得与箭头相同的长度,\to
需要进行一些调整。
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{arrows.meta}
\newcommand{\from}{\mathrel{\tikz[>={To}, line cap=round, anchor=base] \draw[shorten <=.55pt,-<] (0,0) -- (3.375mm,0);}}
\begin{document}
$a\to b$
$a\from b$
\end{document}
答案4
使用tikz-cd
。
\documentclass[a4paper,12pt]{article}
\usepackage{tikz-cd}
\begin{document}
If you want to create \begin{tikzcd}
a & [-1.4em] \arrow[l, no head, tail] b
\end{tikzcd} a text
\end{document}
\documentclass[a4paper,12pt]{article}
\usepackage{tikz-cd}
\begin{document}
\begin{tikzcd}
a \arrow[r] &[-1.4em] b
\end{tikzcd}
\end{document}