forgot to add this in the last commit

svn: r10709

original commit: 6b9690da7172ee91d9643e2732d9ae42dd2d6a3e
This commit is contained in:
Robby Findler 2008-07-10 18:03:39 +00:00
parent b8574126bd
commit b216ed1e99

View File

@ -0,0 +1,26 @@
#lang scribble/doc
@(require "common.ss"
(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 assocation list mapping the shortcut strings that
DrScheme uses with its @tt{control-\} (or @tt{command-\}) strings to
their corresponding unicode characters. For example, it contains
this mapping:
@schemeblock[
("alpha" "α")
]
as well as many more.
}