Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix math markup in markdown tables #31

Merged
merged 1 commit into from
Mar 11, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions notebooks/Basic_ExponentialModel.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,9 @@
"\n",
"| parameter | interpretation\n",
"| ----- | -- |\n",
"| $$I \\in \\mathcal{R} $$ | y-axis intercept |\n",
"| $$L \\in \\mathcal{R} $$ | asymptotic limit |\n",
"| $$k \\in \\mathcal{R} $$ | exponential rate parameter |"
"| $I \\in \\mathcal{R}$ | y-axis intercept |\n",
"| $L \\in \\mathcal{R}$ | asymptotic limit |\n",
"| $k \\in \\mathcal{R}$ | exponential rate parameter |"
]
},
{
Expand Down
10 changes: 5 additions & 5 deletions notebooks/Basic_GeneralizedLogistic.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@
"\n",
"| parameter | interpretation\n",
"| ----- | -- |\n",
"| $$L_L \\in \\mathcal{R} $$ | lower asymptote |\n",
"| $$L_U \\in \\mathcal{R} $$ | upper asymptote |\n",
"| $$I_x \\in \\mathcal{R} $$ | x-value of the inflection point |\n",
"| $$S \\in \\mathcal{R} $$ | slope at the inflection point `I_x` |\n",
"| $$c \\in \\mathcal{R} $$ | moves the inflection point closer to `L_L` (`c < 0`) or closer to `L_U` (`0 < c`). |\n"
"| $L_L \\in \\mathcal{R}$ | lower asymptote |\n",
"| $L_U \\in \\mathcal{R}$ | upper asymptote |\n",
"| $I_x \\in \\mathcal{R}$ | x-value of the inflection point |\n",
"| $S \\in \\mathcal{R}$ | slope at the inflection point `I_x` |\n",
"| $c \\in \\mathcal{R}$ | moves the inflection point closer to `L_L` (`c < 0`) or closer to `L_U` (`0 < c`). |\n"
]
},
{
Expand Down