我想创建一个$\leadsto$
带有更大箭头的“\leadsto”()符号的变体,例如像的箭头那样$\Leftarrow$
。
我尝试查看完整的 Latex 符号列表,但找不到任何接近我想要的符号。
有人知道如何制作这种符号吗?
更新 1:
我的 MWE 如下:
% pdflatex
\documentclass[]{article}
\usepackage{latexsym}
\begin{document}
$\leadsto \Rightarrow \hookrightarrow$
\end{document}
我试图让箭头尖端$\leadsto$
像那样大$\Rightarrow \hookrightarrow$
,但尚未做到。
我还有一个问题是:Latex 是否提供单独的箭头符号?
答案1
好吧,这些都是字体决定,所以首先,我会决定你要使用哪种字体。以下是一些示例:
% arara: lualatex
\documentclass{article}
\usepackage{unicode-math}
\renewcommand{\leadsto}{\rightsquigarrow}
\begin{document}
\setmathfont{Latin Modern Math}% this is default
$\leadsto\rightarrow\Rightarrow$
\setmathfont{XITS Math}
$\leadsto\rightarrow\Rightarrow$
\setmathfont{STIX Math}
$\leadsto\rightarrow\Rightarrow$
\setmathfont{Cambria Math}
$\leadsto\rightarrow\Rightarrow$
\setmathfont{Asana Math}
$\leadsto\rightarrow\Rightarrow$
\end{document}
也许有一些东西适合你,你不必设计自己的符号。
但为了真正帮助您,您必须向我们提供显示您设置的 MWE。我猜它对您来说应该是这样的:
% arara: pdflatex
\documentclass{article}
\usepackage{amssymb}
\begin{document}
$\leadsto\rightsquigarrow\rightarrow\Rightarrow$
\end{document}
$\leadsto$
包裹里也有,latexsym
但我担心那不是你想要的。
您还可以检查http://www.fileformat.info/info/unicode/font/fontlist.htm?text=%E2%87%9D+-+Unicode+Character+%27RIGHTWARDS+SQUIGGLE+ARROW%27+%28U%2B21DD%29为了查看,您的系统上哪些字体提供了这个符号。