输入 \le 或 \ge 符号,并可选用“等号”(在括号中)

输入 \le 或 \ge 符号,并可选用“等号”(在括号中)

我如何输入这种“不太平等或仅仅更少”的关系符号:

示例图片

在这个例子中,它意味着A < 0 is equivalent to every a_j < 0ANDA \le 0 is equivalent to every a_j \le 0

答案1

说实话,我会避免使用这种不清楚的符号。

\documentclass{article}
\usepackage{graphicx}

\makeatletter
\newcommand\opteq[1]{\mathrel{\mathpalette\opt@eq{#1}}}
\newcommand{\opt@eq}[2]{%
  \begingroup
  \sbox\z@{$#1#2$}%
  \sbox\tw@{\resizebox{!}{.5\ht\z@}{$\m@th#1($}}%
  \nonscript\hskip-\wd\tw@
  \mkern1mu
  \raisebox{-.35\ht\z@}[0pt][0pt]{\resizebox{!}{.5\ht\z@}{$\m@th#1($}}%
  \mkern-1mu
  {#2}%
  \mkern-1mu
  \raisebox{-.35\ht\z@}[0pt][0pt]{\resizebox{!}{.5\ht\z@}{$\m@th#1)$}}%
  \mkern1mu
  \nonscript\hskip-\wd\tw@
  \endgroup
}
\makeatother
\newcommand{\leoq}{\opteq{\leq}}
\newcommand{\geoq}{\opteq{\geq}}

\begin{document}

`$A < 0$' is equivalent to `$a_j < 0$, for all $j$'.

`$A \leoq 0$' is equivalent to `$a_j \leoq 0$, for all $j$'.

$A \geoq 0_{x\geoq y\leoq z}$

\end{document}

在此处输入图片描述

答案2

您可以使用\lhook\rhook中的组件\hookarrows

\def\lowhook#1{\lower.47em\hbox{$#1$}}
\def\LEorL{\mathrel{\lowhook\lhook\kern-.1em{\le}\kern-.08em\lowhook\rhook}}
\def\GEorG{\mathrel{\lowhook\lhook\kern-.08em{\ge}\kern-.1em\lowhook\rhook}}

$A \LEorL 0, A \GEorG 0$

\bye

相关内容