ニアリーイコール記号を入力するには、\fallingdotseq または、\rigingdotseq を使う。
例
\usepackage{amssymb}
\begin{document}
$$x \fallingdotseq y$$
$$a \risingdotseq b$$
\end{document}
結果

雑記
投稿日:
ニアリーイコール記号を入力するには、\fallingdotseq または、\rigingdotseq を使う。
\usepackage{amssymb}
\begin{document}
$$x \fallingdotseq y$$
$$a \risingdotseq b$$
\end{document}

執筆者:seyanen
関連記事
ゼロの成分が多いブロック行列を tex で出力する。 \usepackage{amsmath} を使う。 例 \usepackage{amsmath} \begin{document} $$ \lef …
tex で、ページ全体の体裁をそのままにして 分母と分子の間の距離を広げたり狭めたりするには、\raisebox を使う。 例 通常$$ a=\frac{\raisebox{0ex}[0ex][0ex …
2023/01/18
matplotlib のグラフ作成と gnuplot との対応 比較
2022/10/14
pythonで配列(リスト)の、ある要素がわかっているときにその次の要素を取得する方法。