同等の記号ivid = “f99667b6d3″のように3つのストロークを持つ「ほぼ同等」の記号を書きたい>
(≡)、しかしストロークはおおよその記号$$\approx$$
(≈)
LaTeXでそれを書く方法を知っていますか?
コメント
またはstix
パッケージ。
回答
ここでは、スタックを使用して3つの\sim
を垂直に設定します。 scalerel
パッケージを使用すると、呼び出しの数学スタイルを保持し、スタッキングギャップを.5pt
と1.5スケーリングの組み合わせとして定義できます。 -to-local-math-styleポイント、1.5\LMpt
として指定。
\documentclass{article} \usepackage{scalerel,stackengine} \def\apeqA{\SavedStyle\sim} \def\apeq{\setstackgap{L}{\dimexpr.5pt+1.5\LMpt}\ensurestackMath{% \ThisStyle{\mathrel{\Centerstack{{\apeqA} {\apeqA} {\apeqA}}}}}} \begin{document} $A \apeq B \equiv C$\par $\scriptstyle A \apeq B \equiv C$\par $\scriptscriptstyle A \apeq B \equiv C$\par \end{document}
回答
stix
パッケージ(またはunicode-math
)の場合、シンボルは\approxident
として使用できます。
ただし、注意してください。 pdfLaTeXドキュメントの\usepackage{stix}
は、すべての数学記号を変更します。また、STIXフォントから記号のみをインポートすると、「記号と互換性がない」記号が表示される場合があります。
記号の包括的なリストに解決策があります:
\newcommand*{\approxident}{% \mathrel{\vcenter{\offinterlineskip \hbox{$\sim$}\vskip-.35ex\hbox{$\sim$}\vskip-.35ex\hbox{$\sim$}}}}
添え字に記号が必要ない場合は、これで十分です。
回答
シンボル\approxident
が使用できない場合は、gregの回答を参照してください。次の定義では、を使用してシンボルを提供しています。 \sim
は、\equiv
シンボルのギャップに近いギャップで3回移動しました(線の太さの問題のため、多かれ少なかれ)。
記号はさまざまな数学スタイルのバージョンで機能し、境界ボックスの下枠が修正されて正しい境界ボックスが取得されます。
\documentclass{article} \makeatletter \providecommand*{\approxident}{% \mathrel{% \mathpalette\@approxident\sim }% } \newcommand*{\@approxident}[2]{% % #1: math style % #2: \sim % Math axis in \ht0 \sbox0{$#1\vcenter{}$}% % Gap stored in \dimen2, approximated by the half height % of \equiv, which is centered around the math axis. \sbox2{$\m@th#1\equiv$}% \dimen2=\dimexpr\ht2 - \ht0\relax % The wave symbol of #2 (\sim) is stored in box 4 \sbox4{$\m@th#1\sim$}% % and the half height is calculated in \dimen4 \dimen4=\dimexpr\ht4 - \ht0\relax % Then the movement for the gap in the following \vcenter % is calculated in \dimen6 \dimen0=\dimexpr % go back -\ht4 - \dp4 % % add gap + \dimen2 % \relax \vcenter{\offinterlineskip \copy4 % \kern\dimen0 % \copy4 % \kern\dimen0 % \copy4 % % Correction for the lower bounding box border, if the % wave symbol does not extend to the base line \ifdim\dp4=\z@ \kern\dimexpr -\ht0 + \dimen4\relax \fi }% } \makeatother \begin{document} \[ \setlength{\fboxsep}{0pt} \setlength{\fboxrule}{.1pt} \fbox{$\approxident$}\; \equiv\approxident\; \scriptstyle\equiv\approxident\; \scriptscriptstyle\equiv\approxident \] \end{document}
\approxident
のようですe02e36ad71 “>