Skip to content

Commit

Permalink
Deploying to gh-pages from @ a1303f4 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
rickecon committed Oct 16, 2023
1 parent e54fffa commit 6f932be
Show file tree
Hide file tree
Showing 36 changed files with 1,986 additions and 64 deletions.
6 changes: 3 additions & 3 deletions CompMethods_references.html
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
<link rel="shortcut icon" href="_static/favicon.ico"/>
<link rel="index" title="Index" href="genindex.html" />
<link rel="search" title="Search" href="search.html" />
<link rel="prev" title="Appendix" href="appendix/intro.html" />
<link rel="prev" title="Appendix" href="appendix/appendix.html" />
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<meta name="docsearch:language" content="en"/>
</head>
Expand Down Expand Up @@ -219,7 +219,7 @@
<p aria-level="2" class="caption" role="heading"><span class="caption-text">Appendix</span></p>
<ul class="nav bd-sidenav">
<li class="toctree-l1"><a class="reference internal" href="appendix/glossary.html">Glossary</a></li>
<li class="toctree-l1"><a class="reference internal" href="appendix/intro.html">Appendix</a></li>
<li class="toctree-l1"><a class="reference internal" href="appendix/appendix.html">Appendix</a></li>
</ul>
<p aria-level="2" class="caption" role="heading"><span class="caption-text">References</span></p>
<ul class="current nav bd-sidenav">
Expand Down Expand Up @@ -537,7 +537,7 @@ <h1>References<a class="headerlink" href="#references" title="Permalink to this
<!-- Previous / next buttons -->
<div class="prev-next-area">
<a class="left-prev"
href="appendix/intro.html"
href="appendix/appendix.html"
title="previous page">
<i class="fa-solid fa-angle-left"></i>
<div class="prev-next-info">
Expand Down
Binary file added _images/Econ381_crit1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _images/Econ381scores_sim1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _images/Econ381scores_smm1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _images/Econ381scores_truncnorm.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed _images/MLEplots.png
Binary file not shown.
23 changes: 23 additions & 0 deletions _sources/appendix/appendix.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
(Chap_Appendix)=
# Appendix

Put Appendix intro here.

(SecAppendixTruncNormal)=
## Truncated normal distribution

The truncated normal distribution with parameters $\mu$ and $\sigma$ and lower-bound cutoff $c_{lb}$ and upper-bound cutoff $c_{ub}$ is simply the normal distribution of values of the random variable $x$ defined only on the interval $x\in[c_{lb}, c_{ub}]$ rather than on the full real line. And the probability distribution function values are upweighted by the probability (less than one) under the normal distribution on the interval $[c_{lb}, c_{ub}]$.
```{math}
:label: EqAppendix_TruncNorm
\text{truncated normal:}\quad &f(x|\mu,\sigma,c_{lb},c_{ub}) = \frac{\phi(x|\mu,\sigma)}{\Phi(c_{ub}|\mu,\sigma) - \Phi(c_{ub}|\mu,\sigma)} \\
&\text{where}\quad \phi(x|\mu,\sigma) \equiv \frac{1}{\sqrt{2\pi\sigma^2}}e^{-\frac{x - \mu}{2\sigma^2}} \\
&\text{and}\quad \Phi(x|\mu,\sigma) \equiv \int_{-\infty}^x\phi(x|\mu,\sigma) dx
```

The function $\phi(x|\mu,\sigma)$ is the probability distribution function of the normal distribution with mean $\mu$ and variance $\sigma^2$. And the function $\Phi(x|\mu,\sigma)$ is the cummulative distribution function of the normal distribution with mean $\mu$ and variance $\sigma^2$.


(SecAppendixFootnotes)=
## Footnotes

The footnotes from this appendix.
10 changes: 0 additions & 10 deletions _sources/appendix/intro.md

This file was deleted.

