有人知道如何在 LaTeX 中获取这个符号吗?

有人知道如何在 LaTeX 中获取这个符号吗?

我在我的微分方程书中找到了它,但我似乎无法让它发挥作用。唯一看起来接近的是\mathscr{L}\mathcal{L}

在此处输入图片描述

答案1

书法/脚本数学字形旨在以手写形式出现,因此字体之间存在很大差异,就像现实生活中的手写一样。

补充其他答案和评论:

在 Unicode 中,拉普拉斯变换位于字母块(位于 U+2112),而粗体大写字母 L 版本位于数学字母数字符号块(位于 U+1D4DB),因此使用unicode-math包和系统字体,系统数学字体的样本如下所示:

cal L 简单而粗体

平均能量损失

\documentclass[12pt,varwidth,border=6pt]{standalone}
\usepackage{xcolor}
\pagecolor{red!3}
\usepackage{unicode-math}
%\usepackage{accents}
\setmathfont{XITS Math}[Colour=blue]
%\setmathfontface\mxits{XITS Math}
\setmathfontface\masana{Asana Math}
\setmathfontface\mdejavu{DejaVu Math}
\setmathfontface\mtgdeja{TeX Gyre DejaVu Math}
\setmathfontface\mpagella{TeX Gyre Pagella Math}
\setmathfontface\mbonum{TeX Gyre Bonum Math}
\setmathfontface\mschola{TeX Gyre Schola Math}
\setmathfontface\mtermes{TeX Gyre Termes Math}
\setmathfontface\mlatin{Latin Modern Math}
\setmathfontface\mcambria{Cambria Math}
\setmathfontface\mfira{Fira Math}
\setmathfontface\mfreeserif{FreeSerif}
\setmathfontface\mlibert{Libertinus Math}
\setmathfontface\mnoto{Noto Sans Symbols}
\setmathfontface\mqui{Quivira}
\setmathfontface\mstixtwo{STIX Two Math}
\setmathfontface\mstixgen{STIXGeneral}
\setmathfontface\msymbola{Symbola}
\setmathfontface\mgaramond{\detokenize{Garamond-Math}}
\newcommand\mfsize{\Huge}
\setmainfont{Noto Serif}


\newcommand\themassym{ℒ

答案2

不完全相同,但dutchcal具有比较接近的字形:

        \documentclass[12pt]{article}
        \usepackage[utf8]{inputenc}

        \usepackage{dutchcal}

        \begin{document}%
        $ \begin{array}[t]{c@{\quad}c}
         \small \verb+ \mathcal + & \small\verb+ \mathbcal + \\[6pt]
             \mathcal{L} & \mathbcal{L}
            \end{array} $

        \end{document} 

在此处输入图片描述

相关内容