diff --git a/content/calculus/function-of-several-variables.md b/content/calculus/function-of-several-variables.md index 0fef490..8ca7eb0 100644 --- a/content/calculus/function-of-several-variables.md +++ b/content/calculus/function-of-several-variables.md @@ -46,6 +46,7 @@ Theorem: \] ## Lagrange Multipliers +----------------------- Theorem: \[ @@ -61,3 +62,4 @@ To find absolute extremas using lagrange multipliers: - Determine \(x\) and \(y\) for each case of \(\lambda\). 5. Evaluate the points \((x,y)\) you've found in \(f(x,y)\). The largest value is the absolute maximum. The smallest value is the absolute minimum. + diff --git a/hugo.toml b/hugo.toml index 73602ea..f83f117 100644 --- a/hugo.toml +++ b/hugo.toml @@ -13,6 +13,6 @@ title = 'My New Hugo Site' enable = true [markup.goldmark.extensions.passthrough.delimiters] block = [['\[', '\]'], ['$$', '$$']] - inline = [['\(', '\)']] + inline = [['\(', '\)'], ['$', '$']] [params] math = true diff --git a/layouts/_partials/math.html b/layouts/_partials/math.html index 52a7de3..2b20449 100644 --- a/layouts/_partials/math.html +++ b/layouts/_partials/math.html @@ -4,7 +4,7 @@ MathJax = { tex: { displayMath: [['\\[', '\\]'], ['$$', '$$']], // block - inlineMath: [['\\(', '\\)']] // inline + inlineMath: [['\\(', '\\)'], ['$', '$']] // inline }, loader:{ load: ['ui/safe']