updated math syntax
This commit is contained in:
@@ -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.
|
||||
|
||||
|
||||
|
||||
@@ -13,6 +13,6 @@ title = 'My New Hugo Site'
|
||||
enable = true
|
||||
[markup.goldmark.extensions.passthrough.delimiters]
|
||||
block = [['\[', '\]'], ['$$', '$$']]
|
||||
inline = [['\(', '\)']]
|
||||
inline = [['\(', '\)'], ['$', '$']]
|
||||
[params]
|
||||
math = true
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
MathJax = {
|
||||
tex: {
|
||||
displayMath: [['\\[', '\\]'], ['$$', '$$']], // block
|
||||
inlineMath: [['\\(', '\\)']] // inline
|
||||
inlineMath: [['\\(', '\\)'], ['$', '$']] // inline
|
||||
},
|
||||
loader:{
|
||||
load: ['ui/safe']
|
||||
|
||||
Reference in New Issue
Block a user