Skip to content

Commit dd13195

Browse files
Merge pull request #151 from SciML/fix-latexify-deprecation-warnings
Fix Latexify deprecation warnings in ODEProblemLibrary
2 parents d2ea4dc + c8c1ac8 commit dd13195

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

lib/ODEProblemLibrary/src/strange_attractors.jl

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ eqs = [D(x) ~ sin(y) - b * x,
1616
Thomas' cyclically symmetric attractor equations
1717
1818
```math
19-
$(latexify(thomas))
19+
$(latexify(thomas; mult_symbol=""))
2020
```
2121
2222
[Reference](https://www.worldscientific.com/doi/abs/10.1142/S0218127499001383)
@@ -39,7 +39,7 @@ eqs = [D(x) ~ σ * (y - x),
3939
Lorenz equations
4040
4141
```math
42-
$(latexify(lorenz))
42+
$(latexify(lorenz; mult_symbol=""))
4343
```
4444
4545
[Reference](https://journals.ametsoc.org/view/journals/atsc/20/2/1520-0469_1963_020_0130_dnf_2_0_co_2.xml)
@@ -62,7 +62,7 @@ eqs = [D(x) ~ (z - b) * x - d * y,
6262
Aizawa equations
6363
6464
```math
65-
$(latexify(aizawa))
65+
$(latexify(aizawa; mult_symbol=""))
6666
```
6767
6868
[Reference](https://journals.ametsoc.org/view/journals/atsc/20/2/1520-0469_1963_020_0130_dnf_2_0_co_2.xml)
@@ -84,7 +84,7 @@ eqs = [D(x) ~ y - a * x + b * y * z,
8484
Dadras equations
8585
8686
```math
87-
$(latexify(dadras))
87+
$(latexify(dadras; mult_symbol=""))
8888
```
8989
9090
[Reference](https://www.sciencedirect.com/science/article/abs/pii/S0375960109009591)
@@ -106,7 +106,7 @@ eqs = [D(x) ~ a * (y - x),
106106
chen equations
107107
108108
```math
109-
$(latexify(chen))
109+
$(latexify(chen; mult_symbol=""))
110110
```
111111
112112
[Reference](https://www.worldscientific.com/doi/abs/10.1142/S0218127499001024)
@@ -128,7 +128,7 @@ eqs = [D(x) ~ -(y + z),
128128
rossler equations
129129
130130
```math
131-
$(latexify(rossler))
131+
$(latexify(rossler; mult_symbol=""))
132132
```
133133
134134
[Reference](https://www.sciencedirect.com/science/article/abs/pii/0375960176901018)
@@ -151,7 +151,7 @@ eqs = [D(x) ~ y * (z - 1 + x^2) + b * x,
151151
rabinovich_fabrikant equations
152152
153153
```math
154-
$(latexify(rabinovich_fabrikant))
154+
$(latexify(rabinovich_fabrikant; mult_symbol=""))
155155
```
156156
157157
[Reference](https://en.wikipedia.org/wiki/Rabinovich%E2%80%93Fabrikant_equations)
@@ -173,7 +173,7 @@ eqs = [D(x) ~ y + a * x * y + x * z,
173173
sprott equations
174174
175175
```math
176-
$(latexify(sprott))
176+
$(latexify(sprott; mult_symbol=""))
177177
```
178178
179179
[Reference](https://sprott.physics.wisc.edu/pubs/paper423.pdf)
@@ -195,7 +195,7 @@ eqs = [D(x) ~ y - a * x^3 + b * x^2 - z + i,
195195
hindmarsh_rose equations
196196
197197
```math
198-
$(latexify(hindmarsh_rose))
198+
$(latexify(hindmarsh_rose; mult_symbol=""))
199199
```
200200
201201
[Reference](https://en.wikipedia.org/wiki/Hindmarsh%E2%80%93Rose_model)

0 commit comments

Comments
 (0)