我怎样才能制作大的数学符号?

我怎样才能制作大的数学符号?

我见过bigints大积分符号,但我想\mathcal{F}为傅里叶变换制作一个大符号。有什么好方法吗?

答案1

您可以使用\scaleboxgraphicx 包中的功能:

\documentclass[11pt,a4paper]{article}
\usepackage{graphicx}
\newcommand*{\bigF}{\scalebox{1.5}{\ensuremath{\mathcal{F}}}}

\begin{document}
 \[
\bigF (\omega)=\int f(x)e^{i t x}dt
\]
\end{document}

相关内容