review 4.0.0 → 5.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (268) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/ruby-tex.yml +31 -0
  3. data/.github/workflows/ruby-win.yml +45 -0
  4. data/.github/workflows/ruby.yml +27 -0
  5. data/.rubocop.yml +141 -38
  6. data/Dockerfile +21 -5
  7. data/NEWS.ja.md +338 -1
  8. data/NEWS.md +339 -2
  9. data/README.md +11 -7
  10. data/Rakefile +7 -2
  11. data/appveyor.yml +0 -20
  12. data/bin/review +2 -4
  13. data/bin/review-catalog-converter +4 -4
  14. data/bin/review-check +8 -12
  15. data/bin/review-checkdep +2 -5
  16. data/bin/review-compile +11 -20
  17. data/bin/review-epub2html +1 -4
  18. data/bin/review-epubmaker +3 -4
  19. data/bin/review-idgxmlmaker +1 -3
  20. data/bin/review-index +5 -86
  21. data/bin/review-init +1 -4
  22. data/bin/review-pdfmaker +1 -3
  23. data/bin/review-preproc +3 -5
  24. data/bin/review-textmaker +1 -3
  25. data/bin/review-update +1 -4
  26. data/bin/review-validate +5 -5
  27. data/bin/review-vol +5 -82
  28. data/bin/review-webmaker +1 -3
  29. data/doc/config.yml.sample +55 -12
  30. data/doc/config.yml.sample-simple +4 -3
  31. data/doc/format.ja.md +119 -17
  32. data/doc/format.md +106 -17
  33. data/doc/makeindex.ja.md +2 -2
  34. data/doc/pdfmaker.ja.md +42 -0
  35. data/doc/pdfmaker.md +41 -0
  36. data/doc/quickstart.ja.md +55 -25
  37. data/doc/quickstart.md +47 -17
  38. data/lib/review.rb +1 -1
  39. data/lib/review/book.rb +2 -2
  40. data/lib/review/book/base.rb +69 -30
  41. data/lib/review/book/bib.rb +21 -0
  42. data/lib/review/book/book_unit.rb +158 -0
  43. data/lib/review/book/chapter.rb +33 -26
  44. data/lib/review/book/index.rb +39 -206
  45. data/lib/review/book/index/item.rb +8 -2
  46. data/lib/review/book/page_metric.rb +7 -7
  47. data/lib/review/book/part.rb +26 -11
  48. data/lib/review/book/volume.rb +5 -5
  49. data/lib/review/builder.rb +124 -27
  50. data/lib/review/call_hook.rb +20 -0
  51. data/lib/review/catalog.rb +3 -2
  52. data/lib/review/compiler.rb +197 -91
  53. data/lib/review/configure.rb +95 -9
  54. data/lib/review/converter.rb +1 -1
  55. data/lib/review/epub2html.rb +6 -1
  56. data/lib/review/epubmaker.rb +116 -117
  57. data/lib/review/epubmaker/content.rb +113 -0
  58. data/lib/review/epubmaker/epubcommon.rb +372 -0
  59. data/lib/review/epubmaker/epubv2.rb +178 -0
  60. data/lib/review/epubmaker/epubv3.rb +231 -0
  61. data/lib/review/epubmaker/producer.rb +168 -0
  62. data/lib/review/epubmaker/reviewheaderlistener.rb +12 -2
  63. data/lib/review/epubmaker/zip_exporter.rb +84 -0
  64. data/lib/review/exception.rb +6 -0
  65. data/lib/review/extentions/string.rb +0 -4
  66. data/lib/review/htmlbuilder.rb +132 -87
  67. data/lib/review/htmlutils.rb +8 -11
  68. data/lib/review/i18n.rb +2 -1
  69. data/lib/review/idgxmlbuilder.rb +156 -76
  70. data/lib/review/idgxmlmaker.rb +22 -18
  71. data/lib/review/img_math.rb +245 -0
  72. data/lib/review/index_builder.rb +654 -0
  73. data/lib/review/init.rb +17 -18
  74. data/lib/review/latexbox.rb +58 -0
  75. data/lib/review/latexbuilder.rb +173 -43
  76. data/lib/review/latexutils.rb +9 -1
  77. data/lib/review/lineinput.rb +112 -2
  78. data/lib/review/logger.rb +42 -3
  79. data/lib/review/makerhelper.rb +12 -187
  80. data/lib/review/markdownbuilder.rb +51 -2
  81. data/lib/review/pdfmaker.rb +78 -73
  82. data/lib/review/plaintextbuilder.rb +98 -14
  83. data/lib/review/preprocessor.rb +18 -12
  84. data/lib/review/rstbuilder.rb +28 -9
  85. data/lib/review/sec_counter.rb +14 -0
  86. data/lib/review/template.rb +6 -0
  87. data/lib/review/textmaker.rb +21 -19
  88. data/lib/review/textutils.rb +3 -12
  89. data/lib/review/tocprinter.rb +242 -97
  90. data/lib/review/topbuilder.rb +91 -24
  91. data/lib/review/update.rb +12 -13
  92. data/lib/review/version.rb +1 -1
  93. data/lib/review/volumeprinter.rb +97 -0
  94. data/lib/review/webmaker.rb +34 -33
  95. data/lib/review/webtocprinter.rb +39 -35
  96. data/lib/review/yamlloader.rb +2 -1
  97. data/review.gemspec +5 -3
  98. data/samples/sample-book/src/.gitignore +1 -0
  99. data/samples/sample-book/src/config-ebook.yml +4 -0
  100. data/samples/sample-book/src/config-epub2.yml +1 -1
  101. data/samples/sample-book/src/config-jlreq-ebook.yml +4 -0
  102. data/samples/sample-book/src/config.yml +3 -3
  103. data/samples/sample-book/src/lib/tasks/review.rake +26 -6
  104. data/samples/syntax-book/Gemfile +1 -1
  105. data/samples/syntax-book/ch01.re +3 -1
  106. data/samples/syntax-book/ch02.re +28 -21
  107. data/samples/syntax-book/ch03.re +1 -1
  108. data/samples/syntax-book/config-jlreq-lualatex.yml +4 -0
  109. data/samples/syntax-book/config-print.yml +3 -0
  110. data/samples/syntax-book/config.yml +1 -1
  111. data/samples/syntax-book/images/img3-2.png +0 -0
  112. data/samples/syntax-book/lib/tasks/review.rake +23 -8
  113. data/templates/html/_colophon.html.erb +23 -0
  114. data/templates/html/_colophon_history.html.erb +9 -0
  115. data/templates/html/_cover.html.erb +10 -0
  116. data/templates/html/_part_body.html.erb +6 -0
  117. data/templates/html/_titlepage.html.erb +20 -0
  118. data/templates/html/layout-html5.html.erb +6 -0
  119. data/templates/html/layout-xhtml1.html.erb +6 -0
  120. data/templates/latex/config.erb +41 -29
  121. data/templates/latex/review-jlreq/README.md +3 -1
  122. data/templates/latex/review-jlreq/review-base.sty +47 -22
  123. data/templates/latex/review-jlreq/review-jlreq.cls +25 -24
  124. data/templates/latex/review-jlreq/review-style.sty +6 -1
  125. data/templates/latex/review-jlreq/review-tcbox.sty +348 -0
  126. data/templates/latex/review-jlreq/reviewmacro.sty +5 -0
  127. data/templates/latex/review-jsbook/README.md +7 -5
  128. data/templates/latex/review-jsbook/review-base.sty +47 -21
  129. data/templates/latex/review-jsbook/review-jsbook.cls +12 -2
  130. data/templates/latex/review-jsbook/review-style.sty +6 -1
  131. data/templates/latex/review-jsbook/review-tcbox.sty +348 -0
  132. data/templates/latex/review-jsbook/reviewmacro.sty +5 -0
  133. data/templates/opf/epubv2.opf.erb +7 -7
  134. data/templates/opf/epubv3.opf.erb +7 -7
  135. data/templates/opf/opf_manifest_epubv2.opf.erb +10 -0
  136. data/templates/opf/opf_manifest_epubv3.opf.erb +10 -0
  137. data/templates/opf/opf_metainfo_epubv2.opf.erb +17 -0
  138. data/templates/opf/opf_metainfo_epubv3.opf.erb +49 -0
  139. data/templates/opf/opf_tocx_epubv2.opf.erb +9 -0
  140. data/templates/opf/opf_tocx_epubv3.opf.erb +17 -0
  141. data/templates/web/html/layout-html5.html.erb +9 -8
  142. data/templates/web/html/layout-xhtml1.html.erb +6 -0
  143. data/test/assets/header_listener.html +35 -0
  144. data/test/assets/img_math/img1.png +0 -0
  145. data/test/assets/img_math/img2.png +0 -0
  146. data/test/assets/img_math/img3.png +0 -0
  147. data/test/assets/syntax_book_index_detail.txt +58 -0
  148. data/test/assets/test_template.tex +12 -9
  149. data/test/assets/test_template_backmatter.tex +12 -9
  150. data/test/book_test_helper.rb +11 -5
  151. data/test/run_test.rb +1 -1
  152. data/test/test_book.rb +62 -63
  153. data/test/test_book_chapter.rb +99 -56
  154. data/test/test_book_part.rb +3 -3
  155. data/test/test_builder.rb +24 -15
  156. data/test/test_catalog.rb +1 -0
  157. data/test/test_catalog_converter_cmd.rb +1 -1
  158. data/test/test_converter.rb +1 -0
  159. data/test/test_epub3maker.rb +170 -126
  160. data/test/test_epubmaker.rb +249 -129
  161. data/test/test_epubmaker_cmd.rb +14 -7
  162. data/test/test_helper.rb +23 -11
  163. data/test/test_htmlbuilder.rb +956 -76
  164. data/test/test_htmlutils.rb +0 -12
  165. data/test/test_i18n.rb +33 -33
  166. data/test/test_idgxmlbuilder.rb +568 -10
  167. data/test/test_idgxmlmaker_cmd.rb +50 -0
  168. data/test/test_image_finder.rb +52 -70
  169. data/test/test_img_math.rb +111 -0
  170. data/test/test_index.rb +62 -52
  171. data/test/test_indexbuilder.rb +52 -0
  172. data/test/test_latexbuilder.rb +1056 -30
  173. data/test/test_latexbuilder_v2.rb +52 -12
  174. data/test/test_lineinput.rb +20 -93
  175. data/test/test_logger.rb +7 -7
  176. data/test/test_makerhelper.rb +0 -12
  177. data/test/test_markdownbuilder.rb +32 -0
  178. data/test/test_pdfmaker.rb +100 -11
  179. data/test/test_pdfmaker_cmd.rb +101 -7
  180. data/test/test_plaintextbuilder.rb +531 -25
  181. data/test/test_review_ext.rb +2 -1
  182. data/test/test_reviewheaderlistener.rb +49 -0
  183. data/test/test_rstbuilder.rb +25 -1
  184. data/test/test_sec_counter.rb +156 -0
  185. data/test/test_template.rb +12 -2
  186. data/test/test_textmaker_cmd.rb +58 -0
  187. data/test/test_tocprinter.rb +46 -0
  188. data/test/test_topbuilder.rb +365 -10
  189. data/test/test_update.rb +44 -44
  190. data/test/test_webtocprinter.rb +75 -43
  191. data/test/test_zip_exporter.rb +5 -6
  192. data/vendor/gentombow/LICENSE +1 -1
  193. data/vendor/gentombow/Makefile +0 -1
  194. data/vendor/gentombow/bounddvi-en.pdf +0 -0
  195. data/vendor/gentombow/bounddvi-en.tex +1 -0
  196. data/vendor/gentombow/bounddvi.pdf +0 -0
  197. data/vendor/gentombow/bounddvi.sty +30 -7
  198. data/vendor/gentombow/bounddvi.tex +1 -0
  199. data/vendor/gentombow/create_archive.sh +1 -0
  200. data/vendor/gentombow/gentombow-ja.pdf +0 -0
  201. data/vendor/gentombow/gentombow-ja.tex +9 -0
  202. data/vendor/gentombow/gentombow.pdf +0 -0
  203. data/vendor/gentombow/gentombow.sty +32 -10
  204. data/vendor/gentombow/gentombow.tex +8 -0
  205. data/vendor/gentombow/tests/gentombow-01-pdfx.tex +8 -0
  206. data/vendor/gentombow/tests/gentombow-02-pdfx.tex +8 -0
  207. data/vendor/jsclasses/LICENSE +1 -1
  208. data/vendor/jsclasses/Makefile +3 -2
  209. data/vendor/jsclasses/create_archive.sh +5 -5
  210. data/vendor/jsclasses/jis/Makefile +3 -2
  211. data/vendor/jsclasses/jis/jsarticle.cls +74 -31
  212. data/vendor/jsclasses/jis/jsbook.cls +74 -31
  213. data/vendor/jsclasses/jis/jsclasses.dtx +176 -36
  214. data/vendor/jsclasses/jis/jsclasses.ins +15 -5
  215. data/vendor/jsclasses/jis/jslogo.dtx +4 -4
  216. data/vendor/jsclasses/jis/jslogo.ins +9 -0
  217. data/vendor/jsclasses/jis/jslogo.sty +4 -16
  218. data/vendor/jsclasses/jis/jspf.cls +73 -30
  219. data/vendor/jsclasses/jis/jsreport.cls +74 -31
  220. data/vendor/jsclasses/jis/jsverb.ins +9 -0
  221. data/vendor/jsclasses/jis/jsverb.sty +1 -13
  222. data/vendor/jsclasses/jis/kiyou.cls +74 -31
  223. data/vendor/jsclasses/jis/minijs.sty +65 -22
  224. data/vendor/jsclasses/jis/okumacro.dtx +4 -5
  225. data/vendor/jsclasses/jis/okumacro.ins +9 -0
  226. data/vendor/jsclasses/jis/okumacro.sty +4 -17
  227. data/vendor/jsclasses/jis/okuverb.ins +9 -0
  228. data/vendor/jsclasses/jis/okuverb.sty +1 -13
  229. data/vendor/jsclasses/jis/winjis.sty +23 -19
  230. data/vendor/jsclasses/jsarticle.cls +74 -31
  231. data/vendor/jsclasses/jsbook.cls +74 -31
  232. data/vendor/jsclasses/jsclasses.dtx +176 -36
  233. data/vendor/jsclasses/jsclasses.ins +15 -5
  234. data/vendor/jsclasses/jsclasses.pdf +0 -0
  235. data/vendor/jsclasses/jslogo.dtx +4 -4
  236. data/vendor/jsclasses/jslogo.ins +9 -0
  237. data/vendor/jsclasses/jslogo.pdf +0 -0
  238. data/vendor/jsclasses/jslogo.sty +4 -16
  239. data/vendor/jsclasses/jspf.cls +73 -30
  240. data/vendor/jsclasses/jsreport.cls +74 -31
  241. data/vendor/jsclasses/jsverb.ins +9 -0
  242. data/vendor/jsclasses/jsverb.pdf +0 -0
  243. data/vendor/jsclasses/jsverb.sty +1 -13
  244. data/vendor/jsclasses/kiyou.cls +74 -31
  245. data/vendor/jsclasses/minijs.sty +68 -22
  246. data/vendor/jsclasses/okumacro.dtx +4 -5
  247. data/vendor/jsclasses/okumacro.ins +9 -0
  248. data/vendor/jsclasses/okumacro.pdf +0 -0
  249. data/vendor/jsclasses/okumacro.sty +4 -17
  250. data/vendor/jsclasses/okuverb.ins +9 -0
  251. data/vendor/jsclasses/okuverb.pdf +0 -0
  252. data/vendor/jsclasses/okuverb.sty +1 -13
  253. data/vendor/jsclasses/tests/relfont.tex +10 -0
  254. data/vendor/jsclasses/winjis.sty +23 -19
  255. metadata +109 -20
  256. data/.rubocop_todo.yml +0 -7
  257. data/lib/epubmaker.rb +0 -23
  258. data/lib/epubmaker/content.rb +0 -110
  259. data/lib/epubmaker/epubcommon.rb +0 -441
  260. data/lib/epubmaker/epubv2.rb +0 -143
  261. data/lib/epubmaker/epubv3.rb +0 -233
  262. data/lib/epubmaker/producer.rb +0 -375
  263. data/lib/epubmaker/zip_exporter.rb +0 -81
  264. data/lib/lineinput.rb +0 -155
  265. data/lib/review/book/compilable.rb +0 -178
  266. data/lib/review/tocparser.rb +0 -271
  267. data/samples/syntax-book/review-ext.rb +0 -14
  268. data/test/test_tocparser.rb +0 -25
