大文字のスクリプト体を入力するには、mathrsfs パッケージを使う。
例
\usepackage{mathrsfs}
\begin{document}
$$\mathscr{ABCDEFGHIJKLMN}$$
$$\mathscr{OPQRSTUVWXYZ}$$
\end{document}
結果

雑記
投稿日:
大文字のスクリプト体を入力するには、mathrsfs パッケージを使う。
\usepackage{mathrsfs}
\begin{document}
$$\mathscr{ABCDEFGHIJKLMN}$$
$$\mathscr{OPQRSTUVWXYZ}$$
\end{document}

執筆者:seyanen
関連記事
「電子」や「陰イオン」を表す「丸付きマイナス記号」は、次のようにして入力する。 例 $\ominus$ 結果 美味しんぼ(70)【電子書籍】[ 雁屋哲 ]価格:605円(税別、送料別)(2020/12 …
amsmath パッケージを使っておき、\begin{equation} と \end{equation} の数式中で \tag を使うと式番号を自分で指定したとおりに表示できる。(式番号の中に日本語 …
tex の equation で式番号を表示しないようにする方法
\nonumber を使うと式番号を表示しないようにできる。 例 \usepackage{amsmath} \begin{document} \begin{equation} \nonumber y …
2023/01/18
matplotlib のグラフ作成と gnuplot との対応 比較
2022/10/14
pythonで配列(リスト)の、ある要素がわかっているときにその次の要素を取得する方法。