forgot to add this in the last commit

svn: r10709
This commit is contained in:
Robby Findler 2008-07-10 18:03:39 +00:00
parent 1858924c50
commit 6b9690da71

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.
}