gustaphe

Results 57 comments of gustaphe

Or even ``` [select] dir1 !dir1/file2.jl ... ```

I don't know anything about Quarto, first time hearing of it, but I could maybe shed some light on what is needed here. When you latexify, you create a `LaTeXStrings.LaTeXString`....

Latexify just generates the tex source, which in this case is correct. Whether it's rendered right is indeed a question for Quarto. However, I'm a bit uncertain if the `align`...

Nice! I look forward to trying this out. Just a quick thing: `descend`? (Anglofoner och deras s-ljud...)

I have some questions: `getconfig(:MyType, false)` and `setconfig!(:MyType => true)` are supposed to be `get(config, :MyType, false)` and `push!(config, :MyType, true)`, right? Or is there a global config, and if...

> > Can decend call applicable(f, (io, ex, prevop, config)) && f(io, ex, prevop, config) on each f in USER_INSTRUCTIONS (until true), so you can use a type annotation instead...

> One potential problem with this approach is that Latexify.jl does not own `Base.show` and can thus not precompile it. I haven't worked with precompilation, but don't you just need...

I just today noticed a similar issue: ```julia julia> latexify(:( 1 < 2)) L"$\left( 1 < 2 \right)$" ``` It's the same for all the comparisons (`==`, `

I would do something like this: ```julia julia> latexalign([L"\dot{x}", :y], [:($A*x+$B*u),:(C*x)]) L"\begin{align} $\dot{x}$ =& \left[ \begin{array}{cc} 1 & 0 \\ 0 & 1 \\ \end{array} \right] \cdot x + \left[...