Skip to content

Commit

Permalink
chapter 3
Browse files Browse the repository at this point in the history
  • Loading branch information
lmaowisc committed Feb 5, 2025
1 parent bdbcdfb commit 1a71ca9
Show file tree
Hide file tree
Showing 7 changed files with 170 additions and 60 deletions.
2 changes: 1 addition & 1 deletion _quarto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ website:
contents:
- chapter1.qmd
- chapter2.qmd
# - chapter3.qmd
- chapter3.qmd
# - chapter4.qmd
# - chapter5.qmd
# - chapter6.qmd
Expand Down
36 changes: 36 additions & 0 deletions docs/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,35 @@
}
}</script>

<script src="https://cdnjs.cloudflare.com/polyfill/v3/polyfill.min.js?features=es6"></script>
<script src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-chtml-full.js" type="text/javascript"></script>

<script type="text/javascript">
const typesetMath = (el) => {
if (window.MathJax) {
// MathJax Typeset
window.MathJax.typeset([el]);
} else if (window.katex) {
// KaTeX Render
var mathElements = el.getElementsByClassName("math");
var macros = [];
for (var i = 0; i < mathElements.length; i++) {
var texText = mathElements[i].firstChild;
if (mathElements[i].tagName == "SPAN") {
window.katex.render(texText.data, mathElements[i], {
displayMode: mathElements[i].classList.contains('display'),
throwOnError: false,
macros: macros,
fleqn: false
});
}
}
}
}
window.Quarto = {
typesetMath
};
</script>

<link rel="stylesheet" href="styles.css">
<meta property="og:title" content="Syllabus – BMI/STAT 741 Course Study Site">
Expand Down Expand Up @@ -158,6 +187,12 @@
<a href="./chapter2.html" class="sidebar-item-text sidebar-link">
<span class="menu-text">Chapter 2 - Mathematical Foundations</span></a>
</div>
</li>
<li class="sidebar-item">
<div class="sidebar-item-container">
<a href="./chapter3.html" class="sidebar-item-text sidebar-link">
<span class="menu-text">Chapter 3 - Nonparametric Estimation and Testing</span></a>
</div>
</li>
</ul>
</li>
Expand Down Expand Up @@ -517,6 +552,7 @@ <h3 class="anchored" data-anchor-id="grading">Grading</h3>
</ul>



</section>

</main> <!-- /main -->
Expand Down
Loading

0 comments on commit 1a71ca9

Please sign in to comment.