data/Dockerfile CHANGED
@@ -9,13 +9,29 @@
9
9
  #
10
10
  # cf. https://github.com/vvakame/docker-review/blob/master/Dockerfile
11
11
 
12
- FROM debian:sid
12
+ FROM debian:buster
13
13
  MAINTAINER takahashim
14
14
 
15
- RUN apt-get update \
16
- && apt-get install -y --no-install-recommends git-core ruby locales zip \
17
- && apt-get install -y --no-install-recommends texlive-lang-cjk texlive-lang-japanese texlive-fonts-recommended texlive-latex-extra ghostscript \
18
- && rm -rf /var/lib/apt/lists/*
15
+ RUN apt-get update && \
16
+ apt-get install -y --no-install-recommends \
17
+ locales git-core curl ca-certificates && \
18
+ apt-get clean && \
19
+ rm -rf /var/lib/apt/lists/*
20
+ RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen
21
+ RUN locale-gen en_US.UTF-8 && update-locale en_US.UTF-8
22
+
23
+ RUN apt-get update && \
24
+ apt-get install -y --no-install-recommends \
25
+ texlive-lang-japanese texlive-fonts-recommended texlive-latex-extra lmodern fonts-lmodern cm-super tex-gyre fonts-texgyre texlive-pictures texlive-plain-generic \
26
+ ghostscript gsfonts \
27
+ zip ruby-zip \
28
+ ruby-nokogiri mecab ruby-mecab mecab-ipadic-utf8 poppler-data \
29
+ mecab-jumandic- mecab-jumandic-utf8- \
30
+ texlive-extra-utils poppler-utils && \
31
+ apt-get clean && \
32
+ rm -rf /var/lib/apt/lists/*
33
+ RUN kanji-config-updmap-sys ipaex
34
+
19
35
  RUN gem install review rake bundler --no-rdoc --no-ri
20
36
 
21
37
  VOLUME ["/work"]
data/NEWS.ja.md CHANGED
@@ -1,9 +1,346 @@
1
+ # Version 5.1.1
2
+ ## バグ修正
3
+ * `review-preproc` がエラーになるのを修正しました ([#1679])
4
+
5
+ [#1679]: https://github.com/kmuto/review/issues/1679
6
+
7
+ # Version 5.1.0
8
+ ## 新機能
9
+ * CSS 組版ソフトウェア [Vivliostyle-CLI](https://github.com/vivliostyle/vivliostyle-cli) を呼び出す Rake ルールを追加しました。Vivliostyle-CLI をインストールした環境において、`rake vivliostyle:build` または `rake vivliostyle` で PDF を作成、`rake vivliostyle:preview` でブラウザのプレビューが開きます ([#1663])
10
+ * PDFMaker: `config.yml` に `boxsetting` パラメータを新設し、column・note・memo・tip・info・warning・important・caution・notice の囲み飾りを事前定義のものや独自に作成したものから選択およびカスタマイズできるようにしました ([#1637])
11
+ * 挿入箇所を示す `@<ins>`、削除箇所を示す `@<del>` の2つのインライン命令を追加しました ([#1630])
12
+ * EPUBMaker, WebMaker: 数式表現手法として MathJax をサポートし、数式表現手法を `math_format` パラメータで選択するようにしました ([#1587], [#1614])
13
+
14
+ ## 非互換の変更
15
+ * EPUBMaker: `urnid` パラメータのデフォルト値のプレフィクスを、`urn:uid` から `urn:uuid` に変更しました ([#1658])
16
+ * PDFMaker: 長い脚注がページ分断されないようにしました ([#1607])
17
+
18
+ ## バグ修正
19
+ * `contentdir` を設定しているときに WebMaker, review-vol, review-index がエラーになるのを修正しました ([#1633])
20
+ * WebMaker: `images/html` 図版フォルダが見つけられないのを修正しました ([#1623])
21
+ * PDFMaker: 用語リストの見出しで chapterlink がおかしな結果になるのを修正しました ([#1619])
22
+ * PDFMaker: 索引に `{`, `}`, `|` が含まれているときにエラーや奇妙な文字に変換されるのを修正しました ([#1611])
23
+ * review-vol: 不正な見出しがあったときに妥当なエラーメッセージを出力するようにしました ([#1604])
24
+ * PDFMaker: `after_makeindex` フックを LaTeX コンパイル後ではなく `mendex` 実行後に実行するように修正しました ([#1605])
25
+ * PDFMaker: `//image` のキャプションが空だったときに内部エラーではなく図番号が出力されるように修正しました ([#1666])
26
+ * review-vol, review-index が不正なファイルを受け取ったときのエラー処理を修正しました ([#1671])
27
+ * EPUBMaker: author などの静的ファイルを指示したときに、ファイルが存在しないと内部エラーを起こしていたのを修正しました ([#1670])
28
+
29
+ ## 機能強化
30
+ * tty-loger gem パッケージがインストールされている場合、Re:VIEW の各 Maker コマンドの進行状態をアイコンおよびカラーで示すようにしました ([#1660])
31
+ * PDFMaker: クラスファイルで `\RequirePackage{plautopatch}` を最初に評価するようにしました ([#1644])
32
+ * MARKDOWNBuilder: `@<hd>` をサポートしました ([#1629])
33
+ * Re:VIEW ドキュメントファイルに不正なエスケープシーケンス文字が含まれているときにエラーを出すようにしました ([#1596], [#1602])
34
+ * `=` の数が6を超える見出し扱いの行があるときにエラーを出すようにしました ([#1591])
35
+
36
+ ## ドキュメント
37
+ * 画像探索の際に各 Maker が参照するサブフォルダ名について記載しました ([#1626])
38
+
39
+ ## その他
40
+ * EPUBMaker: EPUB ライブラリ一式を `lib/epubmaker` から `lib/review/epubmaker` に移動し、リファクタリングしました ([#1575], [#1617], [#1635], [#1640], [#1641], [#1650], [#1653], [#1655])
41
+ * EPUBMaker: テストを追加しました ([#1656])
42
+ * PDFMaker: いくつかの処理をリファクタリングしました ([#1664])
43
+ * 数式画像生成処理を `ReVIEW::ImgMath` クラスにまとめました ([#1642], [#1649], [#1659], [#1662])
44
+ * IDGXMLMaker: いくつかの処理をリファクタリングしました ([#1654])
45
+ * MakerHelper: いくつかの処理をリファクタリングしました ([#1652])
46
+ * テンプレート処理を `ReVIEW::Template.generate` メソッドに統一しました ([#1648])
47
+ * GitHub Actions で TeX コンパイルのテストも行うようにしました ([#1643])
48
+ * Rubocop 1.10 に対応しました ([#1593], [#1598], [#1613], [#1636], [#1647], [#1669])
49
+ * サンプル syntax-book の重複 ID を修正しました ([#1646])
50
+ * ライブラリの相対パスの参照方法をリファクタリングしました ([#1639])
51
+ * `ReVIEW::LineInput` クラスをリファタクタリングしました ([#1638])
52
+ * Copyright を2021年に更新しました ([#1632])
53
+ * Ruby 3.0 でのテストを実行するようにしました ([#1622])
54
+ * 不安定な Pygments のテストを抑制しました ([#1610], [#1618])
55
+ * WebTocPrinter: テストのエラーを修正しました ([#1606])
56
+ * テストのターゲットを指定しやすいようにしました ([#1594])
57
+
58
+ [#1671]: https://github.com/kmuto/review/issues/1671
59
+ [#1670]: https://github.com/kmuto/review/pull/1670
60
+ [#1669]: https://github.com/kmuto/review/pull/1669
61
+ [#1666]: https://github.com/kmuto/review/issues/1666
62
+ [#1664]: https://github.com/kmuto/review/pull/1664
63
+ [#1663]: https://github.com/kmuto/review/pull/1663
64
+ [#1662]: https://github.com/kmuto/review/issues/1662
65
+ [#1660]: https://github.com/kmuto/review/issues/1660
66
+ [#1659]: https://github.com/kmuto/review/pull/1659
67
+ [#1658]: https://github.com/kmuto/review/pull/1658
68
+ [#1656]: https://github.com/kmuto/review/pull/1656
69
+ [#1655]: https://github.com/kmuto/review/pull/1655
70
+ [#1654]: https://github.com/kmuto/review/pull/1654
71
+ [#1653]: https://github.com/kmuto/review/pull/1653
72
+ [#1652]: https://github.com/kmuto/review/pull/1652
73
+ [#1650]: https://github.com/kmuto/review/pull/1650
74
+ [#1649]: https://github.com/kmuto/review/pull/1649
75
+ [#1648]: https://github.com/kmuto/review/pull/1648
76
+ [#1647]: https://github.com/kmuto/review/pull/1647
77
+ [#1646]: https://github.com/kmuto/review/pull/1646
78
+ [#1644]: https://github.com/kmuto/review/issues/1644
79
+ [#1643]: https://github.com/kmuto/review/pull/1643
80
+ [#1642]: https://github.com/kmuto/review/pull/1642
81
+ [#1641]: https://github.com/kmuto/review/pull/1641
82
+ [#1640]: https://github.com/kmuto/review/pull/1640
83
+ [#1639]: https://github.com/kmuto/review/pull/1639
84
+ [#1638]: https://github.com/kmuto/review/pull/1638
85
+ [#1637]: https://github.com/kmuto/review/pull/1637
86
+ [#1636]: https://github.com/kmuto/review/pull/1636
87
+ [#1635]: https://github.com/kmuto/review/pull/1635
88
+ [#1633]: https://github.com/kmuto/review/issues/1633
89
+ [#1632]: https://github.com/kmuto/review/issues/1632
90
+ [#1630]: https://github.com/kmuto/review/issues/1630
91
+ [#1629]: https://github.com/kmuto/review/pull/1629
92
+ [#1626]: https://github.com/kmuto/review/pull/1626
93
+ [#1623]: https://github.com/kmuto/review/issues/1623
94
+ [#1622]: https://github.com/kmuto/review/pull/1622
95
+ [#1619]: https://github.com/kmuto/review/issues/1619
96
+ [#1618]: https://github.com/kmuto/review/pull/1618
97
+ [#1617]: https://github.com/kmuto/review/pull/1617
98
+ [#1614]: https://github.com/kmuto/review/pull/1614
99
+ [#1613]: https://github.com/kmuto/review/pull/1613
100
+ [#1611]: https://github.com/kmuto/review/issues/1611
101
+ [#1610]: https://github.com/kmuto/review/pull/1610
102
+ [#1607]: https://github.com/kmuto/review/issues/1607
103
+ [#1606]: https://github.com/kmuto/review/issues/1606
104
+ [#1605]: https://github.com/kmuto/review/issues/1605
105
+ [#1604]: https://github.com/kmuto/review/issues/1604
106
+ [#1602]: https://github.com/kmuto/review/pull/1602
107
+ [#1598]: https://github.com/kmuto/review/pull/1598
108
+ [#1596]: https://github.com/kmuto/review/issues/1596
109
+ [#1594]: https://github.com/kmuto/review/pull/1594
110
+ [#1593]: https://github.com/kmuto/review/pull/1593
111
+ [#1591]: https://github.com/kmuto/review/issues/1591
112
+ [#1587]: https://github.com/kmuto/review/issues/1587
113
+ [#1575]: https://github.com/kmuto/review/issues/1575
114
+
115
+ # Version 5.0.0
116
+ ## 新機能
117
+ * review-jsbook / review-jlreq クラスに、`cover_fit_page` オプションを追加しました。`texdocumentclass` パラメータに `cover_fit_page=true` を付けると、画像サイズがどのようなものであっても仕上がりサイズに拡縮して表紙に貼り込みます。なお、制作において図版は実寸で作成することを推奨します ([#1534])
118
+ * 小さな囲み要素 (`//note`, `//memo`, `//tip`, `//info`, `//warning`, `//important`, `//caution`, `//notice`) の中で、`//image` などのブロック命令を含めたり、および箇条書きを入れたりできるようになりました。拡張で類似のことを利用したいときには、defminicolumn で定義します ([#1558], [#1562])
119
+ * 箇条書きの入れ子を指示する命令として `//beginchild`, `//endchild` という1行命令を追加しました。箇条書きの子にしたいものを `//beginchild` と `//endchild` で囲むと、前に位置する箇条書きの子要素になります。**この機能は実験的です。今後のバージョンで挙動を変えたり廃止したりする可能性があります** ([#1497])
120
+
121
+ ## 非互換の変更
122
+ * review-jlreq.cls における hiddenfolio の配置を、jlreqtrimmarkssetup を使って実装するように変更しました。以前のバージョンとは位置や表示に若干の違いがあります ([#1397])
123
+ * `chapterlink` パラメータのデフォルト値を true (有効) にしました。これが有効になっているときには、Web、EPUB での章・項の参照や、図表・リスト・式・参考文献の参照などがハイパーリンク化されます。TeX PDF においては `media=ebook` のときのみ、章・項・参考文献の参照がハイパーリンク化されます ([#1529])
124
+
125
+ ## バグ修正
126
+ * PDFMaker: 同名で拡張子違いの図版ファイルがあるときに、位置がずれる問題を修正しました。extractbb コマンドは明示的に呼び出されなくなります ([#1483])
127
+ * PDFMaker: 著者名 (`aut`) パラメータが空のときにエラーになる問題を修正しました ([#1517])
128
+ * PDFMaker: `//indepimage` 命令で画像が存在せず、かつ ID に TeX のエスケープ対象となる文字を含んでいるとエラーが起きる問題を修正しました ([#1527])
129
+ * PDFMaker: `bookttilename` や `aut` パラメータに TeX のエスケープ対象となる文字を入れると PDF メタ情報がおかしくなる問題を修正しました (`media=ebook` のときのみ) ([#1533])
130
+ * WebMaker: HTML テンプレートで nil が入ってしまうのを修正しました ([#1545])
131
+ * PDFMaker: 章番号を非表示にするとエラーで失敗するのを修正しました ([#1559])
132
+ * MarkdownBuilder: note 等の中の段落を改行区切りではなく空行区切りにしました ([#1572])
133
+
134
+ ## 機能強化
135
+ * 図表などのアイテムでエラーが発生したときの表示を詳細にしました ([#1523])
136
+ * PDFMaker: `@<hd>` 命令で展開した項・段について、`media=ebook` のときにはハイパーリンクになるようにしました ([#1530])
137
+ * HTMLBuilder および IDGXMLBuilder において、文字列のエスケープを従来の `cgi/util` の代わりにより高速な `cgi/escape` が利用できるときにはそれを利用するようにしました。また、`ReVIEW::HTMLUtils.escape` も書き換えられました ([#1536])
138
+ * `@<icon>` 命令の利用時に ID の重複の警告が出るのを抑制しました ([#1541])
139
+ * 不正なエンコーディングのファイルを受け取ったときに妥当なエラー表示をするようにしました ([#1544])
140
+ * IndexBuilder を導入しました。これまで図表等の番号の管理および参照はその都度対象ファイルを解析する方法でしたが、IndexBuilder はプロジェクト全体を走査し、以降の各ビルダのために番号を提供します。review-ext.rb でブロック命令やインライン命令を追加していた場合、IndexBuilder クラス (またはその基底クラスである Builder クラス) にも追加が必要です ([#1384], [#1552])
141
+ * ID やラベルに以下の文字または空白文字が含まれていると、TeX のコンパイルあるいは生成される EPUB においてエラーが発生するため、これらの文字が含まれているときには警告を出すようにしました ([#1393], [#1574])
142
+ ```
143
+ #%\{}[]~/$'"|*?&<>`
144
+ ```
145
+
146
+ ## ドキュメント
147
+ * format.ja.md と format.md のタイプミスを修正しました ([#1528])
148
+ * makeindex.ja.md のサンプル結果の誤りを修正しました ([#1584])
149
+
150
+ ## その他
151
+ * Rubocop 0.92.0 に対応しました ([#1511], [#1569], [#1573])
152
+ * `Re:VIEW::Compiler` 内の `@strategy` は実際はビルダなので、`@builder` という名前に変更しました ([#1520])
153
+ * Rubocop-performance 1.7.1 に対応しました ([#1521])
154
+ * syntax-book サンプルドキュメントの Gemfile を更新しました ([#1522])
155
+ * ImageMagick における GhostScript の呼び出しが非推奨となったため、テストを除去しました ([#1526])
156
+ * 一部のテストユニットの不要な標準エラー出力を抑制しました ([#1538])
157
+ * `Compilable` モジュールの代わりに、`Chapter` および `Part` のスーパークラスとなる `BookUnit` 抽象クラスを導入しました ([#1543])
158
+ * `ReVIEW::Book::Base.load` をやめ、`ReVIEW::Book::Base.load` または `ReVIEW::Book::Base.new` を使うようにしました。`ReVIEW::Book::Base.load` に `:config` オプションを加えました ([#1548], [#1563])
159
+ * 内部のパラメータの汎用構成のために `ReVIEW::Configure.create` コンストラクタを導入しました ([#1549])
160
+ * WebMaker: 使われていない `clean_mathdir` メソッドを削除しました ([#1550])
161
+ * catalog.yml の解析を `ReVIEW::Book::Base.new` の中で最初に実行するようにしました ([#1551])
162
+ * ファイルの書き出しで可能なところは `File.write` を使うようにしました ([#1560])
163
+ * Builder クラスの `builder_init` メソッドを削除し、`initialize` を使うようにしました ([#1564])
164
+
165
+ ## コントリビューターのみなさん
166
+ * [@snoozer05](https://github.com/snoozer05)
167
+
168
+ [#1384]: https://github.com/kmuto/review/pull/1384
169
+ [#1393]: https://github.com/kmuto/review/issues/1393
170
+ [#1397]: https://github.com/kmuto/review/issues/1397
171
+ [#1483]: https://github.com/kmuto/review/issues/1483
172
+ [#1497]: https://github.com/kmuto/review/pull/1497
173
+ [#1511]: https://github.com/kmuto/review/pull/1511
174
+ [#1517]: https://github.com/kmuto/review/issues/1517
175
+ [#1520]: https://github.com/kmuto/review/pull/1520
176
+ [#1521]: https://github.com/kmuto/review/pull/1521
177
+ [#1522]: https://github.com/kmuto/review/pull/1522
178
+ [#1523]: https://github.com/kmuto/review/pull/1523
179
+ [#1526]: https://github.com/kmuto/review/pull/1526
180
+ [#1527]: https://github.com/kmuto/review/pull/1527
181
+ [#1528]: https://github.com/kmuto/review/pull/1528
182
+ [#1529]: https://github.com/kmuto/review/issues/1529
183
+ [#1530]: https://github.com/kmuto/review/issues/1530
184
+ [#1533]: https://github.com/kmuto/review/issues/1533
185
+ [#1534]: https://github.com/kmuto/review/issues/1534
186
+ [#1536]: https://github.com/kmuto/review/pull/1536
187
+ [#1538]: https://github.com/kmuto/review/pull/1538
188
+ [#1541]: https://github.com/kmuto/review/pull/1541
189
+ [#1543]: https://github.com/kmuto/review/pull/1543
190
+ [#1544]: https://github.com/kmuto/review/issues/1544
191
+ [#1545]: https://github.com/kmuto/review/issues/1545
192
+ [#1548]: https://github.com/kmuto/review/pull/1548
193
+ [#1549]: https://github.com/kmuto/review/pull/1549
194
+ [#1550]: https://github.com/kmuto/review/pull/1550
195
+ [#1551]: https://github.com/kmuto/review/pull/1551
196
+ [#1552]: https://github.com/kmuto/review/pull/1552
197
+ [#1558]: https://github.com/kmuto/review/pull/1558
198
+ [#1559]: https://github.com/kmuto/review/issues/1559
199
+ [#1560]: https://github.com/kmuto/review/pull/1560
200
+ [#1562]: https://github.com/kmuto/review/pull/1562
201
+ [#1563]: https://github.com/kmuto/review/pull/1563
202
+ [#1564]: https://github.com/kmuto/review/pull/1564
203
+ [#1569]: https://github.com/kmuto/review/pull/1569
204
+ [#1572]: https://github.com/kmuto/review/pull/1572
205
+ [#1573]: https://github.com/kmuto/review/pull/1573
206
+ [#1574]: https://github.com/kmuto/review/issues/1574
207
+ [#1584]: https://github.com/kmuto/review/pull/1584
208
+
209
+ # Version 4.2.0
210
+ ## 新機能
211
+ * 図・表・リスト・式のキャプションの位置を内容の上側・下側どちらにするかを指定する `caption_position` パラメータを追加しました。`caption_position` の下位パラメータとして `image`・`table`・`list`・`equation` のパラメータがあり、値として `top` (上側) または `bottom` (下側) を指定します。デフォルトは `image` のみ `bottom`、ほかは `top` です ([#1320])
212
+
213
+ ## 非互換の変更
214
+ * review-vol を再構成しました。部の処理や見出し内のインライン命令の処理を正しました。表示形式をわかりやすい形に変更しました。部を指定したときに部のボリュームではなく、部ファイル単体のボリュームを返すようにしました。`-P`, `--directory` オプションは廃止しました ([#1485])
215
+ * review-index を再構成しました。オプション名を大幅に変更しています。行数・文字数は `-d` オプションを指定したときのみ表示するようにしました。また、ファイルの行数・文字数ではなく、PLAINTEXTBuilder を利用して、変換結果に近い行数・文字数を返すようにしました (review-vol よりも正確です)。特定の章は `-y` オプションで複数指定できるようにしました ([#1485])
216
+
217
+ ## バグ修正
218
+ * 重複する `@non_parsed_commands` 宣言を削除しました ([#1499])
219
+ * WebMaker、TextMaker で数式画像が作成されない問題を修正しました ([#1501])
220
+
221
+ ## 機能強化
222
+ * imgmath での数式画像の作成処理を最適化し、高速化しました ([#1488])
223
+ * デフォルト以外の固有の YAML 設定を PDFMaker に引き渡したいときのために、`layouts/config-local.tex.erb` ファイルが存在すればそれを評価・読み込みするようにしました ([#1505])
224
+
225
+ ## その他
226
+ * GitHub Actions を eregon/use-ruby-action から ruby/setup-ruby に切り替えました ([#1490])
227
+ * テストの際、samples フォルダ内にあるビルド成果物を無視するようにしました ([#1504])
228
+
229
+ [#1320]: https://github.com/kmuto/review/issues/1320
230
+ [#1485]: https://github.com/kmuto/review/issues/1485
231
+ [#1488]: https://github.com/kmuto/review/issues/1488
232
+ [#1490]: https://github.com/kmuto/review/pull/1490
233
+ [#1499]: https://github.com/kmuto/review/issues/1499
234
+ [#1501]: https://github.com/kmuto/review/pull/1501
235
+ [#1504]: https://github.com/kmuto/review/pull/1504
236
+ [#1505]: https://github.com/kmuto/review/issues/1505
237
+
238
+ # Version 4.1.0
239
+ ## 新機能
240
+ * 表のセル区切りの文字を `table_row_separator` パラメータで変更できるようにしました。指定可能な値は tabs (1個以上のタブ、デフォルト)、singletab (1文字のタブ文字区切り)、spaces (1文字以上のスペースまたはタブ文字の区切り)、 verticalbar ("0個以上の空白 | 0個以上の空白" の区切り) です ([#1420])
241
+ * PDFMaker, EPUBMaker, WEBMaker, TEXTMaker, IDGXMLMaker: 全ファイルでなく変換対象ファイルを指定するための `-y`(または`--only`)オプションを追加しました ([#1428], [#1467])
242
+ * config.yml のコメント行を含めないようにする `--without-config-comment` オプションを review-init に追加しました ([#1453])
243
+ * PDFMaker: `pdfmaker` セクションに `use_original_image_size` パラメータを新設しました。デフォルトでは `//image`, `//indepimage`, `//imgtable` で挿入する画像において、metrics の指定がないときには版面の横幅に合うよう拡縮しますが、`use_original_image_size` パラメータを true に設定すると、拡縮なしで原寸のまま配置します ([#1461])
244
+
245
+ ## 非互換の変更
246
+ * PDFMaker: config.yml の `image_scale2width` パラメータを、直下から `pdfmaker` セクションの下に属するように変更しました ([#1462])
247
+
248
+ ## バグ修正
249
+ * PDFMaker: Re:VIEW 3 系のプロジェクトとの後方互換処理の誤りを修正しました ([#1414])
250
+ * PDFMaker: review-jlreq を LuaLaTeX でコンパイルしたときのエラーを修正しました ([#1416])
251
+ * PDFMaker: 索引が目次に含まれない問題を修正しました ([#1418])
252
+ * RSTBuilder: メソッドの引数の誤りで変換に失敗する問題を修正しました ([#1426])
253
+ * IDGXMLBuilder: 表に関する警告を出すときの誤りを修正しました ([#1427])
254
+ * IDGXMLMaker: フィルタプログラムにエラーが発生したときの処理の誤りを修正しました ([#1429])
255
+ * PDFMaker: `media=ebook` のときに、見出し等に `@<code>` や `@<tt>` のようなコード書体の命令を使うとビルドに失敗する問題を修正しました ([#1432], [#1465])
256
+ * PDFMaker: MeCab がインストールされていないときにエラーになるのを警告に変更しました ([#1445])
257
+ * IDGXMLBuilder: `//imgtable` が正しく動作しなかったのを修正しました ([#1448])
258
+ * PDFMaker: 索引が1つも登録されていない状態で makeindex を有効にするとエラーになるのを修正しました ([#1467])
259
+ * PDFMaker: 説明箇条書き (`:`) の見出しに脚注を入れると消えてしまうのを修正しました ([#1476])
260
+ * review-index: `@<w>` が見出しに使われているときにエラーになるのを修正しました ([#1484])
261
+
262
+ ## 機能強化
263
+ * PDFMaker: 問題報告の解析に役立つよう、提供する cls、sty ファイルについてバージョンを付けるようにしました ([#1163])
264
+ * Dockerfile を更新しました ([#1412])
265
+ * IDGXMLMaker: フィルタプログラムの標準エラー出力を警告扱いで出力するようにしました ([#1443])
266
+ * .gitignore ファイルに 〜-idgxml フォルダ を追加しました ([#1448])
267
+ * `//source` 命令は全ビルダでオプションを省略できるようになりました ([#1447])
268
+ * Ruby 2.7 をテスト対象に加えました ([#1468])
269
+ * `word_files` パラメータは配列で複数の単語 CSV ファイルを受け付けるようになりました ([#1469])
270
+ * EPUBMaker: 見出しが1つもない .re ファイルについて警告を出すようにしました。EPUB においてはファイル内に見出しが必ず1つは必要です。見出しを入れたくないときには、`=[notoc]` (目次に入れない) や `=[nodisp]` (目次に入れず表示もしない) を使用してください ([#1474])
271
+
272
+ ## ドキュメント
273
+ * 奥付に関係する `contact` (連絡先)および `colophon_order` (項目の掲載順序)についてのドキュメントを設定ファイルサンプル `config.yml.sample` に追加しました ([#1425])
274
+ * quickstart.ja.md, quickstart.md を Re:VIEW 4 の内容に更新しました ([#1442])
275
+ * サンプル syntax-book を更新しました ([#1448], [#1449])
276
+ * README.md を更新しました ([#1455], [#1458])
277
+ * 図版のビルダ固有オプション `::` の記法を format.ja.md, format.md に記載しました ([#1421])
278
+
279
+ ## その他
280
+ * Rubocop 0.78.0 の指摘に対応しました ([#1424], [#1430])
281
+ * LaTeX の実行環境がある場合、PDF のビルドテストをより厳密に実行するようにしました ([#1433])
282
+ * ビルドテストを Travis CI から GitHub Actions に切り替えました ([#1431], [#1436], [#1437])
283
+ * IDGXMLBuilder のコードリストの処理をリファクタリングしました ([#1438], [#1439])
284
+ * サンプル syntax-book に入っていた review-ext.rb はもう不要なので削除しました ([#1446])
285
+ * IDGXMLMaker, TextMaker のテストを追加しました ([#1448])
286
+ * Index 関連の処理をリファクタリングしました ([#1456], [#1457], [#1459])
287
+ * jsclasses パッケージを 2020/02/02 バージョンに更新しました ([#1478])
288
+
289
+ ## コントリビューターのみなさん
290
+ * [@turky](https://github.com/turky)
291
+
292
+ [#1163]: https://github.com/kmuto/review/issues/1163
293
+ [#1412]: https://github.com/kmuto/review/pull/1412
294
+ [#1414]: https://github.com/kmuto/review/issues/1414
295
+ [#1416]: https://github.com/kmuto/review/issues/1416
296
+ [#1418]: https://github.com/kmuto/review/issues/1418
297
+ [#1420]: https://github.com/kmuto/review/issues/1420
298
+ [#1421]: https://github.com/kmuto/review/issues/1421
299
+ [#1424]: https://github.com/kmuto/review/pull/1424
300
+ [#1425]: https://github.com/kmuto/review/pull/1425
301
+ [#1426]: https://github.com/kmuto/review/pull/1426
302
+ [#1427]: https://github.com/kmuto/review/pull/1427
303
+ [#1428]: https://github.com/kmuto/review/pull/1428
304
+ [#1429]: https://github.com/kmuto/review/pull/1429
305
+ [#1430]: https://github.com/kmuto/review/pull/1430
306
+ [#1431]: https://github.com/kmuto/review/pull/1431
307
+ [#1432]: https://github.com/kmuto/review/issues/1432
308
+ [#1433]: https://github.com/kmuto/review/pull/1433
309
+ [#1436]: https://github.com/kmuto/review/pull/1436
310
+ [#1437]: https://github.com/kmuto/review/issues/1437
311
+ [#1438]: https://github.com/kmuto/review/pull/1438
312
+ [#1439]: https://github.com/kmuto/review/pull/1439
313
+ [#1442]: https://github.com/kmuto/review/issues/1442
314
+ [#1443]: https://github.com/kmuto/review/pull/1443
315
+ [#1445]: https://github.com/kmuto/review/pull/1445
316
+ [#1446]: https://github.com/kmuto/review/pull/1446
317
+ [#1447]: https://github.com/kmuto/review/issues/1447
318
+ [#1448]: https://github.com/kmuto/review/pull/1448
319
+ [#1449]: https://github.com/kmuto/review/pull/1449
320
+ [#1453]: https://github.com/kmuto/review/pull/1453
321
+ [#1455]: https://github.com/kmuto/review/pull/1455
322
+ [#1456]: https://github.com/kmuto/review/pull/1456
323
+ [#1457]: https://github.com/kmuto/review/pull/1457
324
+ [#1458]: https://github.com/kmuto/review/pull/1458
325
+ [#1459]: https://github.com/kmuto/review/pull/1459
326
+ [#1461]: https://github.com/kmuto/review/issues/1461
327
+ [#1462]: https://github.com/kmuto/review/issues/1462
328
+ [#1465]: https://github.com/kmuto/review/pull/1465
329
+ [#1466]: https://github.com/kmuto/review/pull/1466
330
+ [#1467]: https://github.com/kmuto/review/pull/1467
331
+ [#1468]: https://github.com/kmuto/review/pull/1468
332
+ [#1469]: https://github.com/kmuto/review/issues/1469
333
+ [#1474]: https://github.com/kmuto/review/issues/1474
334
+ [#1476]: https://github.com/kmuto/review/issues/1476
335
+ [#1478]: https://github.com/kmuto/review/issues/1478
336
+ [#1484]: https://github.com/kmuto/review/pull/1484
337
+
1
338
  # Version 4.0.0
2
339
  ## 新機能
3
340
  * IDGXML ファイルをまとめて生成する、review-idgxmlmaker を導入しました ([#1337])
4
341
  * review-textmaker は、imgmath パラメータが有効になっている場合に、数式を画像化するようになりました ([#1338])
5
342
  * review-init に `-w` オプションを指定することで、Web ブラウザ上で TeX のレイアウトができるウィザードモードを用意しました。なお、この機能は実験的であり、将来別のものに置き換える可能性もあります ([#1403])
6
- * 実験的実装として、複数行から段落を結合する際に、前後の文字の種類に基づいて空白文字の挿入を行う機能を追加しました。この機能を利用するには、unicode-eaw gem をインストールした上で、config.yml に `join_lines_by_lang: true` を追加してください [#1362]
343
+ * 実験的実装として、複数行から段落を結合する際に、前後の文字の種類に基づいて空白文字の挿入を行う機能を追加しました。この機能を利用するには、unicode-eaw gem をインストールした上で、config.yml に `join_lines_by_lang: true` を追加してください ([#1362])
7
344
 
8
345
  ## 非互換の変更
9
346
  * 通常の利用では使われることがないので、review-init の実行時に空の layouts フォルダを作成するのをやめました ([#1340])
data/NEWS.md CHANGED
@@ -1,3 +1,340 @@
1
+ # Version 5.1.1
2
+ ## Bug Fixes
3
+ * Fix the runtime error of `review-preproc` ([#1679])
4
+
5
+ [#1679]: https://github.com/kmuto/review/issues/1679
6
+
7
+ # Version 5.1.0
8
+ ## New Features
9
+ * added Rake rule to call [Vivliostyle-CLI](https://github.com/vivliostyle/vivliostyle-cli), CSS typesetting formatter. Create a PDF with `rake vivliostyle:build` or `rake vivliostyle`, and open a preview with `rake vivliostyle:preview` ([#1663])
10
+ * PDFMaker: introduced `boxsetting` parameter to choose and customize the decorations for column, note, memo, tip, info, warning, important, caution and notice ([#1637])
11
+ * added inline op, `@<ins>` (indicates an insertion) and `@<del>` (indicates a deletion) ([#1630])
12
+ * EPUBMaker, WebMaker: MathJax is now supported. Added `math_format` parameter to choose the mathematical expression method ([#1587], [#1614])
13
+
14
+ ## Breaking Changes
15
+ * EPUBMaker: changed the default value of the `urnid` parameter from `urn:uid` to `urn:uuid` ([#1658])
16
+ * PDFMaker: footnotes are no longer broken up by a page ([#1607])
17
+
18
+ ## Bug Fixes
19
+ * fixed WebMaker, review-vol and review-index errors when `contentdir` is defined ([#1633])
20
+ * WebMaker: fixed `images/html` foder not being found ([#1623])
21
+ * PDFMaker: fixed chapterlink in term list ([#1619])
22
+ * PDFMaker: fixed errors when index contains `{`, `}`, or `|` ([#1611])
23
+ * review-vol: valid error messages will be displayed when invalid headings are found ([#1604])
24
+ * PDFMaker: `after_makeindex` hook to be executed after `mendex` execution, not after LaTeX compilation ([#1605])
25
+ * PDFMaker: if the caption of `//image` is empty, the figure number will be printed instead of an internal error ([#1666])
26
+ * fixed review-vol and review-index errors when a file is invalid ([#1671])
27
+ * EPUBMaker: fixed an error when static file is missing ([#1670])
28
+
29
+ ## Enhancements
30
+ * Maker commands now display with nice colors and icons for their progress status when tty-logger gem is installed ([#1660])
31
+ * PDFMaker: added `\RequirePackage{plautopatch}` definition to class files ([#1644])
32
+ * MARKDOWNBuilder: supported `@<hd>` ([#1629])
33
+ * Re:VIEW now reports an error when a document file contains invalid escape sequence characters ([#1596], [#1602])
34
+ * an error is raised when there are more than 6 `=` in a heading ([#1591])
35
+
36
+ ## Docs
37
+ * documented the name of the image folder referenced by Makers ([#1626])
38
+
39
+ ## Others
40
+ * EPUBMaker: moved EPUB library from `lib/epubmaker` to `lib/review/epubmaker` and refactored it ([#1575], [#1617], [#1635], [#1640], [#1641], [#1650], [#1653], [#1655])
41
+ * EPUBMaker: added tests ([#1656])
42
+ * PDFMaker: refactored some ([#1664])
43
+ * introduced `ReVIEW::ImgMath` class to handle mathematic images ([#1642], [#1649], [#1659], [#1662])
44
+ * IDGXMLMaker: refactored some ([#1654])
45
+ * MakerHelper: refactored some ([#1652])
46
+ * introduced `ReVIEW::Template.generate` class to handle the templates ([#1648])
47
+ * added a test of TeX compilation to GitHub Actions ([#1643])
48
+ * refactored codes according to Rubocop 1.10 ([#1593], [#1598], [#1613], [#1636], [#1647], [#1669])
49
+ * fixed duplicate IDs of syntax-book sample ([#1646])
50
+ * refactored the way to reference relative pathes ([#1639])
51
+ * refactored `ReVIEW::LineInput` class ([#1638])
52
+ * update Copyright to 2021 ([#1632])
53
+ * added Ruby 3.0 to the test platform ([#1622])
54
+ * suppressed tests for Pygments ([#1610], [#1618])
55
+ * WebTocPrinter: fixed an error of test ([#1606])
56
+ * improved to make it easier to specify the target of the test ([#1594])
57
+
58
+ [#1671]: https://github.com/kmuto/review/issues/1671
59
+ [#1670]: https://github.com/kmuto/review/pull/1670
60
+ [#1669]: https://github.com/kmuto/review/pull/1669
61
+ [#1666]: https://github.com/kmuto/review/issues/1666
62
+ [#1664]: https://github.com/kmuto/review/pull/1664
63
+ [#1663]: https://github.com/kmuto/review/pull/1663
64
+ [#1662]: https://github.com/kmuto/review/issues/1662
65
+ [#1660]: https://github.com/kmuto/review/issues/1660
66
+ [#1659]: https://github.com/kmuto/review/pull/1659
67
+ [#1658]: https://github.com/kmuto/review/pull/1658
68
+ [#1656]: https://github.com/kmuto/review/pull/1656
69
+ [#1655]: https://github.com/kmuto/review/pull/1655
70
+ [#1654]: https://github.com/kmuto/review/pull/1654
71
+ [#1653]: https://github.com/kmuto/review/pull/1653
72
+ [#1652]: https://github.com/kmuto/review/pull/1652
73
+ [#1650]: https://github.com/kmuto/review/pull/1650
74
+ [#1649]: https://github.com/kmuto/review/pull/1649
75
+ [#1648]: https://github.com/kmuto/review/pull/1648
76
+ [#1647]: https://github.com/kmuto/review/pull/1647
77
+ [#1646]: https://github.com/kmuto/review/pull/1646
78
+ [#1644]: https://github.com/kmuto/review/issues/1644
79
+ [#1643]: https://github.com/kmuto/review/pull/1643
80
+ [#1642]: https://github.com/kmuto/review/pull/1642
81
+ [#1641]: https://github.com/kmuto/review/pull/1641
82
+ [#1640]: https://github.com/kmuto/review/pull/1640
83
+ [#1639]: https://github.com/kmuto/review/pull/1639
84
+ [#1638]: https://github.com/kmuto/review/pull/1638
85
+ [#1637]: https://github.com/kmuto/review/pull/1637
86
+ [#1636]: https://github.com/kmuto/review/pull/1636
87
+ [#1635]: https://github.com/kmuto/review/pull/1635
88
+ [#1633]: https://github.com/kmuto/review/issues/1633
89
+ [#1632]: https://github.com/kmuto/review/issues/1632
90
+ [#1630]: https://github.com/kmuto/review/issues/1630
91
+ [#1629]: https://github.com/kmuto/review/pull/1629
92
+ [#1626]: https://github.com/kmuto/review/pull/1626
93
+ [#1623]: https://github.com/kmuto/review/issues/1623
94
+ [#1622]: https://github.com/kmuto/review/pull/1622
95
+ [#1619]: https://github.com/kmuto/review/issues/1619
96
+ [#1618]: https://github.com/kmuto/review/pull/1618
97
+ [#1617]: https://github.com/kmuto/review/pull/1617
98
+ [#1614]: https://github.com/kmuto/review/pull/1614
99
+ [#1613]: https://github.com/kmuto/review/pull/1613
100
+ [#1611]: https://github.com/kmuto/review/issues/1611
101
+ [#1610]: https://github.com/kmuto/review/pull/1610
102
+ [#1607]: https://github.com/kmuto/review/issues/1607
103
+ [#1606]: https://github.com/kmuto/review/issues/1606
104
+ [#1605]: https://github.com/kmuto/review/issues/1605
105
+ [#1604]: https://github.com/kmuto/review/issues/1604
106
+ [#1602]: https://github.com/kmuto/review/pull/1602
107
+ [#1598]: https://github.com/kmuto/review/pull/1598
108
+ [#1596]: https://github.com/kmuto/review/issues/1596
109
+ [#1594]: https://github.com/kmuto/review/pull/1594
110
+ [#1593]: https://github.com/kmuto/review/pull/1593
111
+ [#1591]: https://github.com/kmuto/review/issues/1591
112
+ [#1587]: https://github.com/kmuto/review/issues/1587
113
+ [#1575]: https://github.com/kmuto/review/issues/1575
114
+
115
+ # Version 5.0.0
116
+ ## New Features
117
+ * added `cover_fit_page` option to review-jsbook / review-jlreq classes. When `cover_fit_page=true` is specified in the `texdocumentclass` parameter, the cover image is scaled to paper size. Note: it is recommended that the images should be created at actual size ([#1534])
118
+ * allow minicolumn nesting. Now you can put a block instruction such as `//image` or itemized list in minicolumn (`//note`, `//memo`, `//tip`, `//info`, `//warning`, `//important`, `//caution`, `//notice`) ([#1558], [#1562])
119
+ * added single commands `//beginchild` and `//endchild` for nesting itemized/enumerate/description list. **EXPERIMENTAL FEATURE** ([#1497])
120
+
121
+ ## Breaking Changes
122
+ * In review-jlreq.cls, hiddenfolio is now implemented by jlreqtrimmarkssetup. It is slightly different from the previous version in position and display ([#1397])
123
+ * The default value of the `chapterlink` parameter is now true. Most links (chapter, section, image, table, list, equation, bibliography) in Web and EPUB are now hyperlinked. In TeX PDF, some links (chapter, section, biliography) are hyperlinked only when `media=ebook` ([#1529])
124
+
125
+ ## Bug Fixes
126
+ * PDFMaker: fixed a problem with multiple same-named image files with different extensions that would cause them to be misaligned ([#1483])
127
+ * PDFMaker: fixed a problem that cuased an error when the author name (`aut`) was empty ([#1517])
128
+ * PDFMaker: fixed a problem that caused an error if `//indepimage`'s image file didn't exist and ID contained characters to be TeX-escaped ([#1527])
129
+ * PDFMaker: fixed a problem with characters to be TeX-escaped in the `bookttilename` and `aut` parameters causing incorrect PDF metainformation ([#1533])
130
+ * WebMaker: fixed to avoid nil in HTML template ([#1545])
131
+ * PDFMaker: fixed a problem when hiding chapter numbers ([#1559])
132
+ * MarkdownBuilder: paragraphs in minicolumn should be separated with a blank line instead of a newline ([#1572])
133
+
134
+ ## Enhancements
135
+ * fix warning message to output more detailed information of item ([#1523])
136
+ * PDFMaker: make `@<hd>` op a hyperlink (when `media=ebook`) ([#1530])
137
+ * use `cgi/escape` first and `cgi/util` as fallback. remove orignal implementation in `ReVIEW::HTMLUtils.escape()` ([#1536])
138
+ * suppress warning with same `@<icon>` ([#1541])
139
+ * fix an error handling when a badly encoded file is received ([#1544])
140
+ * introduce IndexBuilder. IndexBuilder first scans the entire project files and provides indexes for each builder ([#1384], [#1552])
141
+ * IDs and labels containing below characters or space characters are now warned ([#1393], [#1574])
142
+ ```
143
+ #%\{}[]~/$'"|*?&<>`
144
+ ```
145
+
146
+ ## Docs
147
+ * fix a typo in format.ja.md and format.md ([#1528])
148
+ * fix incorrect example in makeindex.ja.md ([#1584])
149
+
150
+ ## Others
151
+ * refactor code with Rubocop 0.92.0 ([#1511], [#1569], [#1573])
152
+ * rename `@strategy` to `@builder` in `Re:VIEW::Compiler` ([#1520])
153
+ * refactor code with Rubocop-performance 1.7.1 ([#1521])
154
+ * update Gemfile in syntax-book ([#1522])
155
+ * calling GhostScript in ImageMagick has been deprecated, so the test has been removed ([#1526])
156
+ * unnecessary stderr output on some test units has been suppressed ([#1538])
157
+ * add `BookUnit` class instead of `Compilable` module, the super class of `Chapter` and `Part` ([#1543])
158
+ * `ReVIEW::Book.load` is deprecated, use `ReVIEW::Book::Base.load` or `ReVIEW::Book::Base.new` add new option `:config` for `ReVIEW::Book::Base.load` ([#1548], [#1563])
159
+ * added `ReVIEW::Configure.create` ([#1549])
160
+ * WebMaker: removed unused `clean_mathdir` ([#1550])
161
+ * add `Base#parse_catalog_file()` and use it in `ReVIEW::Book::Base.new()`. `Base#catalog` is just getter now ([#1551])
162
+ * use `File.write` when it can be used ([#1560])
163
+ * remove `Builder#builder_init()` ([#1564])
164
+
165
+ ## Contributors
166
+ * [@snoozer05](https://github.com/snoozer05)
167
+
168
+ [#1384]: https://github.com/kmuto/review/pull/1384
169
+ [#1393]: https://github.com/kmuto/review/issues/1393
170
+ [#1397]: https://github.com/kmuto/review/issues/1397
171
+ [#1483]: https://github.com/kmuto/review/issues/1483
172
+ [#1497]: https://github.com/kmuto/review/pull/1497
173
+ [#1511]: https://github.com/kmuto/review/pull/1511
174
+ [#1517]: https://github.com/kmuto/review/issues/1517
175
+ [#1520]: https://github.com/kmuto/review/pull/1520
176
+ [#1521]: https://github.com/kmuto/review/pull/1521
177
+ [#1522]: https://github.com/kmuto/review/pull/1522
178
+ [#1523]: https://github.com/kmuto/review/pull/1523
179
+ [#1526]: https://github.com/kmuto/review/pull/1526
180
+ [#1527]: https://github.com/kmuto/review/pull/1527
181
+ [#1528]: https://github.com/kmuto/review/pull/1528
182
+ [#1529]: https://github.com/kmuto/review/issues/1529
183
+ [#1530]: https://github.com/kmuto/review/issues/1530
184
+ [#1533]: https://github.com/kmuto/review/issues/1533
185
+ [#1534]: https://github.com/kmuto/review/issues/1534
186
+ [#1536]: https://github.com/kmuto/review/pull/1536
187
+ [#1538]: https://github.com/kmuto/review/pull/1538
188
+ [#1541]: https://github.com/kmuto/review/pull/1541
189
+ [#1543]: https://github.com/kmuto/review/pull/1543
190
+ [#1544]: https://github.com/kmuto/review/issues/1544
191
+ [#1545]: https://github.com/kmuto/review/issues/1545
192
+ [#1548]: https://github.com/kmuto/review/pull/1548
193
+ [#1549]: https://github.com/kmuto/review/pull/1549
194
+ [#1550]: https://github.com/kmuto/review/pull/1550
195
+ [#1551]: https://github.com/kmuto/review/pull/1551
196
+ [#1552]: https://github.com/kmuto/review/pull/1552
197
+ [#1558]: https://github.com/kmuto/review/pull/1558
198
+ [#1559]: https://github.com/kmuto/review/issues/1559
199
+ [#1560]: https://github.com/kmuto/review/pull/1560
200
+ [#1562]: https://github.com/kmuto/review/pull/1562
201
+ [#1563]: https://github.com/kmuto/review/pull/1563
202
+ [#1564]: https://github.com/kmuto/review/pull/1564
203
+ [#1569]: https://github.com/kmuto/review/pull/1569
204
+ [#1572]: https://github.com/kmuto/review/pull/1572
205
+ [#1573]: https://github.com/kmuto/review/pull/1573
206
+ [#1574]: https://github.com/kmuto/review/issues/1574
207
+ [#1584]: https://github.com/kmuto/review/pull/1584
208
+
209
+ # Version 4.2.0
210
+ ## New Features
211
+ * introduce `caption_position` parameter to specify a caption position of image, table, list, and equation. `caption_position` has child parameters `image`, `table`, `list`, and `equation` and the value is `top` or `bottom` ([#1320])
212
+
213
+ ## Breaking Changes
214
+ * review-vol is rewritten. Improved processing of parts and inline instructions in headings. Changed display format. When a part is specified, the volume of the part file itself is returned instead of the volume of the part. The `-P` and `--directory` options have been removed ([#1485])
215
+ * review-index is rewritten. Most option names have been changed. The number of lines and characters are now displayed only when `-d` option is specified. review-index uses PLAINTEXTBuilder to return accurate line and character counts. `-y` option is provided to specify a target chapter ([#1485])
216
+
217
+ ## Bug Fixes
218
+ * remove duplicated `@non_parsed_commands` declaration ([#1499])
219
+ * mathematical images not being created in WebMaker and TextMaker has been fixed ([#1501])
220
+
221
+ ## Enhancements
222
+ * improve a performance of building math figures on imgmath ([#1488])
223
+ * for those times when you want to hand over non-default YAML parameters to PDFMaker, you can write your own `layouts/config-local.tex.erb` file ([#1505])
224
+
225
+ ## Others
226
+ * GitHub Actions: use `ruby/setup-ruby` instead of `eregon/use-ruby-action` ([#1490])
227
+ * skip artifacts in the sample folder during testing ([#1504])
228
+
229
+ [#1320]: https://github.com/kmuto/review/issues/1320
230
+ [#1485]: https://github.com/kmuto/review/issues/1485
231
+ [#1488]: https://github.com/kmuto/review/issues/1488
232
+ [#1490]: https://github.com/kmuto/review/pull/1490
233
+ [#1499]: https://github.com/kmuto/review/issues/1499
234
+ [#1501]: https://github.com/kmuto/review/pull/1501
235
+ [#1504]: https://github.com/kmuto/review/pull/1504
236
+ [#1505]: https://github.com/kmuto/review/issues/1505
237
+
238
+ # Version 4.1.0
239
+ ## New Features
240
+ * add `table_row_separator` to specify a separator that separates table rows. Accceptable value: tabs (means `\t+`, default), `singletab` (means `\t`), spaces (means `\s+`), verticalbar (means `\s*\|\s*`) ([#1420])
241
+ * PDFMaker, EPUBMaker, WEBMaker, TEXTMaker, IDGXMLMaker: add `-y` (`--only`) option to specify the files to convert instead of all files ([#1428])
242
+ * add `--without-config-comment` option to review-init command to exclude comments from config.yml ([#1453])
243
+ * PDFMaker: add `use_original_image_size` in `pdfmaker` section. If this parameter is set to true, images in `//image`, `//indepimage`, and `//imgtable` will be placed in actual size, not textwidth ([#1461])
244
+
245
+ ## Breaking Changes
246
+ * PDFMaker: `image_scale2width` parameter has been moved under `pdfmaker` section ([#1462])
247
+
248
+ ## Bug Fixes
249
+ * PDFMaker: fix backward compatibility error with Re:VIEW 3 ([#1414])
250
+ * PDFMaker: fix an error when compiling review-jlreq with LuaLaTeX ([#1416])
251
+ * PDFMaker: fix index not being included in the table of contents ([#1418])
252
+ * RSTBuilder: fix conversion failure due to incorrect method argument handling ([#1426])
253
+ * IDGXMLBuilder: there was an error in the warning handling for the table ([#1427])
254
+ * IDGXMLMaker: there was an error in the processing when an error occurred in the filter program ([#1429])
255
+ * PDFMaker: fix a build failure when using inline operators such as `@<code>` or `@<tt>` for heading with `media=ebook` mode ([#1432], [#1465])
256
+ * PDFMaker: raise just warning instead of error, when MeCab isn't installed ([#1445])
257
+ * IDGXMLBuilder: fix `//imgtable` to work correctly ([#1448])
258
+ * PDFMaker: fix an error when makeindex is true but no index is registered ([#1467])
259
+ * PDFMaker: fix missing footnotes in a description list ([#1476])
260
+ * review-index: fix an error when `@<w>` exists in headlines ([#1484])
261
+
262
+ ## Enhancements
263
+ * PDFMaker: add version to .cls/.sty files ([#1163])
264
+ * update Dockerfile ([#1412])
265
+ * IDGXMLMaker: show the contents of stderr from the filter program ([#1443])
266
+ * add *-idgxml folder entry to .gitignore ([#1448])
267
+ * `//source` can now omit options in all builders ([#1447])
268
+ * add Ruby 2.7 to the test targets ([#1468])
269
+ * allow a setting of multiple word\_file ([#1469])
270
+ * EPUBMaker: warn when there is no heading in .re file ([#1474])
271
+
272
+ ## Docs
273
+ * add the description about `contact` and `colophon_order` to `config.yml.sample` ([#1425])
274
+ * update quickstart.ja.md and quickstart.md to Re:VIEW 4 ([#1442])
275
+ * update syntax-book sample document ([#1448], [#1449])
276
+ * update README.md ([#1455], [#1458])
277
+ * update format.ja.md and format.md. add the description about `::` notation which sets builder-specific options to images ([#1421])
278
+
279
+ ## Others
280
+ * refactor codes with Rubocop 0.78.0 ([#1424], [#1430])
281
+ * run PDF build test more strictly when there is LaTeX runtime environment ([#1433])
282
+ * switch the build test suite from Travis CI to GitHub Actions ([#1431], [#1436], [#1437])
283
+ * IDGXMLBuilder: refactor code list methods ([#1438], [#1439])
284
+ * remove unnecessary review-ext.rb from syntax-book ([#1446])
285
+ * add tests for IDGXMLMaker and TextMaker ([#1448])
286
+ * refactor around Index ([#1456], [#1457], [#1459])
287
+ * update jsclasses to version 2020/02/02 ([#1478])
288
+
289
+ ## Contributors
290
+ * [@turky](https://github.com/turky)
291
+
292
+ [#1163]: https://github.com/kmuto/review/issues/1163
293
+ [#1412]: https://github.com/kmuto/review/pull/1412
294
+ [#1414]: https://github.com/kmuto/review/issues/1414
295
+ [#1416]: https://github.com/kmuto/review/issues/1416
296
+ [#1418]: https://github.com/kmuto/review/issues/1418
297
+ [#1420]: https://github.com/kmuto/review/issues/1420
298
+ [#1421]: https://github.com/kmuto/review/issues/1421
299
+ [#1424]: https://github.com/kmuto/review/pull/1424
300
+ [#1425]: https://github.com/kmuto/review/pull/1425
301
+ [#1426]: https://github.com/kmuto/review/pull/1426
302
+ [#1427]: https://github.com/kmuto/review/pull/1427
303
+ [#1428]: https://github.com/kmuto/review/pull/1428
304
+ [#1429]: https://github.com/kmuto/review/pull/1429
305
+ [#1430]: https://github.com/kmuto/review/pull/1430
306
+ [#1431]: https://github.com/kmuto/review/pull/1431
307
+ [#1432]: https://github.com/kmuto/review/issues/1432
308
+ [#1433]: https://github.com/kmuto/review/pull/1433
309
+ [#1436]: https://github.com/kmuto/review/pull/1436
310
+ [#1437]: https://github.com/kmuto/review/issues/1437
311
+ [#1438]: https://github.com/kmuto/review/pull/1438
312
+ [#1439]: https://github.com/kmuto/review/pull/1439
313
+ [#1442]: https://github.com/kmuto/review/issues/1442
314
+ [#1443]: https://github.com/kmuto/review/pull/1443
315
+ [#1445]: https://github.com/kmuto/review/pull/1445
316
+ [#1446]: https://github.com/kmuto/review/pull/1446
317
+ [#1447]: https://github.com/kmuto/review/issues/1447
318
+ [#1448]: https://github.com/kmuto/review/pull/1448
319
+ [#1449]: https://github.com/kmuto/review/pull/1449
320
+ [#1453]: https://github.com/kmuto/review/pull/1453
321
+ [#1455]: https://github.com/kmuto/review/pull/1455
322
+ [#1456]: https://github.com/kmuto/review/pull/1456
323
+ [#1457]: https://github.com/kmuto/review/pull/1457
324
+ [#1458]: https://github.com/kmuto/review/pull/1458
325
+ [#1459]: https://github.com/kmuto/review/pull/1459
326
+ [#1461]: https://github.com/kmuto/review/issues/1461
327
+ [#1462]: https://github.com/kmuto/review/issues/1462
328
+ [#1465]: https://github.com/kmuto/review/pull/1465
329
+ [#1466]: https://github.com/kmuto/review/pull/1466
330
+ [#1467]: https://github.com/kmuto/review/pull/1467
331
+ [#1468]: https://github.com/kmuto/review/pull/1468
332
+ [#1469]: https://github.com/kmuto/review/issues/1469
333
+ [#1474]: https://github.com/kmuto/review/issues/1474
334
+ [#1476]: https://github.com/kmuto/review/issues/1476
335
+ [#1478]: https://github.com/kmuto/review/issues/1478
336
+ [#1484]: https://github.com/kmuto/review/pull/1484
337
+
1
338
  # Version 4.0.0
2
339
  ## New Features
3
340
  * introduce review-idgxmlmaker which generates IDGXML files at once ([#1337])
@@ -8,7 +345,7 @@
8
345
  ## Breaking Changes
9
346
  * review-init no longer creates empty `layouts` folder ([#1340])
10
347
  * PDFMaker: fix a problem that white space characters disappeared in `@<code>`, `@<tt>`, `@<tti>`, and `@<ttb>`. Also the string is automatically wrapped ([#1348])
11
- * `//texequation`、`//embed` and `//graph` that don't allow inline op no longer escape inline op in strings. And don't put extra line break ([#1371], [#1374])
348
+ * `//texequation`, `//embed` and `//graph` that don't allow inline op no longer escape inline op in strings. And don't put extra line break ([#1371], [#1374])
12
349
  * PDFMaker: change the default table placement from `htp` to `H` for use in columns (`\floatplacement{table}` value in review-style.sty) [#1385]
13
350
  * PDFMaker: the space between Japanese/Western characters in the code lists is changed to 0 from 1/4 character ([#1401])
14
351
  * change the default value of `toc` parameter from null (false, don't create a table of contents) to true (create a table of contents) ([#1405])
@@ -622,7 +959,7 @@
622
959
 
623
960
  ## Enhancements
624
961
 
625
- * allow block `{ //}` in `//indepimage`. ([#802])
962
+ * allow block `{ ... //}` in `//indepimage`. ([#802])
626
963
  * warn when images are not found in `//indepimage`([#803])
627
964
  * LATEXBuilder: allow caption in `//source` ([#834])
628
965