GNU TeXmacs

From Wikipedia, the free encyclopedia
GNU TeXmacs
Developer(s)GNU Project
Stable release
2.1.1[1] Edit this on Wikidata / 10 December 2021
Repository
Written inC++
Operating systemLinux, Windows, macOS, Unix-like[2]
Platformx86, x86-64
TypeWord processor
LicenseGPL-3.0-or-later[3]
Websitewww.texmacs.org

GNU TeXmacs is a scientific word processor and typesetting component of the GNU Project. It originated as a variant of GNU Emacs with TeX functionalities, though it shares no code with those programs, while using TeX fonts.[4] It is written and maintained by Joris van der Hoeven and a group of developers.[5] The program produces structured documents with a WYSIWYG user interface. New document styles can be created by the user. The editor provides high-quality typesetting algorithms and TeX and other fonts for publishing professional looking documents.

Background[edit]

As a structured WYSIWYG editor and document preparation system, TeXmacs is similar to earlier structured document editors, such as Interleaf (first release 1985), Framemaker (1986), SoftQuad Author/Editor (1988),[6] Lilac,[7] Grif [fr] (1991),[8] and Thot;[9] there was also academic research into interactive editing of complex typographical constructs represented logically.[10][11]

In the 2000s and 2010s, interest on interactive editing of structured text encouraged the development of programs intended for scholars in the humanities; an example of this is CWRC-Writer, a visual XML editor with "Close-to-WYSIWYG editing and enrichment of scholarly texts with meaningful visual representations of markup".[12]

On another side of the editing and document preparation world, a program for visual interaction with structured texts written in LaTeX is LyX, which does not aim at WYSIWYG editing but at visual representation of the structure (WYSIWYM).

Features[edit]

A screenshot showing mathematical formulas and italic font. A cyan focus frame surrounds the innermost environment (a formula environment) the cursor is in, while the subtle gray box surrounds another active tag (the theorem environment).

Like in many WYSIWYG editors (such as Microsoft Word), authors manipulate a document on screen which should print to a similar-looking paper copy. The goal of TeXmacs is to provide a WYSIWYG editor that nevertheless makes it possible to write correctly structured documents with aesthetically pleasing typesetting results. TeXmacs is not a front-end to LaTeX[13] but TeXmacs documents can be converted to either TeX or LaTeX. LaTeX also can be imported (to some extent), and both import from and export to HTML, Scheme, Verbatim, and XML is provided;[14] the HTML export is stylable with CSS (since version 1.99.14). There is a converter for MathML as well, and TeXmacs can output PDF and PostScript for printing.[15]

TeXmacs can handle mathematical formulas, tables, images, cross-references and citations. It can be used as a front-end to a number of computer algebra systems such as Maxima, FriCAS and SageMath, and can in turn integrate some of their output into its typesetting. TeXmacs also supports a Scheme extension language called Guile for customizing the program and writing extensions.

It also features a presentation mode and a small technical drawing editor and there are plans to evolve towards a complete scientific office suite with spreadsheet capabilities. An implementation of spreadsheets is present starting from version 1.99.12; spreadsheets in TeXmacs can take advantage of plugins (for example Python or Maxima) to compute cell values.

TeXmacs currently runs on most Unix-based architectures including Linux, FreeBSD, Cygwin, Haiku and macOS. Along with the Cygwin version, a native port is available for Microsoft Windows.

The TeXmacs editor[edit]

In the TeXmacs editor structure and appearance of the document are represented at the same time;[16] the structure is made evident to the user by surrounding logical units of the document in nested focus frames carrying color cues that are displayed according to the movement of the cursor.[17] A detailed description of the structure in the proximity of the cursor is provided in the footer of the editor window, finely selectable with left-right arrow presses.[16] In the editor it is possible to switch between text mode and source mode editing, and support for the composition of macros is present; the source editor is syntax-aware.[18]

Mathematical typography[edit]

TeXmacs facilitates the inputting of mathematical formulas by mapping sequences of keyboard presses to symbols. For example, the symbol can be input by typing =>.

