mgubi

Results 24 comments of mgubi

Note that you do not need to build TeXmacs in order to modify the scheme code. You can either overwrite the scheme files in your local TeXmacs $TEXMACS_PATH (on the...

This is quite interesting. The user experience problem is indeed real. What about the following: the user need to add a package to the document to activate this functionality. When...

It is not clear to me if there were a particular reason to use 'resizebox'. An alternative (better?) approach could be to allow 'resize box' in input by improving fromtex.cpp...

A better solution is to use the mechanisms that TeXmacs has to selectively evaluate macros according to the output medium, e.g. for LaTeX and HTML. I need to check if...

I think there is general interest in that. However difficulty of changing the scheme codebase to be compatible with guile 2.0+ seems to me underestimated. first there is the evaluation/compilation...

I do not understand the scheme codebase well enough but TeXmacs uses heavily macros to have its own module system with lazy loading and overloading of methods which has to...

It could be. The C/C++ way would be just a blackbox which convert a string into a texmacs or scheme tree. Even if we use the peg/leg systems this means...

Probably they have to be converted to unicode. You might try to put somewhere a call to `(cork->utf8 ...)`

Probably here: ``` (define (make-article-list-entry mdate cdate file title abs) `(notes-entry ,file ,(if (null? title) "(no title)" (cork->utf8 (car title))) ,(if (null? abs) "(no abstract)" (car abs)) ,(strftime "%c %Z"...

What happens in TeXmacs->HTML exporter?