Lout (software)

From Wikipedia, the free encyclopedia
Lout
Developer(s)Jeffrey H. Kingston
Stable release
3.40 / June 27, 2013
Written inC
Operating systemLinux, MS-Windows, POSIX compliant systems
TypeText formatting
LicenseGPL
Websitesavannah.nongnu.org/projects/lout

Lout is a batch document formatter invented by Jeffrey H. Kingston. It reads a high-level description of a document similar in style to LaTeX and produces a PostScript file which can be printed on most printers. Plain text and PDF output are also available. The term Lout primarily designates a document formatting programming language, while the (only) implementation of the language (by Jeffrey H. Kingston) is sometimes referred to as Basser Lout. Basser Lout is free software, distributed under the terms of the GNU General Public License.

Lout copies some of its formatting algorithms from TeX but is intended to be much easier to program due to the use of high-level functional programming language, instead of a macro language.

While a typical installation of LaTeX, together with TeX binaries takes from 50 to 300 MB, Lout is about 1 MB. This is mainly due to fewer packages and tools, but might also be attributed to a C implementation instead of macro language source code.[1]

Lout comes with an easy-to-read user guide, and the basics can be learned in a couple of hours. It includes packages for creating tables, charts, equations, and diagrams, everything in one package "out of the box". Lout is useful for creating reports and books and gives very precise control over typesetting.

Document formatting with Lout[]

While the core of the Lout programming language provides only low-level operations, similar to that of TeX, the packages that come with Basser Lout provide a complete high-level markup language that users may use directly to produce documents, in a way that is similar to LaTeX.

A very simple Lout document may look like this:

 # This is a comment.
 
 # Use the `doc' document class and its default style.
 @SysInclude { doc }
 
 @Document
   @InitialFont { Times Base 10p }
 //
 
 # Beginning of document contents.
 @Text @Begin
 
 @PP
 This is a paragraph.  One can easily embed @B { bold } or
 @I { italic } text.  One can also easily change the style of
 text, such as { Helvetica Base } @Font { changing the font
 being used }.
 
 @BeginSections
 @Section @Title { The First Section }
 @Begin
 
 @PP
 This is the content of a section.
 
 @End @Section
 @EndSections
 
 @End @Text
 # End of the document.

Different document types are available: doc, report, book, but also slides (for overhead transparencies) and illustration (for stand-alone illustrations). Customizing a document style is usually relatively easy, even to the non-programmer.

Programming language features[]

The Lout programming language is similar to other functional languages. The core programming language consists of less than 30 primitive operators.[2] Some features make it particularly close to Haskell, notably the fact that Lout expressions are lazily evaluated. Lout also provides constructs needed for the implementation of document formatting that are not commonly found in other programming languages, such as galleys.[3] Unlike most other functional programming languages, Lout does not provide, for instance, first-class functions.

Security issues[]

In 2019 Common Vulnerabilities and Exposures listed two buffer overflow issues in Lout, which can be exploited if untrusted documents are processed.[4][5] Debian removed Lout in October 2020 due to these issues not having been patched;[6][7] the package had had no maintainer since 2013.[8]

The buffer overflow issues have been corrected and the system is now maintained at https://github.com/william8000/lout

References[]

  1. ^ Lout Downloads
  2. ^ Kingston, Jeffrey H (September 1993). "The Design and Implementation of the Lout Document Formatting Language". Software: Practice and Experience. 23 (9): 1001–41. CiteSeerX 10.1.1.45.9433. doi:10.1002/spe.4380230906. S2CID 22952199.
  3. ^ Kahl, Wolfram (January 1999). "Beyond Pretty-Printing: Galley Concepts in Document Formatting Combinators". Practical Aspects of Declarative Languages: First International Workshop.
  4. ^ "NVD - Cve-2019-19917".
  5. ^ "NVD - Cve-2019-19918".
  6. ^ Debian Lout bug: security issues
  7. ^ Debian Lout: package removal
  8. ^ Debian Lout bug: maintainer gone

External links[]

Retrieved from ""