Some symbols have no such representation ( for instance). These can be input with Tab ↹ key (e.g. for the key presses are =>Tab ↹Tab ↹ . This keyboard-based entry differs from other formulae editors, that tend to provide point-and-click menus for this task.[19]

Batch processing[edit]

It is possible to use TeXmacs as a batch processor (which is LaTeX's usual operation mode), using X virtual framebuffer to avoid opening unwanted windows while processing. For example, the command

$ xvfb-run texmacs --convert article.tm article.pdf --quit

generates a PDF file "article.pdf" from a TeXmacs document "article.tm".

The TeXmacs format[edit]

All TeXmacs documents or document fragments can be thought of as trees (the concept of tree exists as well in the SGML markup language, to which the Texmacs format is similar). For instance, the tree

represents the formula

(written here with the TeX markup used by Wikipedia) and is turned by TeXmacs' own typesetting engine into a typeset formula, here inserted as an image:

TeXmacs trees are represented in TeXmacs files as strings, and in the TeXmacs editor as the typeset representation of the document together with its interactive behaviour.[20] In the on-screen representation of the TeXmacs tree, the cursor movement represents the movement inside the tree. On disk, three representations of the TeXmacs format exist: a native representation, an XML representation and a representation with Scheme S-expressions; the Scheme representation is useful for the interfacing with Scheme programs.

Typesetting and document control[edit]

The typesetting process converts TeXmacs trees into boxes.[21] Evaluation of TeXmacs trees proceeds by reduction of the primitives, that is by evaluation of macro applications. The typesetting primitives are designed to be very fast and are built-in into the editor; the rendering of many of the primitives can be customized through the built-in environment variables; the stylesheet language allows users to write new primitives as macros on top of the built-in primitives.

TeXmacs uses a global algorithm for "line-breaking" (similar to the TeX one) and in addition uses a global algorithm for "page-breaking"; the page-breaking algorithm takes into account floating objects (figures, table, footnotes) and multi-column content.

Document control[edit]

Documents can be controlled through a native macro system and through Guile-Scheme. It is possible to customize the editor's menus and keybindings and to act programmatically on the document tree.

TeXmacs macros[edit]

TeXmacs macros provide a means of structured input (as in TeX/LaTeX) and they are immediately typeset, at the same time maintaining editable input fields. They are written in source code, although the WYSIWYG editor can aid in their composition through the translation of visual structures into their syntax.[22]

Document control through Scheme[edit]

Scheme is embedded in TeXmacs through GNU Guile; the editor itself can be controlled in this way:[21] menus and keybindings can be customized. Scheme commands can be invoked interactively inside TeXmacs documents, can be invoked from the command line and from inside TeXmacs macros. TeXmacs trees can be passed to Scheme in different forms: as "passive trees" (convenient to manipulate content directly using standard Scheme routines on lists), as "active trees" (keep track of the position of the tree inside the global document tree and can be used to programmatically modify documents), and in a "hybrid" representation.

Graphics[edit]

Graphics objects are also part of the TeXmacs format and can be manipulated programmatically from Scheme. An example of TeXmacs graphics generated in a TeXmacs Scheme session is shown below together with the session which generated the image. Images generated programmatically in a Scheme session can also be edited using the internal drawing editor, as they are inserted in the document as a tree; Scheme scripts can also be executed through the extern TeXmacs macro—in this case only the typeset material is available in the document and no direct editing is possible (the modifications must be made within the Scheme code).

Scheme]  (define pi (acos -1))
;; A function to define a point in the TeXmacs graphics format using two coordinates
Scheme]  (define (pt x y)
  (point ,(number->string x) ,(number->string y)))
;; Set points
Scheme]  (define xC (- (* 2 (cos (/ pi 3)))))
Scheme]  (define yC (* 2 (sin (/ pi 3))))
Scheme]  (define pA (pt -2 0))
Scheme]  (define pB (pt 2 0))
Scheme]  (define pC (pt xC yC))
Scheme]  (define tA (pt -2.3 -0.5))
Scheme]  (define tB (pt 2.1 -0.5))
Scheme]  (define tC (pt (- xC 0.2) (+ yC 0.2)))
;; Generate graphics
Scheme]  (stree->tree
 (with "gr-geometry" (tuple "geometry" "400px" "300px" "center")
    (graphics
      (with "color" "blue"  (text-at (TeXmacs) ,(pt -0.55 -0.75)))
      (with "color" "black" (arc ,pA ,pC ,pB))
      (with "color" "black" (line ,pA ,pB))
      (with "color" "red"   (cline ,pA ,pB ,pC))
      (with "color" "black" (text-at "A" ,tA))
      (with "color" "black" (text-at "B" ,tB))
      (with "color" "black" (text-at "C" ,tC)))))

