diff options
| author | yum <yum.food.vr@gmail.com> | 2025-09-25 01:06:12 +0000 |
|---|---|---|
| committer | yum <yum.food.vr@gmail.com> | 2025-09-25 01:06:12 +0000 |
| commit | ab3e61765a334e43a9528a0873951f2343d5609c (patch) | |
| tree | 07e1de0e3cb4358724e6ae2a3e64d25c89e844b9 | |
| parent | cd43577f657644547a5789d6d94cd9d733560e5c (diff) | |
add stuff
| -rw-r--r-- | index.md | 7 | ||||
| -rwxr-xr-x | make_html | 8 |
2 files changed, 10 insertions, 5 deletions
@@ -100,7 +100,9 @@ derivations of each derivative: \frac{\partial \omega}{\partial k} &= \frac{1}{2} [gk \tanh kh]^{-\frac{1}{2}} [g \tanh (kh) + gkh(1 - \tanh ^2 kh] \\ &= \frac{g(\tanh kh + kh(1 - \tanh ^2 kh))}{2 \sqrt{gk \tanh kh}} \\ &= \frac{g \tanh kh + gkh (1 - \tanh^2 kh)}{2 \sqrt{gk \tanh kh}} \\ - &= \frac{1}{2} [\sqrt{g \tanh kh} + \frac {gkh(1 - \tanh^2 kh)}{\sqrt{gk \tanh kh}}] + &= \frac{1}{2} [\sqrt{g \tanh kh} + \frac {gkh(1 - \tanh^2 kh)}{\sqrt{gk \tanh kh}}] \\ + &= \frac {g \tanh kh + gkh(1 - \tanh^2 kh)}{2\sqrt{gk \tanh kh}} \\ + &= \frac {g (\tanh kh + kh \operatorname{sech}^2 kh)}{2\sqrt{gk \tanh kh}} \end{align*} $$ @@ -146,7 +148,8 @@ derivations of each derivative: &= \frac{\partial}{\partial k} (\tanh kh)^{\frac{1}{2}} \\ &= \frac{1}{2} (\tanh kh)^{-\frac{1}{2}} \frac{\partial}{\partial k} \tanh kh \\ &= \frac{1}{2} (\tanh kh)^{-\frac{1}{2}} h(1 - \tanh^2 kh) \\ - &= h \frac{1 - \tanh^2 kh}{2 \sqrt{\tanh kh}} + &= h \frac{1 - \tanh^2 kh}{2 \sqrt{\tanh kh}} \\ + &= h \frac{\operatorname{sech}^2 kh}{2 \sqrt{\tanh kh}} \end{align*} $$ @@ -13,12 +13,14 @@ mkdir "$OUTPUT_DIR" pandoc \ --mathml \ --template template.html \ - --split-level 2 \ --toc \ - -o "$OUTPUT_DIR/index.html" \ + -t chunkedhtml \ + --split-level 1 \ + --chunk-template "%i.html" \ + -o "$OUTPUT_DIR/site.zip" \ "$MARKDOWN_IN" -mv -f "$OUTPUT_DIR"/* /var/www/html/ +unzip -o "$OUTPUT_DIR/site.zip" -d /var/www/html/ gzip -k -9 -f js/*.js gzip -k -9 -f js/*.css cp -r js /var/www/html/ |
