blob: 5c98f8326ad43902896b2a48d54e229e2d893bd2 (
plain)
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
;;; context.skb -- Documentation of the ConTeXt engine.
;;; -*- coding: iso-8859-1 -*-
;;;
;;; Copyright 2008 Ludovic Court�s <ludo@gnu.org>
;;;
;;;
;;; This file is part of Skribilo.
;;;
;;; Skribilo is free software: you can redistribute it and/or modify
;;; it under the terms of the GNU General Public License as published by
;;; the Free Software Foundation, either version 3 of the License, or
;;; (at your option) any later version.
;;;
;;; Skribilo is distributed in the hope that it will be useful,
;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with Skribilo. If not, see <http://www.gnu.org/licenses/>.
;*---------------------------------------------------------------------*/
;* Document */
;*---------------------------------------------------------------------*/
(section :title "ConTeXt Engine" :file #t
(mark "context-engine")
(index "ConTeXt" :note "Engine")
(p [The ,(tt [context]) engine produces documents for the ,(ref :text
[ConTeXt] :url "http://www.pragma-ade.nl/") document layout system,
which can then be used to produce high-quality PostScript or PDF
output.])
(section :title [ConTeXt Customization]
(doc-engine 'context
`((document-style ,[A string describing the document style.])
(user-style ,[A string denoting a the name of a file
specifying user customization])
(font-type ,[A string denoting the default font family.])
(font-size ,[An integer representing the default font size.])
(image-format ,[A list of supported image formats.])
(source-comment-color "The source comment color.")
(source-error-color "The source error color.")
(source-define-color "The source define color.")
(source-module-color "The source module color.")
(source-markup-color "The source markup color.")
(source-thread-color "The source thread color.")
(source-string-color "The source string color.")
(source-bracket-color "The source bracket color.")
(source-type-color "The source type color."))
:source "skribilo/engine/context.scm")))
;;; Local Variables:
;;; ispell-local-dictionary: "american"
;;; End:
|