LaTeX2e 2020-02-02 にすると、emathのsikipicture環境内で \{ ... \}を使用すると、次のエラーになります。LaTeX2e の以前の版ではタイプセットできます。
この場合、どのような対処がよいですか?
%test.tex---------------------------------------------------------------------------------------
\documentclass[a4paper]{jarticle}
\usepackage{graphicx,color}
\usepackage{emathPsiki}
\begin{document}
$\begin{sikipicture}{\{ A \}}
\Kuromaru<nuriiro=red>{\O}
\end{sikipicture}$
\end{document}
%test.log---------------------------------------------------------------------------------------
! Extra \else.
\@EMedefappend ...f #2{\the \emath@toks@ #3}\else
\protected@edef #2{\the \e...
l.7 $\begin{sikipicture}{\{ A \}}
?
どうやら LaTeX2e 2020-02-02 では sikipicture の中で
\{ や \} を単独では使えなくなっているようです。
とりあえずの回避は,「\left や \right や \bigl や \bigr などを前置する」ですかね。
%=====
\documentclass[a4paper]{jarticle}
\usepackage{graphicx,color}
\usepackage{emathPsiki}
\begin{document}
$\begin{sikipicture}{\left\{ A \right\}}
\Kuromaru<nuriiro=red>{\O}
\end{sikipicture}$
\end{document}
%=====
emath 掲示板の No.13951 で
* LaTeX2e 2019-10-01 において
* emath の sikipicture 環境内で delimiter に \bigl や \bigr を前置するとエラー
というのが報告されていますが,今度はそれが直った代わりに
* LaTeX2e 2020-02-02 において
* emath の sikipicture 環境内で単独の delimiter がエラー
なのですね…。うーん。
\{ や \} を単独では使えなくなっているようです。
とりあえずの回避は,「\left や \right や \bigl や \bigr などを前置する」ですかね。
%=====
\documentclass[a4paper]{jarticle}
\usepackage{graphicx,color}
\usepackage{emathPsiki}
\begin{document}
$\begin{sikipicture}{\left\{ A \right\}}
\Kuromaru<nuriiro=red>{\O}
\end{sikipicture}$
\end{document}
%=====
emath 掲示板の No.13951 で
* LaTeX2e 2019-10-01 において
* emath の sikipicture 環境内で delimiter に \bigl や \bigr を前置するとエラー
というのが報告されていますが,今度はそれが直った代わりに
* LaTeX2e 2020-02-02 において
* emath の sikipicture 環境内で単独の delimiter がエラー
なのですね…。うーん。