diff --git a/collects/mrlib/scribblings/tex-table.scrbl b/collects/mrlib/scribblings/tex-table.scrbl new file mode 100644 index 00000000..4b63f83c --- /dev/null +++ b/collects/mrlib/scribblings/tex-table.scrbl @@ -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. + +}