我正在我的一篇新论文中定义一种新关系。我想使用以下符号,因为它传达了我的关系的含义。LaTex 中有这样的符号吗?它与 \leq 和 \preceq 非常相似。如果没有,是否有办法通过破解 LaTeX 的后端来添加新符号。
答案1
这是一次尝试(比第一次更好)。
\documentclass{article}
\usepackage{graphicx}
\newcommand{\xle}{%
\mathrel{\vphantom{\le}%
\smash{\vcenter{\hbox{\oalign{%
\noalign{\kern.2ex}
\rotatebox[origin=l]{25}{$\scriptstyle\to$}\cr
\noalign{\kern-.95ex}
\kern-.03em
\rotatebox[origin=l]{-25}{$\scriptstyle\to$}\cr
\noalign{\kern.35ex}
\smash{$-$}\cr
}}}}%
}
}
\begin{document}
\fbox{$A\xle B$}\fbox{$A \le C$}
\end{document}
答案2
您可以在 TikZ 中绘制它并调整其形状:
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{arrows}
\def\newrel{%
\ensuremath{%
\mathrel{%
\begin{tikzpicture}[baseline=-0.8ex]
\draw [line width=0.06ex, line join=round, stealth'-stealth']
(1.5ex,0.67ex) -- (0, 0) -- (1.5ex, -0.67ex);
\draw [line width=0.06ex, line cap=round]
(0.03ex, -1ex) -- (1.47ex, -1ex);
\end{tikzpicture}%
}%
}%
}
\begin{document}
normal\newrel text, $math \newrel mode$
\Large Large\newrel text, $math \newrel mode$
\end{document}
答案3
这是一个开始:
\newcommand\ltarreq{\mathrel{\raise 2pt\rlap{\rotatebox{20}{$\scriptstyle\rightarrow$}}%
\raise 2.5pt\rlap{\rotatebox{-20}{$\scriptstyle\rightarrow$}}%
\lower 2pt\hbox{$-$}}}
它有点丑,但是它向你展示了如何做你想做的事情(几乎)。