数式モードの新しい記号。グリフの下に「等号」の線を追加します。

数式モードの新しい記号。グリフの下に「等号」の線を追加します。

私は、数式モードでグリフの下に 1 本の線を表示する回避策を探していました。つまり、数学記号 と に似たものを\leq、それぞれ とと\subseteqは対照的に、別のグリフで実現したいのです。<\subset

accents私は、パッケージ (つまり、 )と\underaccentの組み合わせを使用していくつかの回避策を試しました。私の試みは次のとおりです。\underset\raisebox

\documentclass[11pt]{article}

\usepackage{accents}
\usepackage{amsmath}

\begin{document}

$\subseteq$ $\subset$ \raisebox{0.1em}{$\underaccent{\bar}{\in}$} \raisebox{0.1em}{$\underset{\bar{}}{\in}$} \raisebox{0.1em}{\underline{$\in$}}

\end{document}

\in具体的には、以下のような1本の線で囲まれたシンボルを探しています。

どなたか助けていただければ幸いです。ありがとう、ランス

編集: 申し訳ありません。最初の投稿では十分に具体的ではありませんでした。良い\subseteqこれは、類似のおよびと一致するという意味です\leq。つまり、以下の単一の等線は角が丸く、その長さは\in- グリフの幅と正確に一致します。これが私が達成したいことです。これが、私が最初の投稿で提供した試行されたシンボルの使用を控えた理由です。

答え1

鋭いカットがなければ、これは必要な機能を果たすようです。

\documentclass[11pt]{article}

\usepackage{amsmath}

\makeatletter
\newcommand\ineq{}% for safety
\DeclareRobustCommand{\ineq}{\mathrel{\mathpalette\rance@ineq\relax}}
\newcommand{\rance@ineq}[2]{%
  \vcenter{\hbox{%
    $\m@th#1\mkern1.5mu\underline{\mkern-1.5mu\in\mkern-1.5mu}\mkern1.5mu$%
  }}%
}
\makeatother

\begin{document}

$\subseteq$ $\subset$ $\ineq$ $\in$

$\ineq_{\ineq}$

\end{document}

ここに画像の説明を入力してください

答え2

accentsamsmath で定義を使用しているようですが、単にそれを after に移動する\usepackage{amsmath}だけで、コードが機能し、必要なシンボルが生成されます。

accentsただし、探していると思われる最後のシンボルについてはは必要ありません。\underline{\in}で十分です。

\documentclass[11pt]{article}


\usepackage{amsmath}

\begin{document}

you could simply use it like so $\underline{\in}$

\end{document}

答え3

ここに 2 つのバリエーションがありますstackengine:

\documentclass[11pt]{article}
\usepackage[utf8]{inputenc}
\usepackage{mathtools}

\usepackage{accents}
\usepackage{stackengine}
\newcommand\ineq{\stackMath\mathrel{\stackinset{c}{0.03em}{c}{-1.5ex}{\mathord{\relbar}}{\in}}}
\newcommand\varineq{\stackMath\mathrel{\stackinset{c}{0.03em}{c}{-1.57ex}{\mathord{\relbar}}{\raisebox{0.2ex}{$ \in $}}}}


\begin{document}

 $A\ineq B\subseteq C$

 $A\varineq B\subseteq C$

\end{document} 

ここに画像の説明を入力してください

関連情報