Skip to content

Commit 083849e

Browse files
Merge pull request #1179 from SciML/dw/latexify
Fix deprecation warnings in Latexify 0.16.6
2 parents 016895d + 534c9fc commit 083849e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Graphs = "1.4"
5454
HomotopyContinuation = "2.9"
5555
JumpProcesses = "9.13.2"
5656
LaTeXStrings = "1.3.0"
57-
Latexify = "0.16.5"
57+
Latexify = "0.16.6"
5858
MacroTools = "0.5.5"
5959
ModelingToolkit = "< 9.60"
6060
NetworkLayout = "0.4.7"

src/latexify_recipes.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ const LATEX_DEFS = CatalystLatexParams()
1414
@latexrecipe function f(rs::ReactionSystem; form = :reactions, expand_functions = true)
1515
expand_functions && (rs = expand_registered_functions(rs))
1616
if form == :reactions # Returns chemical reaction network code.
17-
cdot --> false
17+
mult_symbol --> ""
1818
env --> :chem
1919
return rs
2020
elseif form == :ode # Returns ODE system code.
21-
cdot --> false
21+
mult_symbol --> ""
2222
return convert(ODESystem, rs)
2323
elseif form == :sde # Returns SDE system code.
24-
cdot --> false
24+
mult_symbol --> ""
2525
return convert(SDESystem, rs)
2626
end
2727
error("Unrecognised form argument given: $form. This should be either reactions (default), :ode, or :sde.")

0 commit comments

Comments
 (0)