JuliaSymbolics / Symbolics.jl

Symbolic programming for the next generation of numerical software
https://symbolics.juliasymbolics.org/stable/
Other
1.32k stars 146 forks source link

Latexify display of subscripted vector variables depending on other variable (e.g. X_1(t)) fails #1167

Open TorkelE opened 3 weeks ago

TorkelE commented 3 weeks ago

MWE:

using Symbolics
@variables t (X(t))[1:2]
X[1]

From jupyter notebook (the subscript is on the right, not left, of the (t): image

Notably, using the now deprecated syntax, this works fine.