forked from mbattyani/cl-typesetting
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefpackage.lisp
29 lines (26 loc) · 1.16 KB
/
defpackage.lisp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
;;; cl-typesetting copyright 2003-2004 Marc Battyani see license.txt for the details
;;; You can reach me at [email protected] or [email protected]
;;; The homepage of cl-typesetting is here: http://www.fractalconcept.com/asp/html/cl-typesetting.html
(in-package :cl-user)
(defpackage :typeset
(:nicknames :cl-typesetting)
(:use :common-lisp :iterate)
(:nicknames tt)
(:export
#:cannot-fit
#:with-text-content #:with-document #:compile-text #:draw-pages #:finalize-page
#:write-document
#:paragraph
#:with-style #:set-style #:with-style
#:table #:row #:header-row #:footer-row #:cell
#:put-string #:format-string #:verbatim
#:make-filled-vbox
#:vspace #:hspace #:new-line #:new-page
#:with-offset #:with-superscript #:with-subscript
#:hrule #:image #:background-image
#:display-formula #:fraction #:math-super-and-sub-script
#:vbox #:hbox #:colored-box #:user-drawn-box
#:mark-ref-point #:find-ref-point #:find-ref-point-page-number #:find-ref-point-page-data
#:add-contextual-action #:set-contextual-variable #:push-contextual-variable
#:pop-contextual-variable #:get-contextual-variable
#:initialize!))