881 changes: 877 additions & 4 deletions _sources/struct_est/SMM.md

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions _sources/struct_est/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,4 +98,6 @@ A good introduction to structural estimation is to compare it to other types of
(SecStructEstIntroFootnotes)=
## Footnotes

The footnotes from this chapter.

[^MACSScourses]: I taught a course, entitled Structural Estimation, to graduate students, with a few advanced undergradutates, in the Masters in Computational Social Science program at the University of Chicago four times from 2017 to 2020. The content of each course is in the following GitHub repositories, with syllabi, lecture slides, Jupyter notebooks, tests, and problem sets: [Winter 2017](https://github.com/rickecon/StructEst_W17), [Winter 2018](https://github.com/rickecon/StructEst_W18), [Winter 2019](https://github.com/rickecon/StructEst_W19), and [Winter 2020](https://github.com/rickecon/StructEst_W20).
25 changes: 19 additions & 6 deletions appendix/intro.html → appendix/appendix.html
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,9 @@
const thebe_selector_output = ".output, .cell_output"
</script>
<script async="async" src="../_static/sphinx-thebe.js"></script>
<script>DOCUMENTATION_OPTIONS.pagename = 'appendix/intro';</script>
<script>window.MathJax = {"options": {"processHtmlClass": "tex2jax_process|mathjax_process|math|output_area"}}</script>
<script defer="defer" src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
<script>DOCUMENTATION_OPTIONS.pagename = 'appendix/appendix';</script>
<link rel="shortcut icon" href="../_static/favicon.ico"/>
<link rel="index" title="Index" href="../genindex.html" />
<link rel="search" title="Search" href="../search.html" />
Expand Down Expand Up @@ -296,7 +298,7 @@



<li><a href="https://github.com/OpenSourceEcon/CompMethods/issues/new?title=Issue%20on%20page%20%2Fappendix/intro.html&body=Your%20issue%20content%20here." target="_blank"
<li><a href="https://github.com/OpenSourceEcon/CompMethods/issues/new?title=Issue%20on%20page%20%2Fappendix/appendix.html&body=Your%20issue%20content%20here." target="_blank"
class="btn btn-sm btn-source-issues-button dropdown-item"
title="Open an issue"
data-bs-placement="left" data-bs-toggle="tooltip"
Expand Down Expand Up @@ -326,7 +328,7 @@



<li><a href="../_sources/appendix/intro.md" target="_blank"
<li><a href="../_sources/appendix/appendix.md" target="_blank"
class="btn btn-sm btn-download-source-button dropdown-item"
title="Download source file"
data-bs-placement="left" data-bs-toggle="tooltip"
Expand Down Expand Up @@ -418,6 +420,7 @@ <h2> Contents </h2>
</div>
<nav aria-label="Page">
<ul class="visible nav section-nav flex-column">
<li class="toc-h2 nav-item toc-entry"><a class="reference internal nav-link" href="#truncated-normal-distribution">Truncated normal distribution</a></li>
<li class="toc-h2 nav-item toc-entry"><a class="reference internal nav-link" href="#footnotes">Footnotes</a></li>
</ul>
</nav>
Expand All @@ -431,11 +434,20 @@ <h2> Contents </h2>
<article class="bd-article" role="main">

<section class="tex2jax_ignore mathjax_ignore" id="appendix">
<span id="chap-appendixintro"></span><h1>Appendix<a class="headerlink" href="#appendix" title="Permalink to this heading">#</a></h1>
<span id="chap-appendix"></span><h1>Appendix<a class="headerlink" href="#appendix" title="Permalink to this heading">#</a></h1>
<p>Put Appendix intro here.</p>
<section id="truncated-normal-distribution">
<span id="secappendixtruncnormal"></span><h2>Truncated normal distribution<a class="headerlink" href="#truncated-normal-distribution" title="Permalink to this heading">#</a></h2>
<p>The truncated normal distribution with parameters <span class="math notranslate nohighlight">\(\mu\)</span> and <span class="math notranslate nohighlight">\(\sigma\)</span> and lower-bound cutoff <span class="math notranslate nohighlight">\(c_{lb}\)</span> and upper-bound cutoff <span class="math notranslate nohighlight">\(c_{ub}\)</span> is simply the normal distribution of values of the random variable <span class="math notranslate nohighlight">\(x\)</span> defined only on the interval <span class="math notranslate nohighlight">\(x\in[c_{lb}, c_{ub}]\)</span> rather than on the full real line. And the probability distribution function values are upweighted by the probability (less than one) under the normal distribution on the interval <span class="math notranslate nohighlight">\([c_{lb}, c_{ub}]\)</span>.</p>
<div class="math notranslate nohighlight" id="equation-eqappendix-truncnorm">
<span class="eqno">(40)<a class="headerlink" href="#equation-eqappendix-truncnorm" title="Permalink to this equation">#</a></span>\[\begin{split} \text{truncated normal:}\quad &amp;f(x|\mu,\sigma,c_{lb},c_{ub}) = \frac{\phi(x|\mu,\sigma)}{\Phi(c_{ub}|\mu,\sigma) - \Phi(c_{ub}|\mu,\sigma)} \\
&amp;\text{where}\quad \phi(x|\mu,\sigma) \equiv \frac{1}{\sqrt{2\pi\sigma^2}}e^{-\frac{x - \mu}{2\sigma^2}} \\
&amp;\text{and}\quad \Phi(x|\mu,\sigma) \equiv \int_{-\infty}^x\phi(x|\mu,\sigma) dx\end{split}\]</div>
<p>The function <span class="math notranslate nohighlight">\(\phi(x|\mu,\sigma)\)</span> is the probability distribution function of the normal distribution with mean <span class="math notranslate nohighlight">\(\mu\)</span> and variance <span class="math notranslate nohighlight">\(\sigma^2\)</span>. And the function <span class="math notranslate nohighlight">\(\Phi(x|\mu,\sigma)\)</span> is the cummulative distribution function of the normal distribution with mean <span class="math notranslate nohighlight">\(\mu\)</span> and variance <span class="math notranslate nohighlight">\(\sigma^2\)</span>.</p>
</section>
<section id="footnotes">
<span id="secappendixintrofootnotes"></span><h2>Footnotes<a class="headerlink" href="#footnotes" title="Permalink to this heading">#</a></h2>
<!-- [^citation_note]: See {cite}`AuerbachEtAl:1981,AuerbachEtAl:1983`, {cite}`AuerbachKotlikoff:1983a,AuerbachKotlikoff:1983b,AuerbachKotlikoff:1983c`, and {cite}`AuerbachKotlikoff:1985`. -->
<span id="secappendixfootnotes"></span><h2>Footnotes<a class="headerlink" href="#footnotes" title="Permalink to this heading">#</a></h2>
<p>The footnotes from this appendix.</p>
</section>
</section>

