fhackenberger / ktikz

KtikZ provides a nice user interface for making pictures using TikZ.
Other
348 stars 34 forks source link

Support context #42

Closed flying-sheep closed 4 years ago

flying-sheep commented 4 years ago

We need to cd there, I’m getting

tex error       > tex error on line 8 in file /usr/share/texmf-dist/tex/context/base/mkiv/cont-yes.mkiv: ! I can't find file `/tmp/ktikz-peVGzJ/temptikzcode.tex'.
jfmcarreira commented 4 years ago

Thanks for the pull request.

I am not sure which functionality you trying to add. I am not 100% into the software functionality.

Please merge all 4 commits into one to remove messages like "whoops" and "whoops2"

flying-sheep commented 4 years ago

I am not sure which functionality you trying to add. I am not 100% into the software functionality.

ConTeXt is a TeX macro suite like LaTeX, but without all the cruft and compatibility hacks. You generally need very few modules (=packages) if any at all, because everything is built in in a consistent way. It has a different command with different command line parameters, and it uses different macros.

A template for ConTeXt would be the following in case you’d prefer to have full support instead of just partial support.

\setupcolors[state=start]
\usemodule[tikz]
\starttext
\startTeXpage
<>
\stopTeXpage
\stoptext

Please merge all 4 commits into one to remove messages like "whoops" and "whoops2"

No need, that’s what the “Squash & Merge” button is for (you can activate it in the project settings if you didn’t yet)