Nathan Boyer
Nathan Boyer
_EDITED:_ I’m not sure. Maybe @jkrumbiegel or @MichaelHatherly? I get the same rendering behavior for both in Pluto. 
_EDITED:_ The LatexStrings exactly match. Pluto ``` \begin{equation} \mathtt{v\_f}^{2} = 2 a \left( \mathtt{y\_f} - \mathtt{y\_i} \right) + \mathtt{v\_i}^{2} \end{equation} ``` ``` \begin{equation} \frac{1}{2} \mathrm{ssqrt}\left( 8 a \mathtt{y_{f}} - 8...
Okay, I had to force a Symbolics.jl update within the Pluto notebook for some reason. Error is gone now. I will update my above posts. Both are now using Symbolics...
Quarto and Pluto both produce the same `LaTeXString`s and rendering behavior, so this is a Symbolics.jl or Latexify.jl issue. `eq` looks good (in both Quarto and Pluto) on Latexify v0.15.21,...
The 1/2 being pulled out front in `sol` is a Symbolics.jl issue though.
As inspiration or an alternative source, there is another GitHub project [here](https://github.com/LucachuTW/CARDS-PokemonPocket-scrapper) that scrapes from https://pocket.limitlesstcg.com/cards. The repo hasn't been updated since November, but the website has all the latest...
I guess a NamedTuple could also be useful for clarity. ```julia @be (A=rand(1000,1000), b=rand(1000)) my_matmul(_.A, _.b) ``` Here's the MJW PR in case you're interested: https://github.com/modernjuliaworkflows/modernjuliaworkflows.github.io/pull/138