Advertisement
syvshc

Untitled

Jan 3rd, 2023
1,686
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 1.10 KB | None | 0 0
  1. \DeclareDocumentCommand\partialderivative{ s o m g g d() }
  2. { % Partial derivative
  3.     % s: star for \flatfrac flat derivative
  4.     % o: optional n for nth derivative
  5.     % m: mandatory (x in df/dx)
  6.     % g: optional (f in df/dx)
  7.     % g: optional (y in d^2f/dxdy)
  8.     % d: long-form d/dx(...)
  9.     \IfBooleanTF{#1}
  10.     {\let\fractype\flatfrac}
  11.     {\let\fractype\frac}
  12.  \IfNoValueTF{#4}
  13.    {
  14.      \IfNoValueTF{#6}
  15.      {\fractype{\partial \IfNoValueTF{#2}{}{^{#2}}}{\partial #3\IfNoValueTF{#2}{}{^{#2}}}}
  16.      {\fractype{\partial \IfNoValueTF{#2}{}{^{#2}}}{\partial #3\IfNoValueTF{#2}{}{^{#2}}} \argopen(#6\argclose)}
  17.    }
  18.    {
  19.      \IfNoValueTF{#5}
  20.      {
  21.        \fractype{\partial \IfNoValueTF{#2}{}{^{#2}} #3}{\partial #4\IfNoValueTF{#2}{}{^{#2}}}
  22.        \IfValueT{#6}{\argopen(#6\argclose)}
  23.      }
  24.      {
  25.        \fractype{\partial^2 #3}{\partial #4 \partial #5}
  26.        \IfValueT{#6}{\argopen(#6\argclose)}
  27.      }      
  28.    }
  29. }
  30. \DeclareDocumentCommand\pderivative{}{\partialderivative} % Shorthand for \partialderivative
  31. \DeclareDocumentCommand\pdv{}{\partialderivative} % Shorthand for \partialderivative
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement