diff --git a/doc/format.ja.md b/doc/format.ja.md index 7c6d4f173..5a8a6e983 100644 --- a/doc/format.ja.md +++ b/doc/format.ja.md @@ -96,7 +96,7 @@ Re:VIEW フォーマットの文法について解説します。Re:VIEW フォ ## 番号付き箇条書き -番号付きの箇条書き(HTML で言う ol)は「` 1. 〜`」「` 2. 〜`」「` 3. 〜`」のように示します。ネストはサポートしていません。 +番号付きの箇条書き(HTML で言う ol)は「` 1. 〜`」「` 2. 〜`」「` 3. 〜`」のように示します。`1-1` のようなネスト出力は標準では提供していません( `//beginchild` 〜 `//endchild` を使った入れ子の表現は可能です)。 例: @@ -108,6 +108,23 @@ Re:VIEW フォーマットの文法について解説します。Re:VIEW フォ 番号付き箇条書きも、ただの箇条書きと同様、行頭に1つ以上の空白が必要です。 +数字が実際にそのとおり出るかは、出力を行うソフトウェアに依存します。 + +- HTML (EPUB), TeX: 記入の数字にかかわらず1から始まる番号になります。 +- IDGXML, テキスト: 記入したとおりの番号が出力されます。よって、すべて「1.」にするといった形にしてしまうとおかしな結果になります。 + +HTML (EPUB) や TeX ビルダにおいて最初の番号を 1 ではないものにしたいときには、`//olnum[番号]` を指定します。なお、番号箇条書きの途中の番号を変えることはできません。 + +例: + +``` +//olnum[10] + + 1. この箇条書きの番号は出力ソフトウェア上では10になる + 2. これは11になる + 6. 記入上で飛ばしても連続数で12となる +``` + ## 用語リスト 用語リスト(HTML で言う dl)は空白→「:」→空白、で始まる行を使って示します。 @@ -186,7 +203,7 @@ Re:VIEW フォーマットの文法について解説します。Re:VIEW フォ ## ソースコードなどのリスト -ソースコードなどのリストには`//list`を使います。連番を付けたくない場合は先頭に `em`(embedded の略)、行番号を付ける場合は末尾に `num` を付加します。まとめると、以下の4種類になります。 +ソースコードなどのリストには `//list` を使います。連番を付けたくない場合は先頭に `em`(embedded の略)、行番号を付ける場合は末尾に `num` を付加します。まとめると、以下の4種類になります。 * `//list[識別子][キャプション][言語指定]{ 〜 //}` * 通常のリスト。言語指定は省略できます。 @@ -471,7 +488,7 @@ complexmatrixという識別子に基づく画像ファイルが貼り込まれ //} ``` -## 引用 +## 引用・中央揃え・右揃え 引用は「`//quote{ 〜 //}`」を使って記述します。 @@ -485,6 +502,24 @@ complexmatrixという識別子に基づく画像ファイルが貼り込まれ 複数の段落を入れる場合は、空行で区切ります。 +中央揃えの段落を表現するには、「`//centering{ 〜 //}`」を使います。同様に右寄せにするには「`//flushright{ 〜 //}`」を使います。複数の段落を入れる場合は、空行で区切ります。 + +例: + +``` +//centering{ +これは + +中央合わせ +//} + +//flushright{ +これは + +右寄せ合わせ +//} +``` + ## 囲み記事 技術書でよくある、コラムにするほどではないけれども本文から独立したちょっとした記事を入れるために、以下の命令があります。 @@ -634,7 +669,7 @@ LaTeX の式を挿入するには、`//texequation{ 〜 //}` を使います。 参照するにはインライン命令 `@` を使います(たとえば `@{emc}`)。 -インライン命令では `@{〜}` を使います。インライン命令の式中に「}」を含む場合、`\}` とエスケープする必要があることに注意してください(`{` はエスケープ不要)。「インライン命令のフェンス記法」も参照してください。 +インライン命令では `@{〜}` を使います。インライン命令の式中に「}」を含む場合、`\}` とエスケープする必要があることに注意してください(`{` はエスケープ不要)。長い式を書くときにはフェンス記法(`@$〜$` または `@|〜|`)を使うと、エスケープが不要になり、記述が楽になります。「インライン命令のフェンス記法」を参照してください。 LaTeX の数式が正常に整形されるかどうかは処理系に依存します。LaTeX を利用する PDFMaker では問題なく利用できます。 @@ -889,32 +924,7 @@ Lesser General Public License, ★"i"nternationalizatio"n"☆ ## 生データ行 -Re:VIEW のタグ範囲を超えて何か特別な行を挿入したい場合、`//raw` ブロック命令や`//embed`ブロック命令、または `@` インライン命令や `@` インライン命令を使います。 - -### `//raw`行 - -例: - -``` -//raw[|html|
\nここは特別な行です。\n
] -``` - -ブロック命令は1つだけオプションをとり、「|ビルダ名|そのまま出力させる内容」という書式です。`\n`は改行文字に変換されます。 - -ビルダ名には「`html`」「`latex`」「`idgxml`」「`markdown`」「`top`」のいずれかが入ります。ビルダ名は「,」で区切って複数指定することも可能です。該当のビルダを使用しているときのみ、内容が出力されます。 - -例: - -``` -(HTMLビルダの場合:) -
-ここは特別な行です。 -
- -(ほかのビルダの場合は単に無視されて何も出力されない) -``` - -インライン命令は、`@{|ビルダ名|〜}` という書式で、記述はブロック命令に同じです。 +Re:VIEW のタグ範囲を超えて何か特別な行を挿入したい場合、`//embed`ブロック命令や `@` インライン命令を使います。ほかに従来の `//raw` ブロック命令および `@` インライン命令もありますが、IDGXML ビルダ以外での使用は推奨しません。 ### `//embed`ブロック @@ -963,13 +973,38 @@ LaTeXビルダを使用している場合: ``` +### `//raw`行(IDGXML ビルダ以外では非推奨) + +例: + +``` +//raw[|html|
\nここは特別な行です。\n
] +``` + +ブロック命令は1つだけオプションをとり、「|ビルダ名|そのまま出力させる内容」という書式です。`\n`は改行文字に変換されます。 + +ビルダ名には「`html`」「`latex`」「`idgxml`」「`markdown`」「`top`」のいずれかが入ります。ビルダ名は「,」で区切って複数指定することも可能です。該当のビルダを使用しているときのみ、内容が出力されます。 + +例: + +``` +(HTMLビルダの場合:) +
+ここは特別な行です。 +
+ +(ほかのビルダの場合は単に無視されて何も出力されない) +``` + +インライン命令は、`@{|ビルダ名|〜}` という書式で、記述はブロック命令に同じです。 + `//raw`、`//embed`、`@` および `@` は、HTML、XML や TeX の文書構造を容易に壊す可能性があります。使用には十分に注意してください。 ### 入れ子の箇条書き Re:VIEW の箇条書きは `*` 型の箇条書きを除き、基本的に入れ子を表現できません。いずれの箇条書きも、別の箇条書き、あるいは図表・リストを箇条書きの途中に配置することを許容していません。 -この対策として、Re:VIEW 4.2 では試験的に `//beginchild`、`//endchild` というブロック命令を追加しています。箇条書きの途中に何かを含めたいときには、それを `//beginchild` 〜 `//endchild` で囲んで配置します。多重に入れ子にすることも可能です。 +この対策として、Re:VIEW 4.2 以降では `//beginchild`、`//endchild` というブロック命令があります。箇条書きの途中に何かを含めたいときには、それを `//beginchild` 〜 `//endchild` で囲んで配置します。多重に入れ子にすることも可能です。 ``` * UL1 @@ -1054,6 +1089,8 @@ UL1-OL1-PARAGRAPH * `@{〜}` : 縦書きの文書において文字を縦中横にします。 * `@{〜}` : 挿入箇所を明示します(デフォルトでは下線が引かれます)。 * `@{〜}` : 削除箇所を明示します(デフォルトでは打ち消し線が引かれます)。 +* `@{〜}` : 上付き文字にします。 +* `@{〜}` : 下付き文字にします。 ### 参照 * `@{章ファイル名}` : 「第17章」のような、章番号を含むテキストに置換されます。 @@ -1075,8 +1112,8 @@ UL1-OL1-PARAGRAPH * `@{数式}` : インラインの数式を出力します。 * `@{キー}` : キー文字列に対応する、単語ファイル内の値文字列を展開します。 * `@{キー}` : キー文字列に対応する、単語ファイル内の値文字列を展開し、太字にします。 -* `@{|ビルダ|〜}` : 生の文字列を出力します。`\}`は`}`に、`\\`は`\`に、`\n`は改行に置き換えられます。 * `@{|ビルダ|〜}` : 生の文字列を埋め込みます。`\}`は`}`に、`\\`は`\`に置き換えられます(`\n`はそのままです)。 +* `@{|ビルダ|〜}` : 生の文字列を出力します。`\}`は`}`に、`\\`は`\`に、`\n`は改行に置き換えられます(非推奨)。 * `@{文字列}` : 文字列を出力するとともに、索引として登録します。索引の使い方については、makeindex.ja.md を参照してください。 * `@{文字列}` : 索引として登録します (idx と異なり、紙面内に出力はしません)。`親索引文字列<<>>子索引文字列` のように親子関係にある索引も定義できます。 * `@{〜}` : コードブロック (emlist など) 内などでのいわゆる吹き出しを作成します。たとえば「`@{ABC}`」とすると、「`←ABC`」となります。デフォルトの挙動および表現は簡素なので、より装飾されたものにするにはスタイルシートを改変するか、`review-ext.rb` を使って挙動を書き換える必要があります。 diff --git a/doc/format.md b/doc/format.md index 64de40ddd..770263f6d 100644 --- a/doc/format.md +++ b/doc/format.md @@ -4,7 +4,7 @@ The document is a brief guide for Re:VIEW markup syntax. Re:VIEW is based on EWB of ASCII (now KADOKAWA), influenced RD and other Wiki system's syntax. -This document explains about the format of Re:VIEW 5.3. +This document explains about the format of Re:VIEW 5.5. ## Paragraph @@ -112,7 +112,7 @@ You should add emply lines between Paragraphs and Itemize (same as Ordered and N ## Ordered Itemize Ordered itemize (ol in HTML) uses ` 1. ...`, ` 2. ...`, ` 3. ...`. -They aren't nested. +Nesting output like `1-1` is not supported by default (nesting can be expressed using `//beginchild` - `//endchild`). Usage: @@ -122,15 +122,24 @@ Usage: 3. 3rd condition ``` -The value of Number is ignored. +You must write one more space character at line head like itemize. + +Whether the numbers appear as described depends on the software that produces the output. + +* HTML (EPUB), TeX: The number will start from 1 regardless of the number entered. +* IDGXML, text: The numbers will be output as described. Therefore, writing all numbers as "1." will produce strange results. + +In HTML (EPUB) and TeX builders, use `//olnum[number]` to change the first number. Note that the intermediate numbers cannot be changed. + +Usage: ``` - 1. 1st condition - 1. 2nd condition - 1. 3rd condition -``` +//olnum[10] -You must write one more space character at line head like itemize. + 1. This number will be 10 + 2. This number will be 11 + 6. 12 in continuity, not 6 or 15. +``` ## Definition List @@ -512,6 +521,26 @@ Seeing is believing. You can use inline markup in quotations. +Center-aligned paragraphs are represented by `//centering{ ~ //}` and right-aligned paragraphs by `//flushright{ ~ //}`. + +To include multiple paragraphs, separate them with a blank line. + +Usage: + +``` +//centering{ +This is + +center aligned. +//} + +//flushright{ +This is + +right aligned. +//} +``` + ## Short column Some block commands are used for short column. @@ -670,7 +699,7 @@ If you'd like to assign a number like 'Equation 1.1`, specify the identifier and To reference this, use the inline command `@`. -There is `@{ ... }` for inline (see "Fence notation for inline commands" section also). +There is `@{ ... }` for inline. When writing long expressions, it is convenient to use fence notation (`@$~$` or `@|~|`) to avoid escaping. (see "Fence notation for inline commands" section also). Whether LaTeX formula is correctly displayed or not depends on the processing system. PDFMaker uses LaTeX internally, so there is no problem. @@ -943,20 +972,27 @@ Usage: ## Raw Data Block -When you want to write non-Re:VIEW line, use `//raw` or `//embed`. +When you want to write non-Re:VIEW line, use `//embed` or `@`. -### `//raw` block +### `//embed` block Usage: ``` -//raw[|html|
\nthis is a special line.\n
] +//embed{ +
+this is a special line. +
+//} + +//embed[html,markdown]{ +
+this is a special line. +
+//} ``` -In above line, `html` is a builder name that handle raw data. -You can use `html`, `latex`, `idgxml` and `top` as builder name. -You can specify multiple builder names with separator `,`. -`\n` is translated into newline(U+000A). +In above line, `html` and `markdown` is a builder name that handle raw data. Output: @@ -970,27 +1006,22 @@ this is a special line. (In other formats, it is just ignored.) -Note: `//raw` and `@` may break structured document easily. +For inline, use `@{|builder|raw string}`. -### `//embed` block +### `//raw` block + +`//raw` and `@` is an old notation and should no longer be used (use it only if you want to avoid line breaks in IDGXML builder). Usage: ``` -//embed{ -
-this is a special line. -
-//} - -//embed[html,markdown]{ -
-this is a special line. -
-//} +//raw[|html|
\nthis is a special line.\n
] ``` -In above line, `html` and `markdown` is a builder name that handle raw data. +In above line, `html` is a builder name that handle raw data. +You can use `html`, `latex`, `idgxml` and `top` as builder name. +You can specify multiple builder names with separator `,`. +`\n` is translated into newline(U+000A). Output: @@ -1004,11 +1035,13 @@ this is a special line. (In other formats, it is just ignored.) +Note: `//embed`, `@`, `//raw` and `@` may break structured document easily. + ### Nested itemize block Re:VIEW itemize blocks basically cannot express nested items. Also, none of itemize blocks allow to contain another itemize block or paragraph/image/table/list. -As a workaround, Re:VIEW 4.2 provides an experimental `//beginchild` and `//endchild`. If you want to include something in an itemize block, enclose it with `//beginchild` and `//endchild`. It is also possible to create a multiple nest. +As a workaround, Re:VIEW provides `//beginchild` and `//endchild` since Re:VIEW 4.2. If you want to include something in an itemize block, enclose it with `//beginchild` and `//endchild`. It is also possible to create a multiple nest. ``` * UL1 @@ -1091,9 +1124,11 @@ Output: @{FooClass}:: teletype (monospaced font) and italic @{BarClass}:: teletype (monospaced font) and bold @{a.foo(bar)}:: teletype (monospaced font) for fragments of code -@{}:: short horizontal text in vertical text +@{text}:: short horizontal text in vertical text @{sentence}:: inserted part (underline) @{sentence}:: deleted part (strike through) +@{text}:: superscript +@{text}:: subscript ``` ### References @@ -1121,8 +1156,8 @@ Output: @{a + \alpha}:: TeX inline equation @{key}:: expand the value corresponding to the key. @{key}:: expand the value corresponding to the key with bold style. -@{|html|ABC}:: inline raw data inline. `\}` is `}`, `\\` is `\`, and `\n` is newline. @{|html|ABC}:: inline raw data inline. `\}` is `}` and `\\` is `\`. +@{|html|ABC}:: inline raw data inline. `\}` is `}`, `\\` is `\`, and `\n` is newline. (deprecated) @{string}:: output a string and register it as an index. See makeindex.md. @{string}:: register a string as an index. A leveled index is expressed like `parent<<>>child` @{abc}:: inline balloon in code block. For example, `@{ABC}` produces `←ABC`. This may seem too simple. To decorate it, modify the style sheet file or override a function by `review-ext.rb` diff --git a/lib/review/i18n.yml b/lib/review/i18n.yml index 4775dffcd..d7c52cafa 100644 --- a/lib/review/i18n.yml +++ b/lib/review/i18n.yml @@ -17,7 +17,14 @@ ja: hd_quote_without_number: "「%s」" appendix: 付録%pA numberless_image: "図:" - memo_head: ■メモ + note_head: NOTE + tip_head: TIP + info_head: INFORMATION + warning_head: WARNING + important_head: IMPORTANT + caution_head: CAUTION + notice_head: NOTICE + memo_head: MEMO format_number: "%s.%d" format_number_header: "%s.%d:" format_number_without_chapter: "%d" @@ -107,7 +114,14 @@ en: hd_quote_without_number: '"%s"' appendix: Appendix %s numberless_image: "Figure:" - memo_head: Note + note_head: NOTE + tip_head: TIP + info_head: INFORMATION + warning_head: WARNING + important_head: IMPORTANT + caution_head: CAUTION + notice_head: NOTICE + memo_head: MEMO format_number: "%s.%d" format_number_header: "%s.%d:" format_number_without_chapter: "%d" @@ -178,6 +192,14 @@ zh-TW: hd_quote_without_number: "「%s」" appendix: 附錄%s numberless_image: "圖:" + note_head: NOTE + tip_head: TIP + info_head: INFORMATION + warning_head: WARNING + important_head: IMPORTANT + caution_head: CAUTION + notice_head: NOTICE + memo_head: MEMO format_number: "%s.%d" format_number_header: "%s.%d:" format_number_without_chapter: "%d" diff --git a/templates/latex/config.erb b/templates/latex/config.erb index 5abb28d79..0f3b9cc96 100644 --- a/templates/latex/config.erb +++ b/templates/latex/config.erb @@ -34,7 +34,9 @@ \def\review@intn@table{<%= escape(I18n.t('table')) %>} \def\review@intn@equation{<%= escape(I18n.t('equation')) %>} \def\review@intn@columnname{<%= escape(I18n.t('columnname')) %>} -\def\review@intn@memohead{<%= escape(I18n.t('memo_head')) %>} +<%- %w[note tip info warning important caution notice memo].each do |mini| -%> +\def\review@intn@<%= mini%>head{<%= escape(I18n.t("#{mini}_head")) %>} +<%- end -%> \def\review@intn@edition{<%= escape(I18n.t('edition')) %>} \def\review@intn@publishedby{<%= escape(I18n.t('published_by', @config.names_of('pbl').join(I18n.t('names_splitter'))))%>} \def\review@intn@captionprefix{<%= escape(I18n.t('caption_prefix')) %>} diff --git a/templates/latex/review-jlreq/review-base.sty b/templates/latex/review-jlreq/review-base.sty index 27ce95f97..ffe211282 100644 --- a/templates/latex/review-jlreq/review-base.sty +++ b/templates/latex/review-jlreq/review-base.sty @@ -146,35 +146,35 @@ % 囲み記事 \newenvironment{reviewnote}[1][]{% - \begin{tcolorbox}[skin=enhanced jigsaw,breakable,empty,coltitle=black,title={\sffamily\bfseries NOTE #1},borderline horizontal={0.5mm}{0pt}{black!50}, left=1mm, right=1mm, left skip=6mm]} + \begin{tcolorbox}[skin=enhanced jigsaw,breakable,empty,coltitle=black,title={\sffamily\bfseries \review@intn@notehead\hspace{0.75\zw}#1},borderline horizontal={0.5mm}{0pt}{black!50}, left=1mm, right=1mm, left skip=6mm]} {\end{tcolorbox}} \newenvironment{reviewmemo}[1][]{% - \begin{tcolorbox}[skin=enhanced jigsaw,breakable,empty,coltitle=black,title={\sffamily\bfseries MEMO #1},borderline horizontal={0.5mm}{0pt}{black!50}, left=1mm, right=1mm, left skip=6mm]} + \begin{tcolorbox}[skin=enhanced jigsaw,breakable,empty,coltitle=black,title={\sffamily\bfseries \review@intn@memohead\hspace{0.75\zw}#1},borderline horizontal={0.5mm}{0pt}{black!50}, left=1mm, right=1mm, left skip=6mm]} {\end{tcolorbox}} \newenvironment{reviewtip}[1][]{% - \begin{tcolorbox}[skin=enhanced jigsaw,breakable,empty,coltitle=black,title={\sffamily\bfseries Tips #1},borderline horizontal={0.5mm}{0pt}{black!50}, left=1mm, right=1mm, left skip=6mm]} + \begin{tcolorbox}[skin=enhanced jigsaw,breakable,empty,coltitle=black,title={\sffamily\bfseries \review@intn@tiphead\hspace{0.75\zw}#1},borderline horizontal={0.5mm}{0pt}{black!50}, left=1mm, right=1mm, left skip=6mm]} {\end{tcolorbox}} \newenvironment{reviewinfo}[1][]{% - \begin{tcolorbox}[skin=enhanced jigsaw,breakable,empty,coltitle=black,title={\sffamily\bfseries INFORMATION #1},borderline horizontal={0.5mm}{0pt}{black!50}, left=1mm, right=1mm, left skip=6mm]} + \begin{tcolorbox}[skin=enhanced jigsaw,breakable,empty,coltitle=black,title={\sffamily\bfseries \review@intn@infohead\hspace{0.75\zw}#1},borderline horizontal={0.5mm}{0pt}{black!50}, left=1mm, right=1mm, left skip=6mm]} {\end{tcolorbox}} \newenvironment{reviewwarning}[1][]{% - \begin{tcolorbox}[skin=enhanced jigsaw,breakable,empty,coltitle=black,title={\sffamily\bfseries WARNING! #1},borderline horizontal={0.5mm}{0pt}{black!50}, left=1mm, right=1mm, left skip=6mm]} + \begin{tcolorbox}[skin=enhanced jigsaw,breakable,empty,coltitle=black,title={\sffamily\bfseries \review@intn@warninghead\hspace{0.75\zw}#1},borderline horizontal={0.5mm}{0pt}{black!50}, left=1mm, right=1mm, left skip=6mm]} {\end{tcolorbox}} \newenvironment{reviewimportant}[1][]{% - \begin{tcolorbox}[skin=enhanced jigsaw,breakable,empty,coltitle=black,title={\sffamily\bfseries IMPORTANT! #1},borderline horizontal={0.5mm}{0pt}{black!50}, left=1mm, right=1mm, left skip=6mm]} + \begin{tcolorbox}[skin=enhanced jigsaw,breakable,empty,coltitle=black,title={\sffamily\bfseries \review@intn@importanthead\hspace{0.75\zw}#1},borderline horizontal={0.5mm}{0pt}{black!50}, left=1mm, right=1mm, left skip=6mm]} {\end{tcolorbox}} \newenvironment{reviewcaution}[1][]{% - \begin{tcolorbox}[skin=enhanced jigsaw,breakable,empty,coltitle=black,title={\sffamily\bfseries CAUTION! #1},borderline horizontal={0.5mm}{0pt}{black!50}, left=1mm, right=1mm, left skip=6mm]} + \begin{tcolorbox}[skin=enhanced jigsaw,breakable,empty,coltitle=black,title={\sffamily\bfseries \review@intn@cautionhead\hspace{0.75\zw}#1},borderline horizontal={0.5mm}{0pt}{black!50}, left=1mm, right=1mm, left skip=6mm]} {\end{tcolorbox}} \newenvironment{reviewnotice}[1][]{% - \begin{tcolorbox}[skin=enhanced jigsaw,breakable,empty,coltitle=black,title={\sffamily\bfseries NOTICE #1},borderline horizontal={0.5mm}{0pt}{black!50}, left=1mm, right=1mm, left skip=6mm]} + \begin{tcolorbox}[skin=enhanced jigsaw,breakable,empty,coltitle=black,title={\sffamily\bfseries \review@intn@noticehead\hspace{0.75\zw}#1},borderline horizontal={0.5mm}{0pt}{black!50}, left=1mm, right=1mm, left skip=6mm]} {\end{tcolorbox}} % 書体 diff --git a/templates/latex/review-jsbook/review-base.sty b/templates/latex/review-jsbook/review-base.sty index 55b1d0851..6c4c6d7f4 100644 --- a/templates/latex/review-jsbook/review-base.sty +++ b/templates/latex/review-jsbook/review-base.sty @@ -214,9 +214,9 @@ \renewcommand{\thesection}{\thepart.\@arabic\c@section}% }{} -\newcommand{\reviewminicolumntitle}[1]{% +\newcommand{\reviewminicolumntitle}[2]{% \review@ifempty{#1}{}{% - {\large \review@intn@memohead{}: #1}\\}} + {\large ■#2: #1}\\}} \renewcommand{\contentsname}{\review@toctitle} @@ -226,35 +226,35 @@ \newenvironment{reviewnote}[1][]{% \begin{reviewminicolumn} -\review@ifempty{#1}{}{\reviewminicolumntitle{#1}} + \reviewminicolumntitle{#1}{\review@intn@notehead} }{\end{reviewminicolumn}} \newenvironment{reviewmemo}[1][]{% \begin{reviewminicolumn} - \reviewminicolumntitle{#1} + \reviewminicolumntitle{#1}{\review@intn@memohead} }{\end{reviewminicolumn}} \newenvironment{reviewtip}[1][]{% \begin{reviewminicolumn} - \reviewminicolumntitle{#1} + \reviewminicolumntitle{#1}{\review@intn@tiphead} }{\end{reviewminicolumn}} \newenvironment{reviewinfo}[1][]{% \begin{reviewminicolumn} - \reviewminicolumntitle{#1} + \reviewminicolumntitle{#1}{\review@intn@infohead} }{\end{reviewminicolumn}} \newenvironment{reviewwarning}[1][]{% \begin{reviewminicolumn} - \reviewminicolumntitle{#1} + \reviewminicolumntitle{#1}{\review@intn@warninghead} }{\end{reviewminicolumn}} \newenvironment{reviewimportant}[1][]{% \begin{reviewminicolumn} - \reviewminicolumntitle{#1} + \reviewminicolumntitle{#1}{\review@intn@importanthead} }{\end{reviewminicolumn}} \newenvironment{reviewcaution}[1][]{% \begin{reviewminicolumn} - \reviewminicolumntitle{#1} + \reviewminicolumntitle{#1}{\review@intn@cautionhead} }{\end{reviewminicolumn}} \newenvironment{reviewnotice}[1][]{% \begin{reviewminicolumn} - \reviewminicolumntitle{#1} + \reviewminicolumntitle{#1}{\review@intn@noticehead} }{\end{reviewminicolumn}} \DeclareRobustCommand{\reviewkw}[1]{\textbf{\textgt{#1}}} diff --git a/test/assets/test_template.tex b/test/assets/test_template.tex index 44bd41435..881e9beef 100644 --- a/test/assets/test_template.tex +++ b/test/assets/test_template.tex @@ -22,7 +22,14 @@ \def\review@intn@table{表} \def\review@intn@equation{式} \def\review@intn@columnname{コラム} -\def\review@intn@memohead{■メモ} +\def\review@intn@notehead{NOTE} +\def\review@intn@tiphead{TIP} +\def\review@intn@infohead{INFORMATION} +\def\review@intn@warninghead{WARNING} +\def\review@intn@importanthead{IMPORTANT} +\def\review@intn@cautionhead{CAUTION} +\def\review@intn@noticehead{NOTICE} +\def\review@intn@memohead{MEMO} \def\review@intn@edition{版} \def\review@intn@publishedby{ 発行} \def\review@intn@captionprefix{ } diff --git a/test/assets/test_template_backmatter.tex b/test/assets/test_template_backmatter.tex index 5efef2521..71d44bb59 100644 --- a/test/assets/test_template_backmatter.tex +++ b/test/assets/test_template_backmatter.tex @@ -22,7 +22,14 @@ \def\review@intn@table{表} \def\review@intn@equation{式} \def\review@intn@columnname{コラム} -\def\review@intn@memohead{■メモ} +\def\review@intn@notehead{NOTE} +\def\review@intn@tiphead{TIP} +\def\review@intn@infohead{INFORMATION} +\def\review@intn@warninghead{WARNING} +\def\review@intn@importanthead{IMPORTANT} +\def\review@intn@cautionhead{CAUTION} +\def\review@intn@noticehead{NOTICE} +\def\review@intn@memohead{MEMO} \def\review@intn@edition{版} \def\review@intn@publishedby{ 発行} \def\review@intn@captionprefix{ }