racket/collects/mrlib/scribblings/tex-table.scrbl
Eli Barzilay ac26fe7554 A ton of @scheme*' -> @racket*' and related updates.
Also, updates some of the mzlib files to point at `racket/*' libraries
rather than to `scheme/*' ones.
2011-06-25 04:08:47 -04: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.
}