gui/gui-doc/mrlib/scribblings/tex-table.scrbl
2014-12-02 02:33:07 -05:00

26 lines
648 B
Racket
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#lang scribble/doc
@(require "common.rkt" (for-label mrlib/switchable-button))
@title{TeX Table}
@defmodule[mrlib/tex-table]
@defthing[tex-shortcut-table
(listof
(list/c string?
(lambda (x)
(and (string? x)
(= (string-length x)
1)))))]{
This is an association list mapping the shortcut strings that
DrRacket uses with its @tt{control-\} (or @tt{command-\}) strings to
their corresponding unicode characters. For example, it contains
this mapping:
@racketblock[
("alpha" "α")
]
as well as many more.
}