Aaron Kaw

Results 12 issues of Aaron Kaw

Long code blocks are a pain to ` # hide` every line. The easiest alternative I can think of is a hidden `@setup ` block that defines a variable with...

Type: Question

For example, ```julia using Symbolics: @variables @variables x′ x′ * x′ ``` outputs ``` \begin{equation} x^\prime^{2} \end{equation} ``` or ```julia using Symbolics: @variables @variables ŷ ŷ * ŷ ``` outputs...

I'm happy to submit a pull request on this, I just want to confirm that the package devs are happy with this suggestion: add a ribbon option for the plot...

enhancement
help wanted

Having written some of my functions with `NaNMath.jl` versions of mathematical functions, feeding them `Interval`s results in a `StackOverflowError`. E.g. ```julia-repl julia> ntv = interval(0, 1) [0.0, 1.0]_com julia> NaNMath.sin(ntv)...

enhancement
help wanted

* Added `uncertainty_plot` keyword to plot recipes for `Measurement` instances for the y-axis. * Implemented the previously existing functionality of uncertainty bar plot as the default. * Example usage and...

Not sure if this is a bug, but I think this should either throw an error or be fixed. Setup: ```julia using Symbolics: derivative f(x) = x^2 @variables x ```...

I initially opened [this issue](https://github.com/JuliaSymbolics/Symbolics.jl/issues/1193) in Symbolics.jl since I superficially noticed this issue occurs with `@variables` and not `Expr`s or `String`s fed to `latexify`. ![image](https://github.com/user-attachments/assets/0ab59b83-5adc-46c0-95fb-98a1f6674404) ![image](https://github.com/user-attachments/assets/062eb0c8-0e47-4c20-ad7d-bab4515655bf) Basically the `@latexrecipes` defined...

bug

Your currently documented `startup.jl` parses the Julia version. It doesn't work consistently for those who work on, say, release candidates. I prefer: ``` if isfile("./Project.toml") Pkg.activate(".") else Pkg.activate(temp=true) end ```...

### What happened? Some `@check`s generate a cache file with no common file naming design to make it `.gitignore`able. ### How could this be communicated better? Maybe a `supposition_jl_*` prefix,...

UX

Hi, I'm absolutely loving this combination of Julia and Typst, thank you for this interface, it's been working amazingly for me so far. I'm currently trying to display `print_tree` output...