... | @@ -29,23 +29,25 @@ When adding mathematical formulas to your documentation, please use one of the f |
... | @@ -29,23 +29,25 @@ When adding mathematical formulas to your documentation, please use one of the f |
|
1. **Plain Text**: For simple formulas, you can write them directly in plain text using basic symbols, although using LaTex is preferred.
|
|
1. **Plain Text**: For simple formulas, you can write them directly in plain text using basic symbols, although using LaTex is preferred.
|
|
|
|
|
|
|
|
|
|
2. **LaTeX**: To render LaTeX formulas on the page, include the following code snippet at the beginning of your file:
|
|
2. **LaTeX**: Use `$` for inline LaTeX and `$$` for block LaTeX formulas. The use of additional script tags is not required.
|
|
|
|
|
|
```html
|
|
When including formulas, ensure each symbol is explained. For example:
|
|
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
|
|
|
|
<script type="text/javascript" id="MathJax-script" async
|
|
|
|
src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js">
|
|
|
|
</script>
|
|
|
|
|
|
|
|
```
|
|
- **Inline formula**: $E = mc^2$, where:
|
|
|
|
|
|
When including formulas, ensure each symbol is explained. For example
|
|
|
|
|
|
|
|
$E = mc^2$, where:
|
|
|
|
- $E$ is Energy
|
|
- $E$ is Energy
|
|
- $m$ is Mass
|
|
- $m$ is Mass
|
|
- $c$ is the Speed of Light
|
|
- $c$ is the Speed of Light
|
|
|
|
|
|
|
|
- **Block formula**:
|
|
|
|
$$
|
|
|
|
SST = \sum (y_i - \bar{y})^2
|
|
|
|
$$
|
|
|
|
Where:
|
|
|
|
- $SST$ is the Total Sum of Squares
|
|
|
|
- $y_i$ is the observed value
|
|
|
|
- $\bar{y}$ is the mean of the outcome variable
|
|
|
|
|
|
|
|
|
|
## Visualization Guidelines
|
|
## Visualization Guidelines
|
|
|
|
|
|
To ensure uniformity, all visualizations should use the following font and color scheme:
|
|
To ensure uniformity, all visualizations should use the following font and color scheme:
|
... | | ... | |