hikiutils 0.2.3.9 → 0.2.3.11
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/hikiutils_bob/.#Rakefile +1 -0
- data/hikiutils_bob/Rakefile +32 -12
- data/hikiutils_bob/latex2hiki.hiki +23 -1
- data/hikiutils_bob/latex_all.hiki +50 -40
- data/hikiutils_bob/latex_dir/hikiutils_bob.log +86 -87
- data/hikiutils_bob/latex_dir/hikiutils_bob.pdf +0 -0
- data/hikiutils_bob/latex_dir/hikiutils_bob.synctex.gz +0 -0
- data/hikiutils_bob/latex_dir/hikiutils_bob.tex +1 -2
- data/hikiutils_bob/latex_dir/hikiutils_bob.toc +11 -7
- data/hikiutils_bob/latex_dir/jlisting.sty +216 -0
- data/hikiutils_bob/latex_dir/latex2hiki.aux +4 -3
- data/hikiutils_bob/latex_dir/latex2hiki.tex +20 -1
- data/hikiutils_bob/latex_dir/latex_all.aux +4 -2
- data/hikiutils_bob/latex_dir/latex_all.tex +57 -45
- data/hikiutils_bob/latex_dir/pre.tex +1 -1
- data/hikiutils_bob/latex_dir/sync.aux +11 -10
- data/hikiutils_bob/latex_dir/sync.tex +27 -20
- data/hikiutils_bob/sync.hiki +23 -14
- data/lib/hikiutils.rb +3 -1
- data/lib/hikiutils.rb~ +1 -1
- data/lib/hikiutils/version.rb +1 -1
- data/lib/templates/Rakefile_hiki_sync +32 -12
- data/lib/templates/jlisting.sty +216 -0
- metadata +4 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8593016b999cfcfb16cac0d9b99cc02d34afe7e4
|
4
|
+
data.tar.gz: caa3080fbfd764fab0bec85d78f87f96494b1b25
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0efd2413b29a81f46cabbdfe50493f0f83f7d60c7337cc53412c0f190df2deafdd855d34d8313fcc350e05cfe3718d1d32b8783df8a2ee1c635fef38e699688e
|
7
|
+
data.tar.gz: c1cc3f9833ab907f17341dde92b6befbca1ba5f4700a3caafcb057048b6609aa0e8e98aeb157570821231d56b4ad09f91fe45975444fa8ba9b6d9acb6955068e
|
@@ -0,0 +1 @@
|
|
1
|
+
bob@bob.local.81065
|
data/hikiutils_bob/Rakefile
CHANGED
@@ -96,18 +96,38 @@ task :mk_toc do
|
|
96
96
|
File.open("toc.hiki",'w'){|file| file.print cont}
|
97
97
|
end
|
98
98
|
|
99
|
-
desc "hiki
|
99
|
+
desc "FILE.hikiあるいはhikiファイルすべてを最新状態に更新"
|
100
100
|
task :touch do
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
101
|
+
if file=ARGV[1]
|
102
|
+
p target = $basename+"_"+file.split('.')[0]
|
103
|
+
system "hiki -u #{target}"
|
104
|
+
else
|
105
|
+
p target = File.join($hiki_dir,'cache','attach',$basename)
|
106
|
+
system "touch #{target}/*"
|
107
|
+
Dir.entries('.').each{|file|
|
108
|
+
file_split=file.split(".")
|
109
|
+
if file_split[1]=='hiki'
|
110
|
+
next if file_split[0]==$basename
|
111
|
+
p target = $basename+"_"+file_split[0]
|
112
|
+
system "hiki -u #{target}"
|
113
|
+
end
|
114
|
+
}
|
115
|
+
end
|
116
|
+
end
|
117
|
+
|
118
|
+
desc "FILE.hikiあるいはhikiファイルをedtiorで開く"
|
119
|
+
task :open do
|
120
|
+
if file=ARGV[1]
|
121
|
+
system "open -a mi #{file}"
|
122
|
+
else
|
123
|
+
Dir.entries('.').each{|file|
|
124
|
+
file_split=file.split(".")
|
125
|
+
if file_split[1]=='hiki'
|
126
|
+
p target = file_split[0]
|
127
|
+
system "open -a mi #{target}"
|
128
|
+
end
|
129
|
+
}
|
130
|
+
end
|
111
131
|
end
|
112
132
|
|
113
133
|
desc "FILE1をlatexに変換"
|
@@ -175,7 +195,7 @@ task :latex_all do
|
|
175
195
|
toc = false
|
176
196
|
File.readlines(File.join($latex_dir,"#{main_file}.tex")).each{|line|
|
177
197
|
line, toc = "", true if line.match(/\\tableofcontents/) and toc == true #only one
|
178
|
-
|
198
|
+
line ="\\usepackage{listings,jlisting}" if line.match(/\\usepackage{listings}/)
|
179
199
|
if line.match(/section{(.+)}/)
|
180
200
|
if m=line.match(/\\verb\|(.+)\((.+)\)\|/)
|
181
201
|
p m
|
@@ -1,3 +1,25 @@
|
|
1
|
-
!hiki
|
1
|
+
!latexからhikiへの変換
|
2
2
|
!!rake mk_toc
|
3
3
|
latexが作成するtableofcontentsの実態であるtocファイルからhiki用のtoc.hikiを作成する.
|
4
|
+
|
5
|
+
!!listings
|
6
|
+
<<< latex
|
7
|
+
\lstset{
|
8
|
+
basicstyle={\ttfamily\scriptsize},
|
9
|
+
identifierstyle={\scriptsize},
|
10
|
+
commentstyle={\scriptsize\itshape\color{red}},
|
11
|
+
keywordstyle={\scriptsize\bfseries\color{cyan}},
|
12
|
+
ndkeywordstyle={\scriptsize},
|
13
|
+
stringstyle={\scriptsize\color{blue}},
|
14
|
+
frame={tb},
|
15
|
+
breaklines=true,
|
16
|
+
numbers=left,
|
17
|
+
numberstyle={\footnotesize},
|
18
|
+
stepnumber=1,
|
19
|
+
numbersep=1zw,
|
20
|
+
xrightmargin=0zw,
|
21
|
+
xleftmargin=3zw,
|
22
|
+
lineskip=-0.5ex
|
23
|
+
}
|
24
|
+
>>>
|
25
|
+
|
@@ -32,7 +32,7 @@ DRY(Don't Repeat Yourself)原則さえ守れば,文書管理はいいのです
|
|
32
32
|
!!install
|
33
33
|
hiki -i
|
34
34
|
でinstallされています.新たに使うコマンド群は次の通りです.
|
35
|
-
<<<
|
35
|
+
<<<
|
36
36
|
rake latex # FILE1をlatexに変換
|
37
37
|
rake latex_all # すべてのhikiファイルをlatex変換
|
38
38
|
rake latex_wrap # FILE1をwrap formatでlatexに変換
|
@@ -59,10 +59,9 @@ bob% head -3 hikiutils_bob.hiki
|
|
59
59
|
! title:hikiutils -iによる卒論作成システム
|
60
60
|
! autor:Shigeto R. Nishitani
|
61
61
|
! date: Kwansei Gakuen Univ., 2017/1
|
62
|
-
|
63
62
|
>>>
|
64
63
|
とすると,
|
65
|
-
<<<
|
64
|
+
<<<
|
66
65
|
\begin{document}
|
67
66
|
\title{hikiutils -iによる卒論作成システム}
|
68
67
|
\author{Shigeto R. Nishitani}
|
@@ -80,7 +79,7 @@ pwdのdirectoryと同名のbasenameに.hikiの拡張子がついたファイル
|
|
80
79
|
rake latex_all
|
81
80
|
をおこなうと自動で全部を一体にまとめた文書へのlatex変換が出来上がります.
|
82
81
|
たとえば,hikiutils_bob.hikiの記述を
|
83
|
-
<<<
|
82
|
+
<<< tcsh
|
84
83
|
bob% cat hikiutils_bob.hiki
|
85
84
|
!hikiutilsを用いた卒業論文作成
|
86
85
|
|
@@ -122,46 +121,50 @@ bob% cat head.tex
|
|
122
121
|
|
123
122
|
|
124
123
|
!!!!pre.tex
|
124
|
+
latex_allのときは使っていません.formatedの時に読むようにしていますが...読めてないようです.いずれ調べます.
|
125
|
+
|
126
|
+
!!!!mainのpreamble部
|
125
127
|
あまり変更しないほうがいいですが,いずれいじることになります.
|
126
|
-
例えば,フォントポイント数を12から10pt
|
128
|
+
例えば,フォントポイント数を12から10ptに変えるなどです.
|
127
129
|
<<< tex
|
128
|
-
|
129
|
-
\documentclass[10pt,a4j]{article}
|
130
|
-
|
131
|
-
\def\Vec#1{\mbox{\boldmath $#1$}}
|
130
|
+
\documentclass[12pt,a4paper]{jsarticle}
|
132
131
|
\usepackage[dvipdfmx]{graphicx}
|
133
|
-
|
134
|
-
\
|
135
|
-
\
|
136
|
-
\
|
137
|
-
\
|
138
|
-
\
|
139
|
-
\
|
140
|
-
\
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
\
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
132
|
+
\usepackage[dvipdfmx]{color}
|
133
|
+
\usepackage{listings,jlisting}% to use japanese correctly, install jlistings.
|
134
|
+
\lstset{
|
135
|
+
basicstyle={\small\ttfamily},
|
136
|
+
identifierstyle={\small},
|
137
|
+
commentstyle={\small\itshape\color{red}},
|
138
|
+
keywordstyle={\small\bfseries\color{cyan}},
|
139
|
+
ndkeywordstyle={\small},
|
140
|
+
stringstyle={\small\color{blue}},
|
141
|
+
frame={tb},
|
142
|
+
breaklines=true,
|
143
|
+
numbers=left,
|
144
|
+
numberstyle={\scriptsize},
|
145
|
+
stepnumber=1,
|
146
|
+
numbersep=1zw,
|
147
|
+
xrightmargin=0zw,
|
148
|
+
xleftmargin=3zw,
|
149
|
+
lineskip=-0.5ex
|
150
|
+
}
|
151
|
+
\lstdefinestyle{customCsh}{
|
152
|
+
language={csh},
|
153
|
+
numbers=none,
|
154
|
+
}
|
155
|
+
\lstdefinestyle{customRuby}{
|
156
|
+
language={ruby},
|
157
|
+
numbers=left,
|
155
158
|
}
|
156
|
-
\
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
\
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
159
|
+
\lstdefinestyle{customTex}{
|
160
|
+
language={tex},
|
161
|
+
numbers=none,
|
162
|
+
}
|
163
|
+
\lstdefinestyle{customJava}{
|
164
|
+
language={java},
|
165
|
+
numbers=left,
|
166
|
+
}
|
167
|
+
|
165
168
|
>>>
|
166
169
|
|
167
170
|
!!補助コマンドの解説
|
@@ -193,3 +196,10 @@ end
|
|
193
196
|
完成例はこちらです.
|
194
197
|
*{{attach_anchor(calphad_bob.pdf,hikiutils_bob)}}
|
195
198
|
|
199
|
+
!!開発メモ(2017/2/8)
|
200
|
+
* hikiutilsにlatex2hiki, hiki2latexも統合すべきか?
|
201
|
+
* {{ref}} {{cite}}を組み込む
|
202
|
+
* hikiにではなく,rake syncで変換
|
203
|
+
* listingsの調整
|
204
|
+
* jlistingは,\\lstsetや\\lstdefinestyleで引っかかってダメ
|
205
|
+
* basicstyle={\small\ttfamily}これ効いてんにゃろか??
|
@@ -1,4 +1,4 @@
|
|
1
|
-
This is e-pTeX, Version 3.14159265-p3.7-160201-2.6 (utf8.euc) (TeX Live 2016) (preloaded format=platex 2017.1.26)
|
1
|
+
This is e-pTeX, Version 3.14159265-p3.7-160201-2.6 (utf8.euc) (TeX Live 2016) (preloaded format=platex 2017.1.26) 8 FEB 2017 06:57
|
2
2
|
entering extended mode
|
3
3
|
restricted \write18 enabled.
|
4
4
|
file:line:error style messages enabled.
|
@@ -112,7 +112,11 @@ File: listings.cfg 2015/06/04 1.6 listings configuration
|
|
112
112
|
))
|
113
113
|
Package: listings 2015/06/04 1.6 (Carsten Heinz)
|
114
114
|
|
115
|
-
(./
|
115
|
+
(./jlisting.sty
|
116
|
+
Package: jlisting 2006/02/20 0.2 (Thor)
|
117
|
+
\lst@nextchar=\count99
|
118
|
+
\lst@inputfile=\read1
|
119
|
+
) (./hikiutils_bob.aux (./sync.aux
|
116
120
|
|
117
121
|
LaTeX Warning: Label `default' multiply defined.
|
118
122
|
|
@@ -128,51 +132,51 @@ LaTeX Warning: Label `default' multiply defined.
|
|
128
132
|
) (./latex_all.aux) (./latex2hiki.aux))
|
129
133
|
\openout1 = `hikiutils_bob.aux'.
|
130
134
|
|
131
|
-
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line
|
132
|
-
LaTeX Font Info: ... okay on input line
|
133
|
-
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line
|
134
|
-
LaTeX Font Info: ... okay on input line
|
135
|
-
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line
|
136
|
-
LaTeX Font Info: ... okay on input line
|
137
|
-
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line
|
138
|
-
LaTeX Font Info: ... okay on input line
|
139
|
-
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line
|
140
|
-
LaTeX Font Info: ... okay on input line
|
141
|
-
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line
|
142
|
-
LaTeX Font Info: ... okay on input line
|
143
|
-
LaTeX Font Info: Checking defaults for JY1/mc/m/n on input line
|
144
|
-
LaTeX Font Info: ... okay on input line
|
145
|
-
LaTeX Font Info: Checking defaults for JT1/mc/m/n on input line
|
146
|
-
LaTeX Font Info: ... okay on input line
|
147
|
-
\c@lstlisting=\
|
135
|
+
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 38.
|
136
|
+
LaTeX Font Info: ... okay on input line 38.
|
137
|
+
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 38.
|
138
|
+
LaTeX Font Info: ... okay on input line 38.
|
139
|
+
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 38.
|
140
|
+
LaTeX Font Info: ... okay on input line 38.
|
141
|
+
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 38.
|
142
|
+
LaTeX Font Info: ... okay on input line 38.
|
143
|
+
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 38.
|
144
|
+
LaTeX Font Info: ... okay on input line 38.
|
145
|
+
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 38.
|
146
|
+
LaTeX Font Info: ... okay on input line 38.
|
147
|
+
LaTeX Font Info: Checking defaults for JY1/mc/m/n on input line 38.
|
148
|
+
LaTeX Font Info: ... okay on input line 38.
|
149
|
+
LaTeX Font Info: Checking defaults for JT1/mc/m/n on input line 38.
|
150
|
+
LaTeX Font Info: ... okay on input line 38.
|
151
|
+
\c@lstlisting=\count100
|
148
152
|
LaTeX Font Info: Font shape `JT1/mc/m/n' will be
|
149
|
-
(Font) scaled to size 16.60605pt on input line
|
153
|
+
(Font) scaled to size 16.60605pt on input line 44.
|
150
154
|
LaTeX Font Info: Font shape `JY1/mc/m/n' will be
|
151
|
-
(Font) scaled to size 16.60605pt on input line
|
155
|
+
(Font) scaled to size 16.60605pt on input line 44.
|
152
156
|
LaTeX Font Info: Font shape `JT1/mc/m/n' will be
|
153
|
-
(Font) scaled to size 11.53198pt on input line
|
157
|
+
(Font) scaled to size 11.53198pt on input line 44.
|
154
158
|
LaTeX Font Info: Font shape `JY1/mc/m/n' will be
|
155
|
-
(Font) scaled to size 11.53198pt on input line
|
159
|
+
(Font) scaled to size 11.53198pt on input line 44.
|
156
160
|
LaTeX Font Info: External font `cmex10' loaded for size
|
157
|
-
(Font) <12> on input line
|
161
|
+
(Font) <12> on input line 44.
|
158
162
|
LaTeX Font Info: External font `cmex10' loaded for size
|
159
|
-
(Font) <8> on input line
|
163
|
+
(Font) <8> on input line 44.
|
160
164
|
LaTeX Font Info: External font `cmex10' loaded for size
|
161
|
-
(Font) <6> on input line
|
165
|
+
(Font) <6> on input line 44.
|
162
166
|
LaTeX Font Info: Font shape `JY1/mc/m/n' will be
|
163
|
-
(Font) scaled to size 5.76599pt on input line
|
167
|
+
(Font) scaled to size 5.76599pt on input line 44.
|
164
168
|
LaTeX Font Info: Font shape `JT1/gt/m/n' will be
|
165
|
-
(Font) scaled to size 9.60999pt on input line
|
169
|
+
(Font) scaled to size 9.60999pt on input line 47.
|
166
170
|
LaTeX Font Info: Font shape `JY1/gt/m/n' will be
|
167
|
-
(Font) scaled to size 9.60999pt on input line
|
171
|
+
(Font) scaled to size 9.60999pt on input line 47.
|
168
172
|
LaTeX Font Info: Font shape `JT1/mc/m/n' will be
|
169
|
-
(Font) scaled to size 13.83836pt on input line
|
173
|
+
(Font) scaled to size 13.83836pt on input line 47.
|
170
174
|
LaTeX Font Info: Font shape `JY1/mc/m/n' will be
|
171
|
-
(Font) scaled to size 13.83836pt on input line
|
175
|
+
(Font) scaled to size 13.83836pt on input line 47.
|
172
176
|
LaTeX Font Info: Font shape `JT1/gt/m/n' will be
|
173
|
-
(Font) scaled to size 13.83836pt on input line
|
177
|
+
(Font) scaled to size 13.83836pt on input line 47.
|
174
178
|
LaTeX Font Info: Font shape `JY1/gt/m/n' will be
|
175
|
-
(Font) scaled to size 13.83836pt on input line
|
179
|
+
(Font) scaled to size 13.83836pt on input line 47.
|
176
180
|
(./hikiutils_bob.toc [1
|
177
181
|
|
178
182
|
]
|
@@ -188,13 +192,13 @@ LaTeX Font Info: Font shape `JY1/mc/m/n' will be
|
|
188
192
|
\tf@toc=\write3
|
189
193
|
\openout3 = `hikiutils_bob.toc'.
|
190
194
|
|
191
|
-
LaTeX Font Info: Try loading font information for OMS+cmr on input line
|
195
|
+
LaTeX Font Info: Try loading font information for OMS+cmr on input line 50.
|
192
196
|
|
193
197
|
(/usr/local/texlive/2016/texmf-dist/tex/latex/base/omscmr.fd
|
194
198
|
File: omscmr.fd 2014/09/29 v2.5h Standard LaTeX font definitions
|
195
199
|
)
|
196
200
|
LaTeX Font Info: Font shape `OMS/cmr/m/n' in size <10> not available
|
197
|
-
(Font) Font shape `OMS/cmsy/m/n' tried instead on input line
|
201
|
+
(Font) Font shape `OMS/cmsy/m/n' tried instead on input line 50.
|
198
202
|
[3]
|
199
203
|
\openout2 = `sync.aux'.
|
200
204
|
|
@@ -215,41 +219,59 @@ LaTeX Font Info: Font shape `JY1/gt/m/n' will be
|
|
215
219
|
(Font) scaled to size 11.53198pt on input line 16.
|
216
220
|
File: ../figs/./hikiutils_bob.003.jpeg Graphic file (type eps)
|
217
221
|
<../figs/./hikiutils_bob.003.jpeg>
|
222
|
+
(/usr/local/texlive/2016/texmf-dist/tex/latex/listings/lstlang1.sty
|
223
|
+
File: lstlang1.sty 2015/06/04 1.6 listings language file
|
224
|
+
)
|
218
225
|
LaTeX Font Info: Font shape `JT1/mc/m/n' will be
|
219
|
-
(Font) scaled to size 6.72699pt on input line
|
220
|
-
|
221
|
-
|
226
|
+
(Font) scaled to size 6.72699pt on input line 39.
|
227
|
+
LaTeX Font Info: Font shape `JT1/gt/m/n' will be
|
228
|
+
(Font) scaled to size 6.72699pt on input line 39.
|
229
|
+
LaTeX Font Info: Font shape `JY1/gt/m/n' will be
|
230
|
+
(Font) scaled to size 6.72699pt on input line 39.
|
231
|
+
LaTeX Font Info: Font shape `JT1/gt/m/n' will be
|
232
|
+
(Font) scaled to size 8.64899pt on input line 40.
|
233
|
+
LaTeX Font Info: Font shape `JY1/gt/m/n' will be
|
234
|
+
(Font) scaled to size 8.64899pt on input line 40.
|
235
|
+
[5]
|
222
236
|
File: ../figs/./hikiutils_bob.004.jpeg Graphic file (type eps)
|
223
|
-
<../figs/./hikiutils_bob.004.jpeg> [6] [7] [8]
|
224
|
-
LaTeX Font Info: Try loading font information for OML+cmr on input line 139.
|
225
|
-
|
226
|
-
|
227
|
-
(/usr/local/texlive/2016/texmf-dist/tex/latex/base/omlcmr.fd
|
228
|
-
File: omlcmr.fd 2014/09/29 v2.5h Standard LaTeX font definitions
|
229
|
-
)
|
230
|
-
LaTeX Font Info: Font shape `OML/cmr/m/n' in size <10> not available
|
231
|
-
(Font) Font shape `OML/cmm/m/it' tried instead on input line 139.
|
232
|
-
[9]
|
233
|
-
Overfull \hbox (9.61267pt too wide) in paragraph at lines 180--180
|
234
|
-
[]\OT1/cmtt/m/n/10 -rw-rw-rw- 1 bob staff 7220 2 5 12:03 hikiutils_bob_l
|
235
|
-
atex_all[]
|
236
|
-
[]
|
237
237
|
|
238
|
+
<../figs/./hikiutils_bob.004.jpeg> [6]
|
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 90.
|
241
|
+
LaTeX Font Info: Font shape `JT1/gt/m/n' will be
|
242
|
+
(Font) scaled to size 8.64899pt on input line 90.
|
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 90.
|
245
|
+
LaTeX Font Info: Font shape `JY1/gt/m/n' will be
|
246
|
+
(Font) scaled to size 8.64899pt on input line 90.
|
247
|
+
[7] [8] [9]
|
238
248
|
File: ../figs/./hikiutils_bob.005.jpeg Graphic file (type eps)
|
239
|
-
|
240
|
-
|
249
|
+
|
250
|
+
<../figs/./hikiutils_bob.005.jpeg> [10]
|
251
|
+
Overfull \hbox (24.60419pt too wide) in paragraph at lines 234--235
|
241
252
|
[]\OT1/cmtt/m/n/10 convert #{source} -resize 20% #{target}\JY1/gt/m/n/10 によ
|
242
253
|
って , \OT1/cmtt/m/n/10 target=figs/TAERGET.png
|
243
254
|
[]
|
244
255
|
|
245
|
-
) [12]
|
256
|
+
[11]) [12]
|
246
257
|
\openout2 = `latex_all.aux'.
|
247
258
|
|
248
259
|
(./latex_all.tex [13
|
249
260
|
|
250
261
|
|
251
262
|
] [14]
|
252
|
-
|
263
|
+
LaTeX Font Info: Font shape `JT1/gt/bx/n' in size <9> not available
|
264
|
+
(Font) Font shape `JT1/gt/m/n' tried instead on input line 97.
|
265
|
+
LaTeX Font Info: Font shape `JT1/gt/m/n' will be
|
266
|
+
(Font) scaled to size 8.64899pt on input line 97.
|
267
|
+
LaTeX Font Info: Font shape `JY1/gt/bx/n' in size <9> not available
|
268
|
+
(Font) Font shape `JY1/gt/m/n' tried instead on input line 97.
|
269
|
+
LaTeX Font Info: Font shape `JY1/gt/m/n' will be
|
270
|
+
(Font) scaled to size 8.64899pt on input line 97.
|
271
|
+
LaTeX Font Info: Font shape `OT1/cmtt/bx/n' in size <9> not available
|
272
|
+
(Font) Font shape `OT1/cmtt/m/n' tried instead on input line 97.
|
273
|
+
|
274
|
+
Overfull \hbox (71.46521pt too wide) in paragraph at lines 107--108
|
253
275
|
[]\JY1/mc/m/n/10 うまくできないときは\JY1/gt/m/n/10 ここ \OT1/cmtt/m/n/10 (http
|
254
276
|
://qiita.com/hideaki_polisci/items/3afd204449c6cdd995c9)
|
255
277
|
[]
|
@@ -283,30 +305,7 @@ File: lstlang3.sty 2015/06/04 1.6 listings language file
|
|
283
305
|
)
|
284
306
|
(/usr/local/texlive/2016/texmf-dist/tex/latex/listings/lstmisc.sty
|
285
307
|
File: lstmisc.sty 2015/06/04 1.6 (Carsten Heinz)
|
286
|
-
)
|
287
|
-
LaTeX Font Info: Font shape `JT1/gt/m/n' will be
|
288
|
-
(Font) scaled to size 8.64899pt on input line 128.
|
289
|
-
LaTeX Font Info: Font shape `JY1/gt/m/n' will be
|
290
|
-
(Font) scaled to size 8.64899pt on input line 128.
|
291
|
-
LaTeX Font Info: Font shape `JT1/gt/m/it' in size <9> not available
|
292
|
-
(Font) Font shape `JT1/gt/m/n' tried instead on input line 129.
|
293
|
-
LaTeX Font Info: Font shape `JT1/gt/m/n' will be
|
294
|
-
(Font) scaled to size 8.64899pt on input line 129.
|
295
|
-
LaTeX Font Info: Font shape `JY1/gt/m/it' in size <9> not available
|
296
|
-
(Font) Font shape `JY1/gt/m/n' tried instead on input line 129.
|
297
|
-
LaTeX Font Info: Font shape `JY1/gt/m/n' will be
|
298
|
-
(Font) scaled to size 8.64899pt on input line 129.
|
299
|
-
LaTeX Font Info: Font shape `JT1/gt/bx/n' in size <9> not available
|
300
|
-
(Font) Font shape `JT1/gt/m/n' tried instead on input line 146.
|
301
|
-
LaTeX Font Info: Font shape `JT1/gt/m/n' will be
|
302
|
-
(Font) scaled to size 8.64899pt on input line 146.
|
303
|
-
LaTeX Font Info: Font shape `JY1/gt/bx/n' in size <9> not available
|
304
|
-
(Font) Font shape `JY1/gt/m/n' tried instead on input line 146.
|
305
|
-
LaTeX Font Info: Font shape `JY1/gt/m/n' will be
|
306
|
-
(Font) scaled to size 8.64899pt on input line 146.
|
307
|
-
LaTeX Font Info: Font shape `OT1/cmtt/bx/n' in size <9> not available
|
308
|
-
(Font) Font shape `OT1/cmtt/m/n' tried instead on input line 146.
|
309
|
-
[16]
|
308
|
+
) [16]
|
310
309
|
(/usr/local/texlive/2016/texmf-dist/tex/latex/listings/lstlang1.sty
|
311
310
|
File: lstlang1.sty 2015/06/04 1.6 listings language file
|
312
311
|
)
|
@@ -325,12 +324,12 @@ LaTeX Warning: There were multiply-defined labels.
|
|
325
324
|
|
326
325
|
)
|
327
326
|
Here is how much of TeX's memory you used:
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
327
|
+
3616 strings out of 493683
|
328
|
+
50368 string characters out of 6149653
|
329
|
+
216060 words of memory out of 5000000
|
330
|
+
7142 multiletter control sequences out of 15000+600000
|
331
|
+
16122 words of font info for 75 fonts, out of 8000000 for 9000
|
333
332
|
934 hyphenation exceptions out of 8191
|
334
|
-
|
333
|
+
50i,9n,78p,749b,1982s stack positions out of 5000i,500n,10000p,200000b,80000s
|
335
334
|
|
336
|
-
Output written on hikiutils_bob.dvi (19 pages,
|
335
|
+
Output written on hikiutils_bob.dvi (19 pages, 67556 bytes).
|