Check out https://www.monsterwriter.app/ , It is something like LyX but even easier to use.
Is a Windows build planned?
21–30 of 245 posts
Check out https://www.monsterwriter.app/ , It is something like LyX but even easier to use.
Is a Windows build planned?
edit: for some attempt at an explicit discussion of pros & cons & history vs. TeX, see: https://sile-typesetter.org/what-is/#sile-versus-tex
You sometimes see people ask fairly simple Python questions on Stack Overflow, that could be solved by five lines of plain Python, and be answered with some Pandas magic incantation that happens to do what they want with one call. I always find this a bit sad, because it seems to take away the idea that programming is about assembling composable parts, replacing it by a search for the right magic thing from a box of…
> You always feel like you are trying to trick the system into doing something it was not designed for. This is one of the hallmarks of human civilization. Your hands were designed for throwing a stone at the eye of a mammoth. But you can play the violin with them! Yes; it is totally awkward and anti-natural for your hands, obviously not their intended purpose... but so beautiful!
Earlier quoted context omitted.
> You always feel like you are trying to trick the system into doing something it was not designed for. This is one of the hallmarks of human civilization. Your hands were designed for throwing a stone at the eye of a mammoth. But you can play the violin with them! Yes; it is totally awkward and anti-natural for your hands, obviously not their intended purpose... but so beautiful!
Nothing in nature was necessarily "designed"
Earlier quoted context omitted.
That’s interesting. Is it really a problem that requires manually writing the code? Seems like there should be more elegant solutions by this point.
For most usages, you don't need to write the code. Sometimes buff out rough edges for your specific application, but in my 12 years in academia, I think I've only really _written_ Latex twice.
I'm not sure if it's necessary to use auxiliary files. I made something implementing fake vectors using \csname . I think that a similar approach can be used for this problem, but I prefer to never see my old code again. IWIMM \newcommand{\defwithindex}[3]{% \expandafter\def\csname #1@#2\endcsname{#3}% } \newcommand{\getwithindex}[2]{% \csname #1@#2\endcsname% } (You probably need the two dimensional version.)
Hi! Author here. This is a cool idea for a vector implementation, but you still need to work around the fact that the command definition can come after the \get
What is the intended use for LaTex these days? I’m not trying to flame, I just have no idea why anyone would choose to use it over html/css or just a word processor.
And you're right, single file HTML with embedded images would be a much better format, but I assume publishers are preventing this.
I'm not sure if it's necessary to use auxiliary files. I made something implementing fake vectors using \csname . I think that a similar approach can be used for this problem, but I prefer to never see my old code again. IWIMM \newcommand{\defwithindex}[3]{% \expandafter\def\csname #1@#2\endcsname{#3}% } \newcommand{\getwithindex}[2]{% \csname #1@#2\endcsname% } (You probably need the two dimensional version.)
Hi! Author here. This is a cool idea for a vector implementation, but you still need to work around the fact that the command definition can come after the \get