Supported back ends[edit]

A TeXmacs session of Maxima

TeXmacs has back-ends supporting many technologies.

Embedding editable plugin output[edit]

Plugin output can be embedded within TeXmacs documents using "executable switches";[23] in this way one can switch back and forth between a given input to the system and the corresponding output, which blends seamlessly in the document.

See also[edit]

References[edit]

  1. ^ Joris van der Hoeven (10 December 2021). "TeXmacs 2.1.1". Retrieved 10 December 2021.
  2. ^ "Downloading and installing TeXmacs (FSF GNU project)". Texmacs.org. Retrieved 2010-05-29.
  3. ^ "The GNU General Public License". Texmacs.org. Retrieved 2010-12-27.
  4. ^ Frequently asked questions (FSF GNU project)
  5. ^ "Authors of GNU TeXmacs". Retrieved 2019-09-23.
  6. ^ Brown, Susan (2015-03-01). "Remediating the Editor". Interdisciplinary Science Reviews. 40 (1): 78–94. Bibcode:2015ISRv...40...78B. doi:10.1179/0308018814Z.000000000106. ISSN 0308-0188. S2CID 144086542.
  7. ^ Brooks, K.P. (June 1991). "Lilac: a two-view document editor". Computer. 24 (6): 7–19. doi:10.1109/2.86832. ISSN 0018-9162. S2CID 2239112.
  8. ^ "GriF SGML Editor". Retrieved 2020-11-27.[permanent dead link]
  9. ^ "Thot structured document editor". Retrieved 2020-11-26.
  10. ^ A structured document model, Clement Shin Tai-Yin, PhD Thesis, Department of Computing, Imperial College London, 1989
  11. ^ "Editing Graphical Objects Using Procedural Representations", Paul Asente, PhD Thesis, Department of Computer Science, Stanford University (1987)
  12. ^ CWRC-Writer: An In-Browser XML Editor, G. Rockwell et al., Digital Humanities 2012 Conference
  13. ^ van der Hoeven, Joris (2006-08-21). "GNU TeXmacs: a scientific editing platform" (PDF). www.texmacs.org. pp. 7f. Retrieved 2016-01-16. Since TeXmacs is not a LaTeX front-end, it follows that we can only ensure correct conversions for a (quite large) sublanguage of LaTeX.
  14. ^ van der Hoeven, Joris; Seidl, Andreas (2011). "Frequently asked questions". www.texmacs.org. Retrieved 2016-01-16.
  15. ^ van der Hoeven, Joris (2012). "Welcome to GNU TeXmacs". www.texmacs.org. Retrieved 2016-01-16.
  16. ^ a b van der Hoeven, Joris. "GNU TeXmacs, A free, structured, wysiwyg and technical text editor" (PDF). Cahiers Gutenberg. 39–40: 39–50.
  17. ^ "The TeXmacs manual. 2.2, Typing structured text" (PDF). Retrieved 2020-11-20.
  18. ^ "GNU TEXMACS user manual; 11.2. Rendering of style files and packages" (PDF). Retrieved 2020-11-27.
  19. ^ See the user manual : « Typing mathematical symbols ».
  20. ^ van der Hoeven, Joris. "The TeXmacs format". Retrieved 2019-08-10.
  21. ^ a b M. Gubinelli, The Guile in TeXmacs, presentation at the Guile and Guix Days in Strasbourg, June 21–22, 2019 pdf Retrieved 2019-09-21.
  22. ^ "The TeXmacs Manual; 11.1 Writing a simple style package" (PDF). Retrieved 2020-11-27.
  23. ^ "TeXmacs user manual, section "Traversal of a presentation"" (PDF). Retrieved 2020-11-10.

External links[edit]