⇤ ← Revision 1 as of 2008-04-30 10:40:33
Size: 1894
Comment: Initial description
|
Size: 2855
Comment: Initial description
|
Deletions are marked like this. | Additions are marked like this. |
Line 34: | Line 34: |
== Validating the document == It is very important for the toolchain that your documents validate against the Doc``Book schema. To validate the file {{{Book.xml}}}, enter the following command: {{{ $ make validate java -Xss512K -jar /KM/home-0/ziegler/opt/relames-20060319/relames.jar \ /KM/home-0/ziegler/DocBook/docbook-5.0CR5/rng/docbook.rng Book.xml relmes verifier Copyright(C) Sun Microsystems, Inc. 2001 parsing /KM/home-0/ziegler/DocBook/docbook-5.0CR5/rng/docbook.rng validating Book.xml valid }}} == Creating HTML from your document == As you can see from the previous output, the document is valid. Now you can invoke an XSLT processor to create an HTML version of your document by using the Doc``Book XSLT stylesheets. {{{ $ make html }}} This creates a directory called {{{result}}} where the resulting HTML pages are written to. In your browser, open the file {{{result/html/index.html}}}. |
This page tells you how to get started with the DocBook authoring system by starting form a very simple template.
Getting the template
Create a new directory, change into this directory, copy and unpack the template file:
$ mkdir MyDoc $ cd MyDoc/ $ cp ~ziegler/Documents/DocBookProjectTemplate.tgz . $ tar xzf DocBookProjectTemplate.tgz $ rm -f DocBookProjectTemplate.tgz
At this point, the directory contains 3 files:
$ ls Book.xml Makefile schemas.xml
The file schemas.xml tells Emacs where it can find the DocBook schema definition. If you are nort using Emacs, you can safely ignore or delete it.
Editing the document
For editing DocBook documents, you should always use a validating editor.
Validating editors (sometimes also called schema-aware, DTD-aware, or context sensitive editors) are applications that interactively validate documents against a certain schema or DTD as you edit them. Because they understand the schema or DTD rules, they can make editing documents much easier. For example, if you want to insert a new element at a certain point in a DocBook document, a validating editor shows you a list of only those elements that the DocBook schema says are valid at that point in the document (instead of showing you a list of all 375+ elements in DocBook).
You can find a list of validating editors [http://wiki.docbook.org/topic/DocBookAuthoringTools here].
Open the file Book.xml in the editor of your choice and study it. It is quite self-explanatory (which is the sense of having verbose markup).
If you want to know at which point you can insert which element, look at the DocBook Element Reference section in the [http://docbook.org/tdg5/en/html/docbook.html DocBook Definite Guide]. The "TDG" (The Definite Guide) is the most important documentation on DocBook.
Validating the document
It is very important for the toolchain that your documents validate against the DocBook schema.
To validate the file Book.xml, enter the following command:
$ make validate java -Xss512K -jar /KM/home-0/ziegler/opt/relames-20060319/relames.jar \ /KM/home-0/ziegler/DocBook/docbook-5.0CR5/rng/docbook.rng Book.xml relmes verifier Copyright(C) Sun Microsystems, Inc. 2001 parsing /KM/home-0/ziegler/DocBook/docbook-5.0CR5/rng/docbook.rng validating Book.xml valid
Creating HTML from your document
As you can see from the previous output, the document is valid. Now you can invoke an XSLT processor to create an HTML version of your document by using the DocBook XSLT stylesheets.
$ make html
This creates a directory called result where the resulting HTML pages are written to. In your browser, open the file result/html/index.html.