diff options
author | fotis <fotis@unknown> | 2000-12-12 20:15:55 +0000 |
---|---|---|
committer | fotis <fotis@unknown> | 2000-12-12 20:15:55 +0000 |
commit | c84bf2fc8edd7ca0ece94cb285e3ff83c54b2ba6 (patch) | |
tree | 671b96d0b3b4cddd46f78eb2fe34c5296dfb8f6d /docs | |
parent | 188caacff25ddc207de2a7b50e87e3be61b6bb37 (diff) | |
download | xmlgraphics-fop-c84bf2fc8edd7ca0ece94cb285e3ff83c54b2ba6.tar.gz xmlgraphics-fop-c84bf2fc8edd7ca0ece94cb285e3ff83c54b2ba6.zip |
hyphenation documentation
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193865 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs')
-rw-r--r-- | docs/xml-docs/fop/configuration.xml | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/docs/xml-docs/fop/configuration.xml b/docs/xml-docs/fop/configuration.xml new file mode 100644 index 000000000..c5b896f51 --- /dev/null +++ b/docs/xml-docs/fop/configuration.xml @@ -0,0 +1,35 @@ +<?xml version="1.0" standalone="no"?> + + + +<s1 title="Configuration"> + <s2 title="How to configure Fop"> + </s2> + <s2 title="setting up hyphenation"> + <p>Fop comes already with some hyphenation pattern. If you need a hyphenation pattern + which isn't included in the distribution, do the following: + </p> + <p>1. get the TeX hyphenation pattern file and turn it into an xml file which conforms + to the hyphenation.dtd in the sub directory /hyph + </p> + <p>2. name this new file following this schema: languageCode_countryCode.xml. If you don't need + a country code, leave it away, p.e. the file name for an American english hyphenation pattern + would look like this: en_US.xml. For an Italian file: it.xml. Language and country codes must be + the same as in xsl:fo, that is follow + <jump href="http://www.ics.uci.edu/pub/ietf/http/related/iso639.txt">ISO 639</jump> + and <jump href="http://www.ics.uci.edu/pub/ietf/http/related/iso3166.txt">ISO 3166</jump> + respectively. NOTE: The ISO 639/ISO 3166 convention is that language names are + written in lower case, while country codes are written in upper case. + </p> + <p>3. If you have build your new hyphenation pattern file successfully there are + two ways to make it accessible to Fop. + </p> + <p> a) Put this new file into the directory /hyph and rebuild Fop. The file will + be picked up and added to the fop.jar. + </p> + <p> b) Put the file into a directory of your choice and specify this directory + in the userconfig.xml in the entry <hyphenation-dir>. + </p> + </s2> +</s1> + |