hiki2latex 0.9.12 → 0.9.12.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (62) hide show
  1. checksums.yaml +4 -4
  2. data/.yardopts +1 -3
  3. data/{README.en.md → README.md} +6 -4
  4. data/Rakefile +56 -28
  5. data/exe/#hiki2latex# +5 -0
  6. data/hiki2latex.gemspec +3 -0
  7. data/hiki2latex.wiki/AbstSample.pdf +0 -0
  8. data/hiki2latex.wiki/Math.png +0 -0
  9. data/hiki2latex.wiki/Report_head.png +0 -0
  10. data/hiki2latex.wiki/handout_sample.md +73 -0
  11. data/{docs/README.ja.md → hiki2latex.wiki/hiki2latex.md} +14 -16
  12. data/hiki2latex.wiki/hiki2latex_gemizing.md +221 -0
  13. data/hiki2latex.wiki/hiki2latex_init.md +97 -0
  14. data/hiki2latex.wiki/hiki2latex_listings.md +113 -0
  15. data/hiki2latex.wiki/hiki2latex_manual.md +31 -0
  16. data/hiki2latex.wiki/hiki2latex_math.md +147 -0
  17. data/hiki2latex.wiki/hiki2latex_table.md +103 -0
  18. data/hiki2latex.wiki/lpso_abst.pdf +0 -0
  19. data/hiki2latex.wiki/readme_en.md +60 -0
  20. data/{README.ja.md → hiki2latex.wiki/readme_ja.md} +46 -26
  21. data/hiki2latex.wiki/table.png +0 -0
  22. data/hikis/AbstSample.pdf +0 -0
  23. data/hikis/Math.png +0 -0
  24. data/hikis/Report_head.png +0 -0
  25. data/{docs/readme.ja.hiki → hikis/hiki2latex.hiki} +4 -6
  26. data/hikis/hiki2latex_gemizing.hiki +222 -0
  27. data/hikis/hiki2latex_init.hiki +95 -0
  28. data/hikis/hiki2latex_listings.hiki +113 -0
  29. data/hikis/hiki2latex_manual.hiki +32 -0
  30. data/hikis/hiki2latex_math.hiki +145 -0
  31. data/hikis/hiki2latex_table.hiki +102 -0
  32. data/hikis/lpso_abst.pdf +0 -0
  33. data/{docs/readme.hiki → hikis/readme_en.hiki} +2 -0
  34. data/hikis/readme_ja.hiki +133 -0
  35. data/hikis/table.png +0 -0
  36. data/latexes/AbstSample.pdf +0 -0
  37. data/latexes/Math.png +0 -0
  38. data/latexes/Report_head.png +0 -0
  39. data/latexes/head.tex +4 -0
  40. data/latexes/hiki2latex.aux +60 -0
  41. data/latexes/hiki2latex.log +307 -0
  42. data/latexes/hiki2latex.pdf +0 -0
  43. data/latexes/hiki2latex.synctex.gz +0 -0
  44. data/latexes/hiki2latex.tex +213 -0
  45. data/latexes/hiki2latex.toc +47 -0
  46. data/latexes/hiki2latex_gemizing.tex +212 -0
  47. data/latexes/hiki2latex_init.tex +103 -0
  48. data/latexes/hiki2latex_listings.tex +106 -0
  49. data/latexes/hiki2latex_manual.tex +38 -0
  50. data/latexes/hiki2latex_math.tex +151 -0
  51. data/latexes/hiki2latex_table.tex +108 -0
  52. data/latexes/lpso_abst.pdf +0 -0
  53. data/latexes/post.tex +17 -0
  54. data/latexes/table.png +0 -0
  55. data/lib/#hiki2latex.rb# +145 -0
  56. data/lib/hiki2latex/hiki2latex.rb +2 -1
  57. data/lib/hiki2latex/version.rb +1 -1
  58. data/lib/hiki2latex.rb +2 -2
  59. metadata +84 -13
  60. data/#Rakefile# +0 -42
  61. data/#hiki2latex.gemspec# +0 -42
  62. data/{docs/README.en.md → hiki2latex.wiki/readme.md} +4 -4
@@ -1,6 +1,8 @@
1
1
  ! Hiki2latex
2
2
  convert hikidoc text to latex format.
3
3
 
