eBookTools のパラメータと設定
|
設定
|
|
•
|
設定はキー値のペアを使用して Maple テーブルとして指定します。キーは設定名またはパラメータ名と値です。パラメータと値は convert,string を使用して変換可能な Maple 文字列または式でなければなりません。
|
|
|
DocBook パラメータ
|
|
•
|
デフォルトでは以下の DocBook パラメータが設定されます。
|
名前
|
値
|
body.font.master
|
10
|
body.font.family
|
Times New Roman,serif
|
double.sided
|
1
|
draft.mode
|
no
|
footer.rule
|
0
|
generate.section.toc.level
|
2
|
header.column.widths
|
0 0 1
|
headers.on.blank.pages
|
1
|
insert.xref.page.number
|
yes
|
line-height
|
1.2
|
l10n.gentext.default.language
|
ja
|
l10n.gentext.use.xref.language
|
1
|
l10n.gentext.language
|
ja
|
marker.section.level
|
1
|
paper.type
|
B5
|
page.height
|
9.25in
|
page.height.portrait
|
9.25in
|
page.width
|
7in
|
page.width.portrait
|
7in
|
section.autolabel
|
1
|
section.autolabel.max.depth
|
1
|
section.label.includes.component.label
|
1
|
toc.indent.width
|
12
|
toc.section.depth
|
2
|
title.font.family
|
DejaVu Sans
|
title.margin.left
|
0pc
|
|
|
|
|
eBookTools 設定
|
|
名前
|
タイプ
|
デフォルト値
|
説明
|
mpl.create_index
|
boolean
|
true
|
インデックスを生成
|
mpl.docbook.language
|
string
|
ja
|
処理するドキュメントの言語
|
mpl.error.color
|
string
|
purple
|
Maple エラーの色
|
mpl.images.dpi
|
integer
|
1200
|
生成される画像 (2-D Math およびプロット) の解像度
|
mpl.images.line_breaking_width
|
integer
|
600
|
2-D Math 画像の最大幅 (ピクセル)
|
mpl.max_table_size
|
integer
|
600
|
テーブルの最大幅 (ピクセル)
|
mpl.output.color
|
string
|
blue
|
Maple 出力の色
|
mpl.mw.hyperlink
|
string
|
file
|
MW 出力での章をまたいだハイパーリンクのタイプ。file - ワークシートへのハイパーリンク、help - ヘルプページへのハイパーリンク
|
mpl.pdf.generator
|
string
|
fop
|
FO から PDF へのプロセスで使用されるツール。現在サポートされているのは fop および xep のみ
|
mpl.text.color
|
string
|
red
|
Maple 入力の色
|
mpl.warning.color
|
string
|
blue
|
Maple 警告メッセージの色
|
mpl.mw.active
|
boolean
|
true
|
生成される MW ファイルのドキュメントのプロパティの Active 属性の値
|
mpl.mw.collapse_sections
|
boolean
|
false
|
最初の 2 セクション以外を折りたたむ
|
mpl.save.html
|
boolean
|
false
|
チャンク化されていないスタイルシートで使用するために、DocBook から HTML へのプロセスで生成される XML ドキュメントを保存
|
mpl.html.css
|
string
|
""
|
生成される HTML で使用される CSS スタイルシートのファイル名
|
mpl.html.style
|
string
|
0
|
生成される HTML に埋め込まれる CSS スタイル定義
|
|
|
|
|
例
|
|
>
|
book := NewBook("eBookSample", "eBook Sample Book", "Maplesoft, a division of Waterloo Maple Inc.", "2012"):
|
>
|
AddChapter(book, "legal", cat(kernelopts('datadir'), "/eBookTools/Legal.mw")):
|
>
|
AddChapter(book, "preface", cat(kernelopts('datadir'), "/eBookTools/Preface.mw")):
|
>
|
AddChapter(book, 1, cat(kernelopts('datadir'), "/eBookTools/GettingStartedWithMaple.mw")):
|
カスタム CSS ファイルを使用
>
|
settings := table(["mpl.html.css" = "style/custom.css"]);
|
>
|
CreateHTML(book, settings);
|
|
|
Download Help Document
Was this information helpful?