偶数信号と奇数信号用のラテックス

偶数信号と奇数信号用のラテックス

私のテキストでは、関数の偶数部分と奇数部分を与える高階関数を表すために別のフォントを使用しています。これらを LaTeX で記述するにはどうすればよいでしょうか?

教科書からの写真

答え1

あなたの質問は、数学カリグラフィの文字を使用して「Ev」と「Od」をどのように書くかについてのものだと思います。

大文字の「E」と「O」の場合は、それぞれ\mathcal{E}と と入力します\mathcal{O}

事実上すべての TeX インストールでデフォルトのテキストおよび数学フォント ファミリである Computer Modern は、真のカリグラフィ小文字を提供しません。実際、真のカリグラフィ小文字を提供する数学フォントはほとんどありません。次の表には 11 の可能性があります。 および\usepackage{Unicode-math}さまざまな\setmathfontディレクティブには LuaLaTeX を使用する必要があることに注意してください。

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

% !TEX TS-program = lualatex
\documentclass{article}
\newcommand\test{$\mathcal{Ev}\{x(t)\} \quad \mathcal{Od}\{x(t)\}$}

\usepackage{unicode-math}
%% Load various math fonts:
\setmathfont{Latin Modern Math}[version=LM]
\setmathfont{Stix Math}[version=Stix]
\setmathfont{XITS Math}[version=XITS]
\setmathfont{Stix Two Math}[version=Stix2]
\setmathfont{Cambria Math}[version=Cambria]
\setmathfont{Asana Math}[version=Asana]
\setmathfont{Asana Math}[Alternate,version=AsanaAlt]
\setmathfont{TeX Gyre Pagella Math}[version=Pagella]
\setmathfont{TeX Gyre Termes Math}[version=Termes]
\setmathfont{TeX Gyre DejaVu Math}[version=DejaVu]
\setmathfont{Libertinus Math}[version=Libertinus]

\begin{document}
\renewcommand\arraystretch{1.5}
\begin{tabular}{@{}ll@{}}
Latin Modern   & \mathversion{LM}      \test \\
Stix           & \mathversion{Stix}    \test \\
XITS           & \mathversion{XITS}    \test \\
Stix Two       & \mathversion{Stix2}   \test \\
Cambria        & \mathversion{Cambria} \test \\
Asana          & \mathversion{Asana}   \test \\
Asana Alt      & \mathversion{AsanaAlt}\test \\
Pagella        & \mathversion{Pagella} \test \\
Termes         & \mathversion{Termes}  \test \\
DejaVu         & \mathversion{DejaVu}  \test \\
Libertinus Math& \mathversion{Libertinus} \test
\end{tabular}
\end{document} 

関連情報