用於偶數和奇數訊號的乳膠

用於偶數和奇數訊號的乳膠

我的文字使用不同的字體來表示給出函數偶數和奇數部分的高階函數。我如何在 Latex 中寫這些?

圖片取自課本

答案1

我假設您的問題是關於如何使用數學書法字母書寫“Ev”和“Od”。

對於大寫字母“E”和“O”,只需分別輸入\mathcal{E}\mathcal{O}

Computer Modern 是幾乎所有 TeX 安裝中的預設文字和數學字體系列,它不提供真正的書法小寫字母。事實上,很少有數學字體提供真正的小寫書法字母。下表有 11 種可能性;請注意,有必要將 LuaLaTeX 用於\usepackage{Unicode-math}和 各種\setmathfont指令。

在此輸入影像描述

% !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} 

相關內容