4
+ \![[badge|https://badge.fury.io/rb/hiki2latex.png]]
5
+
4
6
  !! Installation
5
7
  Add this line to your application's Gemfile:
6
8
  <<< ruby
@@ -0,0 +1,133 @@
1
+ {{toc}}
2
+ !【概要】
3
+ hiki formatで書かれた文章を,latex formatに変換する
4
+ !【置き場所】
5
+ * [[rubygems|http://rubygems.org/gems/hiki2latex]]
6
+ * [[Github|https://github.com/daddygongon/hiki2latex]]
7
+
8
+ !【使用法】
9
+ Use as a gem library:
10
+ <<<ruby
11
+ require 'hiki2latex'
12
+
13
+ puts HikiDoc.to_latex(File.read(ARGV[0]),{:level=>@level,:listings=>@listings})
14
+ >>>
15
+
16
+ or as a command line tool:
17
+
18
+ :Usage: hiki2latex [options] FILE
19
+
20
+ || option || operation
21
+ || -v, --version || show program Version.
22
+ || -l, --level VALUE || set Level for output section.
23
+ || -p, --plain FILE || make Plain document.
24
+ || -b, --bare FILE || make Bare document.
25
+ || --head FILE || put headers of maketitle file.
26
+ || --pre FILE || put preamble file.
27
+ || --post FILE || put post file.
28
+ || --listings || use listings.sty for preformat with style.
29
+ > hiki2latex --pre PRICM_preamble.tex --post biblio.tex -p test.hiki > test.tex
30
+ > hiki2latex --listings --post post.tex -p ./test.hiki > test.tex
31
+
32
+ *より詳細な使用法は,nishitani0のhiki2latex_gemizingにある.
33
+ *西谷研の内部で利用するときに特化したマニュアルはnishitani0のhiki2latex_manual.
34
+
35
+ !!sample
36
+ 幾つかのサンプルを以下に示す.
37
+ !!!caption:hiki2latexにより作成されたpdfファイトとその元ネタ.
38
+ ||ソース(hiki表示)||pdf(latex変換後)
39
+ ||[[Shunkuntype|Shunkuntype]]のレポート
40
+ ||[[LPSO15研究会の例|LPSO15_fall_meeting_abst]]||{{attach_anchor(LPSO_abst.pdf)}}
41
+ ||[[中間発表hand out例|AbstSample]]||{{attach_anchor(AbstSample.pdf)}}
42
+ ||[[使っているformat集|DocumentFormatter_format_examples]]||
43
+
44
+ !【仕様】
45
+ # hikdoc.rbにwrap
46
+ # header部を独立して提供
47
+ # author, titleはheadに手を加えて提供
48
+ # 図はattach_viewを変換
49
+ # 表はそのまま表示
50
+ ## tableのmulti対応
51
+ # captionはheaderで提供
52
+ # citeは対応しない.
53
+ # graph, tableは[h]で提供.
54
+
55
+ !【具体的な使用例rakefile】
56
+ 具体的な使用例として[[Shunkuntype_report|Shunkuntype_reportd]]を作成した時のRakefile.rbを示す.何度も書き直す時は,このようにして自動化すべき.
57
+ <<< ruby
58
+ task :shunkuntype do
59
+ dir = '~/Sites/nishitani0/Internal/data/text/'
60
+ targets =["Shunkuntype_manual","Shunkuntype_gemizing","TouchTyping_Coding"]
61
+ targets.each{|file|
62
+ p command= "rm -f #{file}.tex"
63
+ system command
64
+ p command= "hiki2latex -l 2 --listings -b #{dir}#{file} > #{file}.tex"
65
+ system command
66
+ }
67
+ file="Shunkuntype_report"
68
+ p command= "rm -f #{file}.tex"
69
+ # p command= "hiki2latex --listings --head head.tex --post post.tex -p #{dir}#{file} > #{file}.tex"
70
+ p command= "hiki2latex --listings --post post.tex -p #{dir}#{file} > #{file}.tex"
71
+ system command
72
+
73
+ p command = "open #{file}.tex"
74
+ system command
75
+ exit
76
+ end
77
+ >>>
78
+ 本文(Shunkuntype_report.tex)と付録(targets.texs)がある.付録は'-l 2 -b'によってsubsectionからのtitle levelにしてbare modeで作っている.post.texにpostで付け加えるtex部を指定して,appendixをつけている.
79
+
80
+ !【code documents】
81
+ [[rdoc|http://nishitani0.kwansei.ac.jp/~bob/nishitani0/rdocs/hiki2latex/index.html]]に置いといたけど,ruby gemsやgithubに置けば不要となる.
82
+ !【変更履歴,内容】
83
+ 変更履歴,内容を表に示す.15/8月期で基本開発.16/2月期にgem化.
84
+ !!caption:変更履歴,内容
85
+ ||memo ||date||hiki
86
+ ||hikidoc.rbからhiki2latex.rb||15/8/4||[[hiki2latex_init]]
87
+ ||hiki2latex.rbひな形作成||15/8/5
88
+ ||@fをStringIOからStringへ||15/8/5
89
+ ||graph+caption||15/8/6||[[LPSO15_fall_meeting_abst]]
90
+ ||math||15/8/7|| [[hiki2latex_math]]
91
+ ||table|| 15/8/8|| [[hiki2latex_table]]
92
+ ||under_score|| 15/8/11 || [[hiki2latex_math]]
93
+ ||gem化|| 16/2/13 || [[hiki2latex_gemizing]]
94
+ ||listings|| 16/2/16 || [[hiki2latex_listings]]
95
+
96
+ !【開発メモ】
97
+ !!制限事項
98
+ * title中へuriの埋め込みが未対応.
99
+ ** uriのverbがlatexのtitle内で使えないため.
100
+ !!【 保留項目】
101
+ # includegraphicsの自動提供
102
+ ## hikiに置かれているgraphは劣化版なんでそれをいじるのはあまり筋がよろしくない.
103
+ ## epsならできるかも.hikeのattach_viewでサイズをどういじっているか...
104
+ # underbar(_)がlatexでは全て引っかかる.escapeする?-> 対応済み [[hiki2latex_math]]
105
+ ## snake表記はrubyではfile名や変数名に頻繁に使われるので対処が必要かも.
106
+
107
+ !! 【math】
108
+ $$での変換がうまくいかない.
109
+ hikiconf.rb
110
+ での設定を
111
+ #@style = 'default'
112
+ @style = 'math'
113
+ としたらhikiからエラーは出なくなったが.まだまだ....
114
+
115
+ !!【user def】
116
+ \def\Vec#1{\mbox{\boldmath $#1$}}
117
+ はpreambleに置くことが推奨されているが,実際は,使用するまでに定義すればいい.preambleをいじるようになるころには,latexについての十分な経験があると思われるので,hiki2latexではいじらない.ちょこっと必要ならhiki本文中に埋め込むべし.今の仕様では,
118
+ <<< ruby
119
+ def initialize(file_name)
120
+ @buf = ""
121
+ @buf << HEADER+"\n"
122
+ @buf << "\\begin{document}\n"
123
+ @buf << HikiDoc.to_latex(file_name)+"\n"
124
+ @buf << REFERENCE+"\n"
125
+ @buf << "\\end{document}\n"
126
+ end
127
+
128
+ def display
129
+ @buf
130
+ end
131
+ >>>
132
+ とするのが正しそうなので,無理に入れていない.将来はpreambleを保持するような拡張機能(option)が必要かもしれない.それは,「原典一つ主義」で,hikiを原典とするか,latexを原典とするかの選択が迫られたとき.
133
+ **追記(2015/02/17) いい考察だ.解はでてないが今はhiki2latexに埋め込んで,それらの仕様をできるだけ吸収しようとしている.
data/hikis/table.png ADDED
Binary file
Binary file
data/latexes/Math.png ADDED
Binary file
Binary file
data/latexes/head.tex ADDED
@@ -0,0 +1,4 @@
1
+ \title{hiki2latex}
2
+ \author{関西学院大学・理工学部・西谷滋人}
3
+ \date{\today}
4
+ \maketitle
@@ -0,0 +1,60 @@
1
+ \relax
2
+ \@writefile{toc}{\contentsline {section}{\numberline {1}【documents】}{1}}
3
+ \@writefile{toc}{\contentsline {section}{\numberline {2}【使用法】}{1}}
4
+ \@writefile{toc}{\contentsline {subsection}{\numberline {2.1}sample}{2}}
5
+ \@writefile{lot}{\contentsline {table}{\numberline {1}{\ignorespaces hiki2latexにより作成されたpdfファイトとその元ネタ.}}{2}}
6
+ \newlabel{default}{{1}{2}}
7
+ \@writefile{toc}{\contentsline {section}{\numberline {3}【仕様】}{2}}
8
+ \@writefile{toc}{\contentsline {section}{\numberline {4}【具体的な使用例rakefile】}{2}}
9
+ \@writefile{toc}{\contentsline {section}{\numberline {5}【変更履歴,内容】}{3}}
10
+ \@writefile{lot}{\contentsline {table}{\numberline {2}{\ignorespaces 変更履歴,内容}}{3}}
11
+ \newlabel{default}{{2}{3}}
12
+ \@writefile{toc}{\contentsline {section}{\numberline {6}【開発メモ】}{3}}
13
+ \@writefile{toc}{\contentsline {subsection}{\numberline {6.1}制限事項}{3}}
14
+ \@writefile{toc}{\contentsline {subsection}{\numberline {6.2}【 保留項目】}{4}}
15
+ \@writefile{toc}{\contentsline {subsection}{\numberline {6.3}【math】}{4}}
16
+ \@writefile{toc}{\contentsline {subsection}{\numberline {6.4}【user def】}{4}}
17
+ \@writefile{toc}{\contentsline {section}{\numberline {付録A}詳細な使用法}{4}}
18
+ \@writefile{toc}{\contentsline {subsubsection}{\numberline {A.0.1}【概要】}{4}}
19
+ \@writefile{toc}{\contentsline {subsubsection}{\numberline {A.0.2}【使用法】}{5}}
20
+ \@writefile{toc}{\contentsline {subsubsection}{\numberline {A.0.3}【help】}{5}}
21
+ \@writefile{toc}{\contentsline {subsubsection}{\numberline {A.0.4}【詳細使用例(-p)】}{5}}
22
+ \@writefile{toc}{\contentsline {subsubsection}{\numberline {A.0.5}【詳細使用例(-b)】}{6}}
23
+ \@writefile{toc}{\contentsline {subsubsection}{\numberline {A.0.6}【詳細使用例( --head, --pre, --post】}{6}}
24
+ \@writefile{toc}{\contentsline {subsubsection}{\numberline {A.0.7}【lib/hiki2latex.rb】}{7}}
25
+ \@writefile{toc}{\contentsline {paragraph}{kill\_head\_line}{8}}
26
+ \@writefile{toc}{\contentsline {paragraph}{mod\_abstract}{8}}
27
+ \@writefile{toc}{\contentsline {section}{\numberline {付録B}コード内容}{9}}
28
+ \@writefile{toc}{\contentsline {subsection}{\numberline {B.1}起動}{9}}
29
+ \@writefile{toc}{\contentsline {subsubsection}{\numberline {B.1.1}【変更作業の手順】}{9}}
30
+ \@writefile{toc}{\contentsline {subsubsection}{\numberline {B.1.2}【設計】}{9}}
31
+ \@writefile{toc}{\contentsline {paragraph}{【maketitleの挿入】}{9}}
32
+ \@writefile{lot}{\contentsline {table}{\numberline {3}{\ignorespaces }}{9}}
33
+ \newlabel{default}{{3}{9}}
34
+ \@writefile{toc}{\contentsline {subsubsection}{\numberline {B.1.3}【sample】}{10}}
35
+ \@writefile{toc}{\contentsline {subsubsection}{\numberline {B.1.4}【pdfの貼り込み】}{10}}
36
+ \@writefile{toc}{\contentsline {subsection}{\numberline {B.2}math環境}{11}}
37
+ \@writefile{toc}{\contentsline {subsubsection}{\numberline {B.2.1}【概要】}{11}}
38
+ \@writefile{toc}{\contentsline {subsubsection}{\numberline {B.2.2}【入力:hiki】}{11}}
39
+ \@writefile{toc}{\contentsline {subsubsection}{\numberline {B.2.3}【出力:latex】}{11}}
40
+ \@writefile{lof}{\contentsline {figure}{\numberline {1}{\ignorespaces }}{11}}
41
+ \newlabel{default}{{1}{11}}
42
+ \@writefile{toc}{\contentsline {subsubsection}{\numberline {B.2.4}【コード解説】}{11}}
43
+ \@writefile{toc}{\contentsline {paragraph}{evaluate\_plugin\_block}{11}}
44
+ \@writefile{toc}{\contentsline {paragraph}{snake\_nameがlatexで引っかかる}{12}}
45
+ \@writefile{toc}{\contentsline {paragraph}{escape\_snake\_namesを改良(2016/02/14)}{13}}
46
+ \@writefile{toc}{\contentsline {paragraph}{escape\_snake\_namesを再改良(2016/02/16)}{13}}
47
+ \@writefile{toc}{\contentsline {subsubsection}{\numberline {B.2.5}【copyright】}{13}}
48
+ \@writefile{toc}{\contentsline {subsection}{\numberline {B.3}table環境}{14}}
49
+ \@writefile{toc}{\contentsline {subsubsection}{\numberline {B.3.1}【概要】}{14}}
50
+ \@writefile{toc}{\contentsline {subsubsection}{\numberline {B.3.2}【仕様】}{14}}
51
+ \@writefile{toc}{\contentsline {subsubsection}{\numberline {B.3.3}【hiki】}{14}}
52
+ \@writefile{lot}{\contentsline {table}{\numberline {4}{\ignorespaces }}{14}}
53
+ \newlabel{default}{{4}{14}}
54
+ \@writefile{toc}{\contentsline {subsubsection}{\numberline {B.3.4}【latex】}{14}}
55
+ \@writefile{toc}{\contentsline {subsubsection}{\numberline {B.3.5}【コード解説】}{14}}
56
+ \@writefile{lof}{\contentsline {figure}{\numberline {2}{\ignorespaces }}{15}}
57
+ \newlabel{default}{{2}{15}}
58
+ \@writefile{toc}{\contentsline {subsection}{\numberline {B.4}source code環境}{17}}
59
+ \@writefile{toc}{\contentsline {subsubsection}{\numberline {B.4.1}【概要】}{17}}
60
+ \@writefile{toc}{\contentsline {subsubsection}{\numberline {B.4.2}【hiki2latexの変更】}{17}}
@@ -0,0 +1,307 @@
1
+ This is e-pTeX, Version 3.14159265-p3.6-141210-2.6 (utf8.euc) (TeX Live 2015) (preloaded format=platex 2015.7.31) 4 NOV 2016 17:08
2
+ entering extended mode
3
+ restricted \write18 enabled.
4
+ file:line:error style messages enabled.
5
+ %&-line parsing enabled.
6
+ **hiki2latex
7
+ (./hiki2latex.tex
8
+ pLaTeX2e <2006/11/10> (based on LaTeX2e <2015/01/01> patch level 0)
9
+ Babel <3.9l> and hyphenation patterns for 79 languages loaded.
10
+ (/usr/local/texlive/2015/texmf-dist/tex/platex/jsclasses/jsarticle.cls
11
+ Document Class: jsarticle 2014/02/07 okumura
12
+ LaTeX Info: Redefining \rmfamily on input line 352.
13
+ LaTeX Info: Redefining \sffamily on input line 355.
14
+ LaTeX Info: Redefining \ttfamily on input line 358.
15
+ \symmincho=\mathgroup4
16
+ LaTeX Font Info: Overwriting symbol font `mincho' in version `bold'
17
+ (Font) JY1/mc/m/n --> JY1/gt/m/n on input line 423.
18
+ LaTeX Font Info: Font shape `JT1/mc/m/n' will be
19
+ (Font) scaled to size 9.60999pt on input line 613.
20
+ LaTeX Font Info: Font shape `JY1/mc/m/n' will be
21
+ (Font) scaled to size 9.60999pt on input line 613.
22
+ \fullwidth=\dimen118
23
+ LaTeX Font Info: Font shape `JT1/mc/m/n' will be
24
+ (Font) scaled to size 7.68799pt on input line 760.
25
+ LaTeX Font Info: Font shape `JY1/mc/m/n' will be
26
+ (Font) scaled to size 7.68799pt on input line 760.
27
+ \c@part=\count81
28
+ \c@section=\count82
29
+ \c@subsection=\count83
30
+ \c@subsubsection=\count84
31
+ \c@paragraph=\count85
32
+ \c@subparagraph=\count86
33
+ \@abstractbox=\box41
34
+ \c@figure=\count87
35
+ \c@table=\count88
36
+ \abovecaptionskip=\skip41
37
+ \belowcaptionskip=\skip42
38
+ \js@tocl@width=\dimen119
39
+ \@lnumwidth=\dimen120
40
+ \bibindent=\dimen121
41
+ LaTeX Info: Redefining \TeX on input line 1731.
42
+ LaTeX Info: Redefining \LaTeX on input line 1757.
43
+ LaTeX Info: Redefining \LaTeXe on input line 1782.
44
+ \heisei=\count89
45
+ ) (/usr/local/texlive/2015/texmf-dist/tex/latex/graphics/graphicx.sty
46
+ Package: graphicx 2014/10/28 v1.0g Enhanced LaTeX Graphics (DPC,SPQR)
47
+
48
+ (/usr/local/texlive/2015/texmf-dist/tex/latex/graphics/keyval.sty
49
+ Package: keyval 2014/10/28 v1.15 key=value parser (DPC)
50
+ \KV@toks@=\toks15
51
+ )
52
+ (/usr/local/texlive/2015/texmf-dist/tex/latex/graphics/graphics.sty
53
+ Package: graphics 2014/10/28 v1.0p Standard LaTeX Graphics (DPC,SPQR)
54
+
55
+ (/usr/local/texlive/2015/texmf-dist/tex/latex/graphics/trig.sty
56
+ Package: trig 1999/03/16 v1.09 sin cos tan (DPC)
57
+ )
58
+ (/usr/local/texlive/2015/texmf-dist/tex/latex/latexconfig/graphics.cfg
59
+ File: graphics.cfg 2010/04/23 v1.9 graphics configuration of TeX Live
60
+ )
61
+ Package graphics Info: Driver file: dvipdfmx.def on input line 94.
62
+
63
+ (/usr/local/texlive/2015/texmf-dist/tex/latex/dvipdfmx-def/dvipdfmx.def
64
+ File: dvipdfmx.def 2015/03/26 v4.04 LaTeX color/graphics driver for dvipdfmx (T
65
+ eX Live/ChoF)
66
+ ))
67
+ \Gin@req@height=\dimen122
68
+ \Gin@req@width=\dimen123
69
+ )
70
+ (/usr/local/texlive/2015/texmf-dist/tex/latex/graphics/color.sty
71
+ Package: color 2014/10/28 v1.1a Standard LaTeX Color (DPC)
72
+
73
+ (/usr/local/texlive/2015/texmf-dist/tex/latex/latexconfig/color.cfg
74
+ File: color.cfg 2007/01/18 v1.5 color configuration of teTeX/TeXLive
75
+ )
76
+ Package color Info: Driver file: dvipdfmx.def on input line 142.
77
+
78
+ (/usr/local/texlive/2015/texmf-dist/tex/latex/graphics/dvipsnam.def
79
+ File: dvipsnam.def 2014/10/14 v3.0j Driver-dependent file (DPC,SPQR)
80
+ ))
81
+ (/usr/local/texlive/2015/texmf-dist/tex/latex/listings/listings.sty
82
+ \lst@mode=\count90
83
+ \lst@gtempboxa=\box42
84
+ \lst@token=\toks16
85
+ \lst@length=\count91
86
+ \lst@currlwidth=\dimen124
87
+ \lst@column=\count92
88
+ \lst@pos=\count93
89
+ \lst@lostspace=\dimen125
90
+ \lst@width=\dimen126
91
+ \lst@newlines=\count94
92
+ \lst@lineno=\count95
93
+ \lst@maxwidth=\dimen127
94
+
95
+ (/usr/local/texlive/2015/texmf-dist/tex/latex/listings/lstmisc.sty
96
+ File: lstmisc.sty 2014/09/06 1.5e (Carsten Heinz)
97
+ \c@lstnumber=\count96
98
+ \lst@skipnumbers=\count97
99
+ \lst@framebox=\box43
100
+ )
101
+ (/usr/local/texlive/2015/texmf-dist/tex/latex/listings/listings.cfg
102
+ File: listings.cfg 2014/09/06 1.5e listings configuration
103
+ ))
104
+ Package: listings 2014/09/06 1.5e (Carsten Heinz)
105
+
106
+
107
+ LaTeX Warning: Unused global option(s):
108
+ [a4jpaper].
109
+
110
+ (./hiki2latex.aux
111
+
112
+ LaTeX Warning: Label `default' multiply defined.
113
+
114
+
115
+ LaTeX Warning: Label `default' multiply defined.
116
+
117
+
118
+ LaTeX Warning: Label `default' multiply defined.
119
+
120
+
121
+ LaTeX Warning: Label `default' multiply defined.
122
+
123
+
124
+ LaTeX Warning: Label `default' multiply defined.
125
+
126
+ )
127
+ \openout1 = `hiki2latex.aux'.
128
+
129
+ LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 39.
130
+ LaTeX Font Info: ... okay on input line 39.
131
+ LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 39.
132
+ LaTeX Font Info: ... okay on input line 39.
133
+ LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 39.
134
+ LaTeX Font Info: ... okay on input line 39.
135
+ LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 39.
136
+ LaTeX Font Info: ... okay on input line 39.
137
+ LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 39.
138
+ LaTeX Font Info: ... okay on input line 39.
139
+ LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 39.
140
+ LaTeX Font Info: ... okay on input line 39.
141
+ LaTeX Font Info: Checking defaults for JY1/mc/m/n on input line 39.
142
+ LaTeX Font Info: ... okay on input line 39.
143
+ LaTeX Font Info: Checking defaults for JT1/mc/m/n on input line 39.
144
+ LaTeX Font Info: ... okay on input line 39.
145
+ \c@lstlisting=\count98
146
+ LaTeX Font Info: Font shape `JT1/mc/m/n' will be
147
+ (Font) scaled to size 16.60605pt on input line 43.
148
+ LaTeX Font Info: Font shape `JY1/mc/m/n' will be
149
+ (Font) scaled to size 16.60605pt on input line 43.
150
+ LaTeX Font Info: Font shape `JT1/mc/m/n' will be
151
+ (Font) scaled to size 11.53198pt on input line 43.
152
+ LaTeX Font Info: Font shape `JY1/mc/m/n' will be
153
+ (Font) scaled to size 11.53198pt on input line 43.
154
+ LaTeX Font Info: External font `cmex10' loaded for size
155
+ (Font) <12> on input line 43.
156
+ LaTeX Font Info: External font `cmex10' loaded for size
157
+ (Font) <8> on input line 43.
158
+ LaTeX Font Info: External font `cmex10' loaded for size
159
+ (Font) <6> on input line 43.
160
+ LaTeX Font Info: Font shape `JY1/mc/m/n' will be
161
+ (Font) scaled to size 5.76599pt on input line 43.
162
+ LaTeX Font Info: Font shape `JT1/mc/m/n' will be
163
+ (Font) scaled to size 8.64899pt on input line 45.
164
+ LaTeX Font Info: Font shape `JY1/mc/m/n' will be
165
+ (Font) scaled to size 8.64899pt on input line 45.
166
+ LaTeX Font Info: Font shape `JT1/gt/m/n' will be
167
+ (Font) scaled to size 8.64899pt on input line 45.
168
+ LaTeX Font Info: Font shape `JY1/gt/m/n' will be
169
+ (Font) scaled to size 8.64899pt on input line 45.
170
+ LaTeX Font Info: Font shape `JT1/mc/m/n' will be
171
+ (Font) scaled to size 13.83836pt on input line 49.
172
+ LaTeX Font Info: Font shape `JY1/mc/m/n' will be
173
+ (Font) scaled to size 13.83836pt on input line 49.
174
+ LaTeX Font Info: Font shape `JT1/gt/m/n' will be
175
+ (Font) scaled to size 13.83836pt on input line 49.
176
+ LaTeX Font Info: Font shape `JY1/gt/m/n' will be
177
+ (Font) scaled to size 13.83836pt on input line 49.
178
+ (./hiki2latex.toc
179
+ LaTeX Font Info: External font `cmex10' loaded for size
180
+ (Font) <9> on input line 3.
181
+ LaTeX Font Info: External font `cmex10' loaded for size
182
+ (Font) <5> on input line 3.
183
+ LaTeX Font Info: Font shape `JY1/mc/m/n' will be
184
+ (Font) scaled to size 4.805pt on input line 3.
185
+ )
186
+ \tf@toc=\write3
187
+ \openout3 = `hiki2latex.toc'.
188
+
189
+ LaTeX Font Info: Try loading font information for OMS+cmr on input line 51.
190
+
191
+ (/usr/local/texlive/2015/texmf-dist/tex/latex/base/omscmr.fd
192
+ File: omscmr.fd 2014/09/29 v2.5h Standard LaTeX font definitions
193
+ )
194
+ LaTeX Font Info: Font shape `OMS/cmr/m/n' in size <9> not available
195
+ (Font) Font shape `OMS/cmsy/m/n' tried instead on input line 51.
196
+
197
+ (/usr/local/texlive/2015/texmf-dist/tex/latex/listings/lstlang1.sty
198
+ File: lstlang1.sty 2014/09/06 1.5e listings language file
199
+ )
200
+ LaTeX Font Info: Font shape `JT1/gt/bx/n' in size <9> not available
201
+ (Font) Font shape `JT1/gt/m/n' tried instead on input line 56.
202
+ LaTeX Font Info: Font shape `JT1/gt/m/n' will be
203
+ (Font) scaled to size 8.64899pt on input line 56.
204
+ LaTeX Font Info: Font shape `JY1/gt/bx/n' in size <9> not available
205
+ (Font) Font shape `JY1/gt/m/n' tried instead on input line 56.
206
+ LaTeX Font Info: Font shape `JY1/gt/m/n' will be
207
+ (Font) scaled to size 8.64899pt on input line 56.
208
+ LaTeX Font Info: Font shape `OT1/cmtt/bx/n' in size <9> not available
209
+ (Font) Font shape `OT1/cmtt/m/n' tried instead on input line 56.
210
+ [1
211
+
212
+ ]
213
+ LaTeX Font Info: Font shape `JT1/gt/m/n' will be
214
+ (Font) scaled to size 11.53198pt on input line 67.
215
+ LaTeX Font Info: Font shape `JY1/gt/m/n' will be
216
+ (Font) scaled to size 11.53198pt on input line 67.
217
+ LaTeX Font Info: External font `cmex10' loaded for size
218
+ (Font) <7> on input line 72.
219
+ LaTeX Font Info: Font shape `JY1/mc/m/n' will be
220
+ (Font) scaled to size 6.72699pt on input line 72.
221
+ LaTeX Font Info: Font shape `JT1/gt/m/n' will be
222
+ (Font) scaled to size 9.60999pt on input line 75.
223
+ LaTeX Font Info: Font shape `JY1/gt/m/n' will be
224
+ (Font) scaled to size 9.60999pt on input line 75.
225
+
226
+ Overfull \hbox (451.63043pt too wide) in paragraph at lines 72--82
227
+ []
228
+ []
229
+
230
+ (/usr/local/texlive/2015/texmf-dist/tex/latex/listings/lstlang1.sty
231
+ File: lstlang1.sty 2014/09/06 1.5e listings language file
232
+ )
233
+ (/usr/local/texlive/2015/texmf-dist/tex/latex/listings/lstlang2.sty
234
+ File: lstlang2.sty 2014/09/06 1.5e listings language file
235
+ )
236
+ LaTeX Font Info: Font shape `JT1/mc/m/n' will be
237
+ (Font) scaled to size 6.72699pt on input line 100.
238
+ [2]
239
+ LaTeX Font Info: Font shape `JT1/gt/m/it' in size <9> not available
240
+ (Font) Font shape `JT1/gt/m/n' tried instead on input line 111.
241
+ LaTeX Font Info: Font shape `JT1/gt/m/n' will be
242
+ (Font) scaled to size 8.64899pt on input line 111.
243
+ LaTeX Font Info: Font shape `JY1/gt/m/it' in size <9> not available
244
+ (Font) Font shape `JY1/gt/m/n' tried instead on input line 111.
245
+ LaTeX Font Info: Font shape `JY1/gt/m/n' will be
246
+ (Font) scaled to size 8.64899pt on input line 111.
247
+ LaTeX Font Info: Font shape `JT1/mc/bx/n' in size <9> not available
248
+ (Font) Font shape `JT1/gt/m/n' tried instead on input line 148.
249
+ LaTeX Font Info: Font shape `JT1/gt/m/n' will be
250
+ (Font) scaled to size 8.64899pt on input line 148.
251
+ LaTeX Font Info: Font shape `JY1/mc/bx/n' in size <9> not available
252
+ (Font) Font shape `JY1/gt/m/n' tried instead on input line 148.
253
+ LaTeX Font Info: Font shape `JY1/gt/m/n' will be
254
+ (Font) scaled to size 8.64899pt on input line 148.
255
+
256
+ [3] (./hiki2latex_gemizing.tex [4]
257
+ (/usr/local/texlive/2015/texmf-dist/tex/latex/listings/lstlang1.sty
258
+ File: lstlang1.sty 2014/09/06 1.5e listings language file
259
+ )
260
+ (/usr/local/texlive/2015/texmf-dist/tex/latex/listings/lstlang2.sty
261
+ File: lstlang2.sty 2014/09/06 1.5e listings language file
262
+ )
263
+ (/usr/local/texlive/2015/texmf-dist/tex/latex/listings/lstlang3.sty
264
+ File: lstlang3.sty 2014/09/06 1.5e listings language file
265
+ )
266
+ (/usr/local/texlive/2015/texmf-dist/tex/latex/listings/lstlang1.sty
267
+ File: lstlang1.sty 2014/09/06 1.5e listings language file
268
+ )
269
+ (/usr/local/texlive/2015/texmf-dist/tex/latex/listings/lstlang2.sty
270
+ File: lstlang2.sty 2014/09/06 1.5e listings language file
271
+ )
272
+ (/usr/local/texlive/2015/texmf-dist/tex/latex/listings/lstlang3.sty
273
+ File: lstlang3.sty 2014/09/06 1.5e listings language file
274
+ )
275
+ (/usr/local/texlive/2015/texmf-dist/tex/latex/listings/lstlang1.sty
276
+ File: lstlang1.sty 2014/09/06 1.5e listings language file
277
+ )
278
+ (/usr/local/texlive/2015/texmf-dist/tex/latex/listings/lstlang2.sty
279
+ File: lstlang2.sty 2014/09/06 1.5e listings language file
280
+ )
281
+ (/usr/local/texlive/2015/texmf-dist/tex/latex/listings/lstlang3.sty
282
+ File: lstlang3.sty 2014/09/06 1.5e listings language file
283
+ )
284
+ (/usr/local/texlive/2015/texmf-dist/tex/latex/listings/lstmisc.sty
285
+ File: lstmisc.sty 2014/09/06 1.5e (Carsten Heinz)
286
+ ) [5]
287
+ [6] [7]) [8] (./hiki2latex_init.tex [9]) [10] (./hiki2latex_math.tex
288
+ File: ./Math.png Graphic file (type bmp)
289
+
290
+ <./Math.png> [11] [12]) [13] (./hiki2latex_table.tex
291
+ File: ./table.png Graphic file (type bmp)
292
+ <./table.png> [14]
293
+ [15]) [16] (./hiki2latex_listings.tex [17]) [18] (./hiki2latex.aux)
294
+
295
+ LaTeX Warning: There were multiply-defined labels.
296
+
297
+ )
298
+ Here is how much of TeX's memory you used:
299
+ 3781 strings out of 493777
300
+ 51868 string characters out of 6151334
301
+ 275822 words of memory out of 5000000
302
+ 7240 multiletter control sequences out of 15000+600000
303
+ 16908 words of font info for 76 fonts, out of 8000000 for 9000
304
+ 934 hyphenation exceptions out of 8191
305
+ 47i,9n,76p,376b,1948s stack positions out of 5000i,500n,10000p,200000b,80000s
306
+
307
+ Output written on hiki2latex.dvi (18 pages, 125016 bytes).
Binary file
Binary file