拉格朗日一阶条件

拉格朗日一阶条件

你好,有人能告诉我如何在 LaTeX 中写出拉格朗日的一阶条件吗:

在此处输入图片描述

答案1

你可能想要多次使用偏导数。最好编写一个宏:

 \documentclass{article}
\newcommand\der[2]{\frac{\partial{#1}}{\partial{#2}}}

\begin{document}
\[
\der{\mathcal{L}_t}{K_t}
\]
\end{document}

并得到期望的输出。

答案2

您拥有一个esdiff具有简化语法的包,用于排版所有顺序的衍生词,特别是交叉衍生词,并允许您选择斜体或直立\partial

\documentclass{article}
\usepackage{esdiff,mathtools}

\begin{document}

\begin{equation}
  \diffp{\mathcal{L}_t}{K_t}
\end{equation}

\end{document}

答案3

在此处输入图片描述

\documentclass{article}
    \usepackage{mathtools}

    \begin{document}
\begin{equation}
 \frac{\partial\mathcal{L}_t}{\partial K_t}
\end{equation} 
    \end{document}

相关内容