updated math syntax

This commit is contained in:
2026-03-03 09:45:04 -06:00
parent 89688be822
commit 19e0cc3652
3 changed files with 4 additions and 2 deletions

View File

@@ -46,6 +46,7 @@ Theorem:
\] \]
## Lagrange Multipliers ## Lagrange Multipliers
-----------------------
Theorem: Theorem:
\[ \[
@@ -61,3 +62,4 @@ To find absolute extremas using lagrange multipliers:
- Determine \(x\) and \(y\) for each case of \(\lambda\). - 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. 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.

View File

@@ -13,6 +13,6 @@ title = 'My New Hugo Site'
enable = true enable = true
[markup.goldmark.extensions.passthrough.delimiters] [markup.goldmark.extensions.passthrough.delimiters]
block = [['\[', '\]'], ['$$', '$$']] block = [['\[', '\]'], ['$$', '$$']]
inline = [['\(', '\)']] inline = [['\(', '\)'], ['$', '$']]
[params] [params]
math = true math = true

View File

@@ -4,7 +4,7 @@
MathJax = { MathJax = {
tex: { tex: {
displayMath: [['\\[', '\\]'], ['$$', '$$']], // block displayMath: [['\\[', '\\]'], ['$$', '$$']], // block
inlineMath: [['\\(', '\\)']] // inline inlineMath: [['\\(', '\\)'], ['$', '$']] // inline
}, },
loader:{ loader:{
load: ['ui/safe'] load: ['ui/safe']