在 latex 中编写脚本 {}

在 latex 中编写脚本 {}

所以我正在写我的硕士论文,我想知道是否有办法\Laplace在 Latex 中编写自定义函数脚本。我想编写\Laplace(input)并将输出\Laplace \{ input \}作为我的 Latex 输出。我的函数现在定义如下

\newcommand{\Laplace}{\mathscr{L}}

.\Laplace \{ input \}我需要拉普拉斯

答案1

我们可以将其定义为,\newcommand\Laplace[1]{\ensuremath{\mathscr{L}\mleft\{#1\mright\}}}其中\mleft\{\mright\}将使括号随着更高的参数而适当缩放。

\documentclass{article}
\usepackage{amsmath}
\usepackage{mathrsfs}
\usepackage{mleftright}
\newcommand\Laplace[1]{\ensuremath{\mathscr{L}\mleft\{#1\mright\}}}
\begin{document}
\begin{align*}
\Laplace{\delta(t)}&=1\\
\Laplace{\frac{1}{(n-1)!}t^{n-1}e^{-at}}&=\frac{1}{(s+a)^n}\\
\end{align*}
\end{document}

在此处输入图片描述

定义逆拉普拉斯命令也许会很有用:\newcommand\InvLaplace[1]{\ensuremath{\mathscr{L}^{-1}\mleft\{#1\mright\}}}

编辑:感谢@Mico 的推荐\mleft\mright删除mleftright拉普拉斯算子和括号开头之间的多余空格。

相关内容