Alexander Zeilmann

Results 25 comments of Alexander Zeilmann

May I ask, what is the reason that the diagram is currently split up into several SVG-Elements, i.e., two per arrow? Putting them in the same SVG element would already...

Thank you for your answer 🙂 There are probably many use cases for an SVG export, but I think that viewing the SVG in a browser is the most common...

Do you mean using iframes? Yes, there are a few reasons against iframes: ### Security Every external dependency I include in my website is a security threat. While this is...

As far as I can tell, the arrows are always sorted in the order they were created, right? So in that sense, there is already a simple "layer system". If...

You are absolutely right that this is a little awkward. I was just thinking about an implementation that does not require a complete rewrite of quiver.

Wrapping it in an array should work ```latex \begin{array}{c} multi \\ line \end{array} ``` but I have not tested it extensively.

Ahh good to know that it works. I only got a nondescriptive error message. I will try it a again in the next few days.

Hmm, sadly I did not figure out how to do it 🙁 Can you post your solution?

Hey @BRBoer, thank you for forking the extension and developing it further! Regarding the language support, I would not include any languages in the default configuration, because most people will...

I was able to fix the overlap of the triangles in the interior by replacing https://github.com/marcharper/python-ternary/blob/master/ternary/heatmapping.py#L260 ```python ax.fill(xs, ys, facecolor=color, edgecolor=color) ``` with ```python ax.fill(xs, ys, facecolor=color, edgecolor=color, linewidth=0.01) ```...