Niklas Korsbo

Results 20 issues of Niklas Korsbo

## Details ```julia plot([],[], label="hello") ``` can sometimes be useful to add a legend-entry without adding to the plot. It works on other backends, but not on pgfplotsx. Instead, nothing...

bug
wontfix
good first issue
PGFPlotsX

This may not be a big issue, but I thought I'd report it. `MonteCarloSummary` does not work if you have used an initial condition of integers. This error popped up...

Completely change the logic behind `latexraw`. And update the rest accordingly. This has a large impact on extensibility and it will break many recipes. However, it will enable far more...

In Julia, one can inspect the expressions that build up a method with `@code_lowered`. The returned object does have all the information required to deduce what the method does. I...

`-x` does not need parentheses in this case.

This is a competing refactorisation to #161 It overloads `Base.show` with `MIME"text/latexify"`. This could allow others to extend latexify's functionality without ever even loading Latexify.jl itself. It's based on suggestions...

The first latexification can sometimes take way too long. I've seen "vanilla" latexify calls take 3 seconds and I've seen some latexify recipes take a full minute to compile. Runtime...

Internally, latexify operates mainly on strings that are being passed around. This works but it is starting to become limiting. problems with the current approach: - Low customisability. Customization of...

enhancement

This is a work in progress. It adds a post-processing hook as a keyword argument that allows you to pass arbitrary functions which can modify the result just before it...

given an array ``` exarr = [:( x = y), :(y \in R)] ``` we should be able to generate aligned equations with correct separators for each line. Might be...