答案1
需要 LuaLaTeX (或 XeLaTeX):
\documentclass{article}
\usepackage{unicode-math}
\begin{document}
$\Searrow$
\end{document}
您也可以从其他字体加载符号,例如txfonts
。
\documentclass{article}
\DeclareSymbolFont{symbolsC}{U}{txsyc}{m}{n}
\DeclareMathSymbol{\Searrow}{\mathrel}{symbolsC}{117}
\begin{document}
$\Searrow$
\end{document}
答案2
newtxmath
和newpxmath
数学字体包提供了称为 、 和 的宏。这些\Nearrow
箭头( a) 占用相同的\Nwarrow
\Swarrow
\Searrow
宽度分别为和\Rightarrow
,\Leftarrow
且 (b) 是长的作为\Rightarrow
和\Leftarrow
。
如果您不想使用newtxmath
和newpxmath
数学字体包(比如,因为您不喜欢或不允许使用 Times Roman 和 Palatino 字体),或者发现、和 产生的箭头\Nearrow
看起来\Nwarrow
太长,则可以直接(通过使用\Swarrow
包的宏)创建有角度的双击箭头,其 (a) 占用与 相同的宽度并且(b) 一样长。\Searrow
\rotatebox
graphicx
\Rightarrow
\Rightarrow
\documentclass{article}
\usepackage{newtxmath} % or: \usepackage{newpxmath}
\usepackage{graphicx} % for '\rotatebox' macro
\newcommand\myrot[1]{\mathrel{\rotatebox[origin=c]{#1}{$\Rightarrow$}}}
% create four new angled double-struck arrows
\newcommand\NEarrow{\myrot{45}}
\newcommand\NWarrow{\myrot{135}}
\newcommand\SWarrow{\myrot{-135}}
\newcommand\SEarrow{\myrot{-45}}
\begin{document}
\[
\begin{array}{c}
a \Rightarrow b\\ \hline
a \Nearrow b\\
a \Nwarrow b\\
a \Swarrow b\\
a \Searrow b\\ \hline
a \NEarrow b\\
a \NWarrow b\\
a \SWarrow b\\
a \SEarrow b
\end{array}
\]
\end{document}