Skip to content

Commit 462c64b

Browse files
committed
use $$ instead of * * for equations
1 parent 067fccc commit 462c64b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/src/catalyst_applications/advanced_simulations.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -309,13 +309,13 @@ sprob_1 = SDEProblem(rn_1, u0, tspan, p_1)
309309
sol_1 = solve(sprob_1)
310310
plot(sol_1; idxs = :X1, ylimit = (0.0, 20.0))
311311
```
312-
Here we can see that the `X` concentration fluctuations around a steady state of *X≈10.0*.
312+
Here we can see that the `X` concentration fluctuations around a steady state of $X≈10.0$.
313313

314314
Next, we wish to introduce a noise scaling parameter ,`η`. This will scale the
315-
noise magnitude so that for *η≈0.0* the system lacks noise (and its SDE
316-
simulations are identical to its ODE simulations) and for *η≈1.0* noise is not
315+
noise magnitude so that for $η≈0.0$ the system lacks noise (and its SDE
316+
simulations are identical to its ODE simulations) and for $η≈1.0$ noise is not
317317
scaled (and SDE simulations are identical to as if no noise scaling was used).
318-
Setting *η<1.0* will reduce noise and *η>1.0* will increase noise. The syntax
318+
Setting $η<1.0$ will reduce noise and $η>1.0$ will increase noise. The syntax
319319
for setting a noise scaling parameter `η` is
320320
```@example ex3
321321
rn_2 = @reaction_network begin

0 commit comments

Comments
 (0)