Expand Down Expand Up @@ -502,6 +514,7 @@ <h2> Contents </h2>
</div>
<nav class="bd-toc-nav page-toc">
<ul class="visible nav section-nav flex-column">
<li class="toc-h2 nav-item toc-entry"><a class="reference internal nav-link" href="#truncated-normal-distribution">Truncated normal distribution</a></li>
<li class="toc-h2 nav-item toc-entry"><a class="reference internal nav-link" href="#footnotes">Footnotes</a></li>
</ul>
</nav></div>
Expand Down
6 changes: 3 additions & 3 deletions appendix/glossary.html
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
<link rel="shortcut icon" href="../_static/favicon.ico"/>
<link rel="index" title="Index" href="../genindex.html" />
<link rel="search" title="Search" href="../search.html" />
<link rel="next" title="Appendix" href="intro.html" />
<link rel="next" title="Appendix" href="appendix.html" />
<link rel="prev" title="Simulated Method of Moments Estimation" href="../struct_est/SMM.html" />
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<meta name="docsearch:language" content="en"/>
Expand Down Expand Up @@ -222,7 +222,7 @@
<p aria-level="2" class="caption" role="heading"><span class="caption-text">Appendix</span></p>
<ul class="current nav bd-sidenav">
<li class="toctree-l1 current active"><a class="current reference internal" href="#">Glossary</a></li>
<li class="toctree-l1"><a class="reference internal" href="intro.html">Appendix</a></li>
<li class="toctree-l1"><a class="reference internal" href="appendix.html">Appendix</a></li>
</ul>
<p aria-level="2" class="caption" role="heading"><span class="caption-text">References</span></p>
<ul class="nav bd-sidenav">
Expand Down Expand Up @@ -558,7 +558,7 @@ <h1>Glossary</h1>
</div>
</a>
<a class="right-next"
href="intro.html"
href="appendix.html"
title="next page">
<div class="prev-next-info">
<p class="prev-next-subtitle">next</p>
Expand Down
2 changes: 1 addition & 1 deletion basic_ml/intro.html
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@
<p aria-level="2" class="caption" role="heading"><span class="caption-text">Appendix</span></p>
<ul class="nav bd-sidenav">
<li class="toctree-l1"><a class="reference internal" href="../appendix/glossary.html">Glossary</a></li>
<li class="toctree-l1"><a class="reference internal" href="../appendix/intro.html">Appendix</a></li>
<li class="toctree-l1"><a class="reference internal" href="../appendix/appendix.html">Appendix</a></li>
</ul>
<p aria-level="2" class="caption" role="heading"><span class="caption-text">References</span></p>
<ul class="nav bd-sidenav">
Expand Down
2 changes: 1 addition & 1 deletion caus_inf/intro.html
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@
<p aria-level="2" class="caption" role="heading"><span class="caption-text">Appendix</span></p>
<ul class="nav bd-sidenav">
<li class="toctree-l1"><a class="reference internal" href="../appendix/glossary.html">Glossary</a></li>
<li class="toctree-l1"><a class="reference internal" href="../appendix/intro.html">Appendix</a></li>
<li class="toctree-l1"><a class="reference internal" href="../appendix/appendix.html">Appendix</a></li>
</ul>
<p aria-level="2" class="caption" role="heading"><span class="caption-text">References</span></p>
<ul class="nav bd-sidenav">
Expand Down
2 changes: 1 addition & 1 deletion contrib/contributing.html
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@
<p aria-level="2" class="caption" role="heading"><span class="caption-text">Appendix</span></p>
<ul class="nav bd-sidenav">
<li class="toctree-l1"><a class="reference internal" href="../appendix/glossary.html">Glossary</a></li>
<li class="toctree-l1"><a class="reference internal" href="../appendix/intro.html">Appendix</a></li>
<li class="toctree-l1"><a class="reference internal" href="../appendix/appendix.html">Appendix</a></li>
</ul>
<p aria-level="2" class="caption" role="heading"><span class="caption-text">References</span></p>
<ul class="nav bd-sidenav">
Expand Down
2 changes: 1 addition & 1 deletion deep_learn/intro.html
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@
<p aria-level="2" class="caption" role="heading"><span class="caption-text">Appendix</span></p>
<ul class="nav bd-sidenav">
<li class="toctree-l1"><a class="reference internal" href="../appendix/glossary.html">Glossary</a></li>
<li class="toctree-l1"><a class="reference internal" href="../appendix/intro.html">Appendix</a></li>
<li class="toctree-l1"><a class="reference internal" href="../appendix/appendix.html">Appendix</a></li>
</ul>
<p aria-level="2" class="caption" role="heading"><span class="caption-text">References</span></p>
<ul class="nav bd-sidenav">
Expand Down
2 changes: 1 addition & 1 deletion genindex.html
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@
<p aria-level="2" class="caption" role="heading"><span class="caption-text">Appendix</span></p>
<ul class="nav bd-sidenav">
<li class="toctree-l1"><a class="reference internal" href="appendix/glossary.html">Glossary</a></li>
<li class="toctree-l1"><a class="reference internal" href="appendix/intro.html">Appendix</a></li>
<li class="toctree-l1"><a class="reference internal" href="appendix/appendix.html">Appendix</a></li>
</ul>
<p aria-level="2" class="caption" role="heading"><span class="caption-text">References</span></p>
<ul class="nav bd-sidenav">
Expand Down
2 changes: 1 addition & 1 deletion git/intro.html
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@
<p aria-level="2" class="caption" role="heading"><span class="caption-text">Appendix</span></p>
<ul class="nav bd-sidenav">
<li class="toctree-l1"><a class="reference internal" href="../appendix/glossary.html">Glossary</a></li>
<li class="toctree-l1"><a class="reference internal" href="../appendix/intro.html">Appendix</a></li>
<li class="toctree-l1"><a class="reference internal" href="../appendix/appendix.html">Appendix</a></li>
</ul>
<p aria-level="2" class="caption" role="heading"><span class="caption-text">References</span></p>
<ul class="nav bd-sidenav">
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@
<p aria-level="2" class="caption" role="heading"><span class="caption-text">Appendix</span></p>
<ul class="nav bd-sidenav">
<li class="toctree-l1"><a class="reference internal" href="appendix/glossary.html">Glossary</a></li>
<li class="toctree-l1"><a class="reference internal" href="appendix/intro.html">Appendix</a></li>
<li class="toctree-l1"><a class="reference internal" href="appendix/appendix.html">Appendix</a></li>
</ul>
<p aria-level="2" class="caption" role="heading"><span class="caption-text">References</span></p>
<ul class="nav bd-sidenav">
Expand Down
Binary file modified objects.inv
Binary file not shown.
2 changes: 1 addition & 1 deletion prf-prf.html
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@
<p aria-level="2" class="caption" role="heading"><span class="caption-text">Appendix</span></p>
<ul class="nav bd-sidenav">
<li class="toctree-l1"><a class="reference internal" href="appendix/glossary.html">Glossary</a></li>
<li class="toctree-l1"><a class="reference internal" href="appendix/intro.html">Appendix</a></li>
<li class="toctree-l1"><a class="reference internal" href="appendix/appendix.html">Appendix</a></li>
</ul>
<p aria-level="2" class="caption" role="heading"><span class="caption-text">References</span></p>
<ul class="nav bd-sidenav">
Expand Down
2 changes: 1 addition & 1 deletion python/DocStrings.html
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@
<p aria-level="2" class="caption" role="heading"><span class="caption-text">Appendix</span></p>
<ul class="nav bd-sidenav">
<li class="toctree-l1"><a class="reference internal" href="../appendix/glossary.html">Glossary</a></li>
<li class="toctree-l1"><a class="reference internal" href="../appendix/intro.html">Appendix</a></li>
<li class="toctree-l1"><a class="reference internal" href="../appendix/appendix.html">Appendix</a></li>
</ul>
<p aria-level="2" class="caption" role="heading"><span class="caption-text">References</span></p>
<ul class="nav bd-sidenav">
Expand Down
2 changes: 1 addition & 1 deletion python/Matplotlib.html
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@
<p aria-level="2" class="caption" role="heading"><span class="caption-text">Appendix</span></p>
<ul class="nav bd-sidenav">
<li class="toctree-l1"><a class="reference internal" href="../appendix/glossary.html">Glossary</a></li>
<li class="toctree-l1"><a class="reference internal" href="../appendix/intro.html">Appendix</a></li>
<li class="toctree-l1"><a class="reference internal" href="../appendix/appendix.html">Appendix</a></li>
</ul>
<p aria-level="2" class="caption" role="heading"><span class="caption-text">References</span></p>
<ul class="nav bd-sidenav">
Expand Down
6 changes: 3 additions & 3 deletions python/NumPy.html
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@
<p aria-level="2" class="caption" role="heading"><span class="caption-text">Appendix</span></p>
<ul class="nav bd-sidenav">
<li class="toctree-l1"><a class="reference internal" href="../appendix/glossary.html">Glossary</a></li>
<li class="toctree-l1"><a class="reference internal" href="../appendix/intro.html">Appendix</a></li>
<li class="toctree-l1"><a class="reference internal" href="../appendix/appendix.html">Appendix</a></li>
</ul>
<p aria-level="2" class="caption" role="heading"><span class="caption-text">References</span></p>
<ul class="nav bd-sidenav">
Expand Down Expand Up @@ -446,8 +446,8 @@ <h1>Exercises<a class="headerlink" href="#exercises" title="Permalink to this he
$$ [
M=</p></li>
</ol>
<div class="amsmath math notranslate nohighlight" id="equation-1f5951b7-97cc-411a-9c93-dfcf58e79497">
<span class="eqno">(1)<a class="headerlink" href="#equation-1f5951b7-97cc-411a-9c93-dfcf58e79497" title="Permalink to this equation">#</a></span>\[\begin{bmatrix}
<div class="amsmath math notranslate nohighlight" id="equation-c8e4f44e-34a7-45e3-8a09-e27805c87fb1">
<span class="eqno">(1)<a class="headerlink" href="#equation-c8e4f44e-34a7-45e3-8a09-e27805c87fb1" title="Permalink to this equation">#</a></span>\[\begin{bmatrix}
1 &amp; 2 &amp; 3 &amp; 4 &amp; 5 \\
3 &amp; 4 &amp; 5 &amp; 6 &amp; 7
\end{bmatrix}\]</div>
Expand Down
2 changes: 1 addition & 1 deletion python/OOP.html
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@
<p aria-level="2" class="caption" role="heading"><span class="caption-text">Appendix</span></p>
<ul class="nav bd-sidenav">
<li class="toctree-l1"><a class="reference internal" href="../appendix/glossary.html">Glossary</a></li>
<li class="toctree-l1"><a class="reference internal" href="../appendix/intro.html">Appendix</a></li>
<li class="toctree-l1"><a class="reference internal" href="../appendix/appendix.html">Appendix</a></li>
</ul>
<p aria-level="2" class="caption" role="heading"><span class="caption-text">References</span></p>
<ul class="nav bd-sidenav">
Expand Down
2 changes: 1 addition & 1 deletion python/Pandas.html
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@
<p aria-level="2" class="caption" role="heading"><span class="caption-text">Appendix</span></p>
<ul class="nav bd-sidenav">
<li class="toctree-l1"><a class="reference internal" href="../appendix/glossary.html">Glossary</a></li>
<li class="toctree-l1"><a class="reference internal" href="../appendix/intro.html">Appendix</a></li>
<li class="toctree-l1"><a class="reference internal" href="../appendix/appendix.html">Appendix</a></li>
</ul>
<p aria-level="2" class="caption" role="heading"><span class="caption-text">References</span></p>
<ul class="nav bd-sidenav">
Expand Down
2 changes: 1 addition & 1 deletion python/SciPy.html
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@
<p aria-level="2" class="caption" role="heading"><span class="caption-text">Appendix</span></p>
<ul class="nav bd-sidenav">
<li class="toctree-l1"><a class="reference internal" href="../appendix/glossary.html">Glossary</a></li>
<li class="toctree-l1"><a class="reference internal" href="../appendix/intro.html">Appendix</a></li>
<li class="toctree-l1"><a class="reference internal" href="../appendix/appendix.html">Appendix</a></li>
</ul>
<p aria-level="2" class="caption" role="heading"><span class="caption-text">References</span></p>
<ul class="nav bd-sidenav">
Expand Down
Loading

0 comments on commit 6f932be

Please sign in to comment.