isi 1.2.0 → 1.2.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.
@@ -1,365 +0,0 @@
1
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4
- <head>
5
- <title>File: README [isi]</title>
6
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
7
- <meta http-equiv="Content-Script-Type" content="text/javascript" />
8
- <link rel="stylesheet" href=".././rdoc-style.css" type="text/css" media="screen" />
9
- <script type="text/javascript">
10
- // <![CDATA[
11
-
12
- function popupCode( url ) {
13
- window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
14
- }
15
-
16
- function toggleCode( id ) {
17
- if ( document.getElementById )
18
- elem = document.getElementById( id );
19
- else if ( document.all )
20
- elem = eval( "document.all." + id );
21
- else
22
- return false;
23
-
24
- elemStyle = elem.style;
25
-
26
- if ( elemStyle.display != "block" ) {
27
- elemStyle.display = "block"
28
- } else {
29
- elemStyle.display = "none"
30
- }
31
-
32
- return true;
33
- }
34
-
35
- // Make codeblocks hidden by default
36
- document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }<\/style>" )
37
-
38
- // ]]>
39
- </script>
40
-
41
- </head>
42
- <body>
43
-
44
-
45
- <div id="fileHeader">
46
- <h1>README</h1>
47
- <table class="header-table">
48
- <tr class="top-aligned-row">
49
- <td><strong>Path:</strong></td>
50
- <td>README
51
-
52
- </td>
53
- </tr>
54
- <tr class="top-aligned-row">
55
- <td><strong>Last Update:</strong></td>
56
- <td>2009-04-22 08:31:53 +0900</td>
57
- </tr>
58
- </table>
59
- </div>
60
- <!-- banner header -->
61
-
62
- <div id="bodyContent">
63
-
64
- <div id="contextContent">
65
-
66
- <div id="description">
67
- <h1>isi</h1>
68
- <h2>What is isi?</h2>
69
- <p>
70
- isi is an ISI Export Format to BibTeX Format converter written in Ruby
71
- script language. You can use isi as a library, too.
72
- </p>
73
- <p>
74
- ISI Web of Science (<a href="http://isiknowledge.com">isiknowledge.com</a>)
75
- provides their bibliographic information in ISI Export Format. You can get
76
- the tagged Marked List in Web of Science by clicking the [SAVE TO FILE]
77
- button.
78
- </p>
79
- <h2>Where is the homepage of isi?</h2>
80
- <p>
81
- <a href="http://isi-rb.rubyforge.org">isi-rb.rubyforge.org</a>
82
- </p>
83
- <h2>Where can I download isi?</h2>
84
- <p>
85
- Go to <a
86
- href="http://rubyforge.org/projects/isi-rb">rubyforge.org/projects/isi-rb</a>
87
- .
88
- </p>
89
- <h2>How can I install isi?</h2>
90
- <p>
91
- There are three different ways to install isi.
92
- </p>
93
- <h3>I. Conservative way; use setup.rb</h3>
94
- <p>
95
- isi-X.Y.Z.tgz package can be installed as:
96
- </p>
97
- <pre>
98
- $ tar zxf isi-X.Y.Z.tgz
99
- $ cd isi-X.Y.Z
100
- $ su
101
- # ruby setup.rb
102
- </pre>
103
- <p>
104
- Note that the text-format library (<a
105
- href="http://rubyforge.org/projects/text-format">rubyforge.org/projects/text-format</a>)
106
- is required.
107
- </p>
108
- <h3>II. RubyGems users can take an easy way</h3>
109
- <p>
110
- There is an easy way, if you are a RubyGems user:
111
- </p>
112
- <pre>
113
- $ su
114
- # gem install isi
115
- </pre>
116
- <p>
117
- If you do not have the text-format library, gem will download and install
118
- the library automatically. The gem server is busy sometimes. If you fail in
119
- downloading, please try again.
120
- </p>
121
- <h3>III. Simple way; just copy isi.rb and journaltitleabbreviation.rb</h3>
122
- <p>
123
- Just copy <a href="lib/isi_rb.html">lib/isi.rb</a> (isi-X.Y.Z.rb) and <a
124
- href="lib/journaltitleabbreviation_rb.html">lib/journaltitleabbreviation.rb</a>
125
- (journaltitleabbreviation-X.Y.Z.rb) into your working directory which
126
- contains your saved &#8220;Marked List&#8221;, e.g. savedrecs.txt.
127
- </p>
128
- <pre>
129
- $ cp lib/isi.rb lib/journaltitleabbreviation.rb ~/your/working/directory/
130
- ($ cp isi-X.Y.Z.rb ~/your/working/directory/isi.rb)
131
- $ cp lib/journaltitleabbreviation.rb ~/your/working/directory/
132
- ($ cp journaltitleabbreviation-X.Y.Z.rb ~/your/working/directory/journaltitleabbreviation.rb)
133
- $ cd ~/your/working/directory/
134
- $ ruby isi.rb savedrecs1.txt savedrecs2.txt
135
- $ ruby isi.rb &lt; savedrecs.txt &gt; savedrecs.bib
136
- </pre>
137
- <p>
138
- Last two lines are examples of usage for this installation way.
139
- </p>
140
- <p>
141
- Note that the text-format library (<a
142
- href="http://rubyforge.org/projects/text-format">rubyforge.org/projects/text-format</a>)
143
- is required.
144
- </p>
145
- <h2>How can I use it?</h2>
146
- <h3>Save the marked records to an output file in ISI Web of Science</h3>
147
- <p>
148
- Mark the articles in ISI Web of Science. Then, view and save the marked
149
- records to an output file (savedrecs.txt). I recommend to check
150
- &#8220;Author(s)&#8221;, &#8220;Title&#8221;, &#8220;Source&#8221;,
151
- &#8220;abstract*&#8221;, &#8220;keywords&#8221;, &#8220;times cited&#8221;
152
- and &#8220;source abbreviation&#8221; as the fields to include in the
153
- output file.
154
- </p>
155
- <h3>Here are some examples</h3>
156
- <pre>
157
- $ isi2bibtex savedrecs.txt
158
- $ isi2bibtex savedrecs1.txt savedrecs2.txt &gt; savedrecs.bib
159
- $ isi2bibtex &lt; savedrecs.txt &gt; savedrecs.bib
160
- $ cat savedrecs.txt | isi2bibtex &gt; savedrecs.bib
161
- </pre>
162
- <h3>Some other useful executables</h3>
163
- <p>
164
- For KakenhiLaTeX <a
165
- href="http://osksn2.hep.sci.osaka-u.ac.jp/~taku/kakenhiLaTeX/">osksn2.hep.sci.osaka-u.ac.jp/~taku/kakenhiLaTeX/</a>
166
- </p>
167
- <pre>
168
- $ isi2kakenhi --help
169
- $ isi2kakenhi --name-regexp='(H\. Yukawa|Hideki Yukawa)' savedrecs.txt &gt; papers.tex
170
- </pre>
171
- <p>
172
- For the database of &#8220;Academic Research Staff at Tohoku
173
- University&#8221; <a
174
- href="http://db.tohoku.ac.jp/whois/TunvTopE.html">db.tohoku.ac.jp/whois/TunvTopE.html</a>
175
- </p>
176
- <pre>
177
- $ isi2tohoku --help
178
- $ isi2tohoku --id 12345678 --name 'Example Name' savedrecs.txt
179
- </pre>
180
- <p>
181
- To convert ISI Export Format to HTML
182
- </p>
183
- <pre>
184
- $ isi2html --help
185
- $ isi2html --full-name='Hideki Yukawa' --name-regexp='(H\. Yukawa|Hideki Yukawa)' savedrecs.txt &gt; index.html
186
- </pre>
187
- <h3>You can use isi as a library.</h3>
188
- <p>
189
- Here is an example:
190
- </p>
191
- <pre>
192
- #!/usr/bin/env ruby
193
- ##
194
- require 'rubygems' # You may not need this line.
195
- require 'isi'
196
-
197
- class ISI_record
198
- def to_title_author
199
- &quot;#{@hash['TI']} - #{and_separated_authors}\n&quot;
200
- end
201
- end
202
-
203
- while rec = ARGF.read_an_ISI_record
204
- print rec.to_title_author
205
- end
206
- </pre>
207
- <h2>Copying</h2>
208
- <p>
209
- isi is distributed in the hope that it will be useful, but WITHOUT ANY
210
- WARRANTY. You can copy, modify and redistribute isi, but only under the
211
- conditions described in the GNU General Public License (the
212
- &#8220;GPL&#8221;).
213
- </p>
214
- <h2>Thanks to contributor(s)!</h2>
215
- <ul>
216
- <li>Marcin Dulak
217
-
218
- </li>
219
- </ul>
220
- <h2>Who is the author?</h2>
221
- <p>
222
- NISHIMATSU Takeshi <t-nissie{at}imr.tohoku.ac.jp>
223
- </p>
224
- <h2>Why did he write it?</h2>
225
- <p>
226
- Because he do not like the output format of the Perl version.
227
- </p>
228
- <h2>Is there a Perl version?</h2>
229
- <p>
230
- Yes. You can find the Perl version by Jonathan Swinton, Ben Bolker, Anthony
231
- Stone, John J. Lee in CTAN <a
232
- href="http://www.ctan.org/tex-archive/biblio/bibtex/utils/isi2bibtex">www.ctan.org/tex-archive/biblio/bibtex/utils/isi2bibtex</a>
233
- .
234
- </p>
235
- <h2>I do not like the output format of isi2bibtex, neither!</h2>
236
- <p>
237
- The output format is defined in the source code WYSIWYGly. So you can
238
- easily change the output format by yourself.
239
- </p>
240
- <h2>How can I get the latest source tree of isi?</h2>
241
- <p>
242
- You can checkout the latest source tree of isi anonymously from RubyForge
243
- with svn(1) command:
244
- </p>
245
- <pre>
246
- $ svn checkout svn://rubyforge.org/var/svn/isi-rb/isi
247
- </pre>
248
- <h2>Meanings of tags in ISI Export Format:</h2>
249
- <p>
250
- See <a
251
- href="http://isibasic.com/help/helpprn.html">isibasic.com/help/helpprn.html</a>
252
- .
253
- </p>
254
- <h3>file-unique tags</h3>
255
- <pre>
256
- FN: File type. The file starts with 'FN ISI Export Format'
257
- VR: Version number of ISI export file format
258
- EF: End of file
259
- </pre>
260
- <h3>normal tags</h3>
261
- <pre>
262
- AB: Abstract
263
- AF: Authors Full (AU Foo, BAR -&gt; AF Foo, B. A. R.; AU Nishimatsu, T -&gt; AF Nishimatsu Takeshi)
264
- AP: Article number of new APS journals (in ISI Web of Knowledge, 2008-)
265
- AR: Article number of new APS journals
266
- AU: Authors
267
- BN: ISBN
268
- BP: Beginning page
269
- C1: Research addresses
270
- CA: Group authors
271
- CL: Conference location
272
- CR: Cited references
273
- CT: Conference title
274
- CY: Conference Date
275
- DE: Original keywords
276
- DI: DOI
277
- DT: Document type
278
- ED: Editors
279
- EM: E-mail address
280
- EP: Ending page
281
- ER: end of a record
282
- FN: File name
283
- FU: Funding agency and grant number
284
- FX: Funding text
285
- GA: IDS number (ISI original)
286
- ID: New keywords given by ISI
287
- IS: issue
288
- J9: 29-character journal title abbreviation
289
- JI: ISO journal title abbreviation
290
- LA: Language
291
- NR: Cited reference count
292
- PD: Publication date e.g. &quot;JUN 8&quot; or &quot;JUL&quot;
293
- PA: Publisher Address
294
- PG: the number of pages
295
- PI: Publisher city
296
- PN: Part number
297
- PT: Publication type (e.g., book, journal, book in series)
298
- PU: Publisher
299
- PY: Publication year
300
- RP: Reprint address
301
- SE: Book series title
302
- SI: Special issue
303
- SN: ISSN
304
- SO: journal title, in full
305
- SP: Conference Sponsors
306
- SU: Supplement
307
- TC: Times cited
308
- TI: Title
309
- UT: ISI unique article identifier
310
- VL: Volume
311
- WP: Publisher web address
312
- </pre>
313
- <h3>isi original tags</h3>
314
- <pre>
315
- UR: URL
316
- </pre>
317
- <h2>Known bugs</h2>
318
- <ul>
319
- <li>none.
320
-
321
- </li>
322
- </ul>
323
- <h2>TODO</h2>
324
- <ul>
325
- <li><a href="lib/isi_rb.html">lib/isi.rb</a> combine
326
- ISI_record#and_separated_authors() and
327
- ISI_record#comma_and_separated_authors() into
328
- ISI_record#separated_authors()
329
-
330
- </li>
331
- <li>Write papers, not tools for writing papers.
332
-
333
- </li>
334
- <li>tests/isi_test.rb
335
-
336
- </li>
337
- </ul>
338
-
339
- </div>
340
-
341
- </div>
342
-
343
-
344
- </div>
345
-
346
- <!-- if includes -->
347
-
348
- <div id="section">
349
-
350
-
351
-
352
-
353
- <!-- if method_list -->
354
-
355
-
356
-
357
-
358
- </div>
359
-
360
- <div id="validator-badges">
361
- <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
362
- </div>
363
-
364
- </body>
365
- </html>
@@ -1,136 +0,0 @@
1
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4
- <head>
5
- <title>File: isi.rb [isi]</title>
6
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
7
- <meta http-equiv="Content-Script-Type" content="text/javascript" />
8
- <link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
9
- <script type="text/javascript">
10
- // <![CDATA[
11
-
12
- function popupCode( url ) {
13
- window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
14
- }
15
-
16
- function toggleCode( id ) {
17
- if ( document.getElementById )
18
- elem = document.getElementById( id );
19
- else if ( document.all )
20
- elem = eval( "document.all." + id );
21
- else
22
- return false;
23
-
24
- elemStyle = elem.style;
25
-
26
- if ( elemStyle.display != "block" ) {
27
- elemStyle.display = "block"
28
- } else {
29
- elemStyle.display = "none"
30
- }
31
-
32
- return true;
33
- }
34
-
35
- // Make codeblocks hidden by default
36
- document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }<\/style>" )
37
-
38
- // ]]>
39
- </script>
40
-
41
- </head>
42
- <body>
43
-
44
-
45
- <div id="fileHeader">
46
- <h1>isi.rb</h1>
47
- <table class="header-table">
48
- <tr class="top-aligned-row">
49
- <td><strong>Path:</strong></td>
50
- <td>lib/isi.rb
51
-
52
- </td>
53
- </tr>
54
- <tr class="top-aligned-row">
55
- <td><strong>Last Update:</strong></td>
56
- <td>2009-04-22 07:04:25 +0900</td>
57
- </tr>
58
- </table>
59
- </div>
60
- <!-- banner header -->
61
-
62
- <div id="bodyContent">
63
-
64
- <div id="contextContent">
65
-
66
- <div id="description">
67
- <p>
68
- Time-stamp: <2009-04-21 20:07:14 takeshi> Author: Takeshi Nishimatsu
69
- Project homepage: <a
70
- href="http://isi-rb.rubyforge.org/">isi-rb.rubyforge.org/</a> Usage: ruby
71
- isi.rb savedrecs.txt > savedrecs.bib
72
- </p>
73
-
74
- </div>
75
-
76
- <div id="requires-list">
77
- <h3 class="section-bar">Required files</h3>
78
-
79
- <div class="name-list">
80
-
81
- text/format&nbsp;&nbsp;
82
-
83
- </div>
84
- </div>
85
-
86
- </div>
87
-
88
-
89
- </div>
90
-
91
- <!-- if includes -->
92
-
93
- <div id="section">
94
-
95
- <div id="constants-list">
96
- <h3 class="section-bar">Constants</h3>
97
-
98
- <div class="name-list">
99
- <table summary="Constants">
100
-
101
- <tr class="top-aligned-row context-row">
102
- <td class="context-item-name">ISI_RB_VERSION</td>
103
- <td>=</td>
104
- <td class="context-item-value">'1.2.0'</td>
105
-
106
- <td>&nbsp;</td>
107
- <td class="context-item-desc">
108
- Time-stamp: <2009-04-21 20:07:14 takeshi> Author: Takeshi Nishimatsu
109
- Project homepage: <a
110
- href="http://isi-rb.rubyforge.org/">isi-rb.rubyforge.org/</a> Usage: ruby
111
- isi.rb savedrecs.txt > savedrecs.bib
112
-
113
- </td>
114
-
115
- </tr>
116
-
117
- </table>
118
- </div>
119
- </div>
120
-
121
-
122
-
123
-
124
- <!-- if method_list -->
125
-
126
-
127
-
128
-
129
- </div>
130
-
131
- <div id="validator-badges">
132
- <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
133
- </div>
134
-
135
- </body>
136
- </html>
@@ -1,104 +0,0 @@
1
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4
- <head>
5
- <title>File: journaltitleabbreviation.rb [isi]</title>
6
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
7
- <meta http-equiv="Content-Script-Type" content="text/javascript" />
8
- <link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
9
- <script type="text/javascript">
10
- // <![CDATA[
11
-
12
- function popupCode( url ) {
13
- window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
14
- }
15
-
16
- function toggleCode( id ) {
17
- if ( document.getElementById )
18
- elem = document.getElementById( id );
19
- else if ( document.all )
20
- elem = eval( "document.all." + id );
21
- else
22
- return false;
23
-
24
- elemStyle = elem.style;
25
-
26
- if ( elemStyle.display != "block" ) {
27
- elemStyle.display = "block"
28
- } else {
29
- elemStyle.display = "none"
30
- }
31
-
32
- return true;
33
- }
34
-
35
- // Make codeblocks hidden by default
36
- document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }<\/style>" )
37
-
38
- // ]]>
39
- </script>
40
-
41
- </head>
42
- <body>
43
-
44
-
45
- <div id="fileHeader">
46
- <h1>journaltitleabbreviation.rb</h1>
47
- <table class="header-table">
48
- <tr class="top-aligned-row">
49
- <td><strong>Path:</strong></td>
50
- <td>lib/journaltitleabbreviation.rb
51
-
52
- </td>
53
- </tr>
54
- <tr class="top-aligned-row">
55
- <td><strong>Last Update:</strong></td>
56
- <td>2008-02-21 00:12:05 +0900</td>
57
- </tr>
58
- </table>
59
- </div>
60
- <!-- banner header -->
61
-
62
- <div id="bodyContent">
63
-
64
- <div id="contextContent">
65
-
66
- <div id="description">
67
- <p>
68
- journaltitleabbreviation.rb Convert a journal title to its abbreviation
69
- Time-stamp: <2008-02-20 10:12:05 takeshi> Author: Takeshi Nishimatsu
70
- Project homepage: <a
71
- href="http://isi-rb.rubyforge.org/">isi-rb.rubyforge.org/</a> Usage:
72
- &#8220;PHYSICAL REVIEW LETTERS&#8221;.to_journal_title_abbreviation
73
- Reference: <a
74
- href="http://www.library.ubc.ca/scieng/coden.html">www.library.ubc.ca/scieng/coden.html</a>
75
- by Kevin Lindstrom
76
- </p>
77
-
78
- </div>
79
-
80
- </div>
81
-
82
-
83
- </div>
84
-
85
- <!-- if includes -->
86
-
87
- <div id="section">
88
-
89
-
90
-
91
-
92
- <!-- if method_list -->
93
-
94
-
95
-
96
-
97
- </div>
98
-
99
- <div id="validator-badges">
100
- <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
101
- </div>
102
-
103
- </body>
104
- </html>
@@ -1,29 +0,0 @@
1
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4
- <!--
5
-
6
- Classes [isi]
7
-
8
- -->
9
- <head>
10
- <title>Classes [isi]</title>
11
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
12
- <link rel="stylesheet" href="rdoc-style.css" type="text/css" />
13
- <base target="docwin" />
14
- </head>
15
- <body>
16
- <div class="index">
17
- <h1 class="section-bar">Classes</h1>
18
- <div id="index-entries">
19
-
20
- <a href="classes/ARGF.html">ARGF</a><br />
21
-
22
- <a href="classes/ISI_record.html">ISI_record</a><br />
23
-
24
- <a href="classes/String.html">String</a><br />
25
-
26
- </div>
27
- </div>
28
- </body>
29
- </html>
@@ -1,29 +0,0 @@
1
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4
- <!--
5
-
6
- Files [isi]
7
-
8
- -->
9
- <head>
10
- <title>Files [isi]</title>
11
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
12
- <link rel="stylesheet" href="rdoc-style.css" type="text/css" />
13
- <base target="docwin" />
14
- </head>
15
- <body>
16
- <div class="index">
17
- <h1 class="section-bar">Files</h1>
18
- <div id="index-entries">
19
-
20
- <a href="files/README.html">README</a><br />
21
-
22
- <a href="files/lib/isi_rb.html">lib/isi.rb</a><br />
23
-
24
- <a href="files/lib/journaltitleabbreviation_rb.html">lib/journaltitleabbreviation.rb</a><br />
25
-
26
- </div>
27
- </div>
28
- </body>
29
- </html>
@@ -1,33 +0,0 @@
1
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4
- <!--
5
-
6
- Methods [isi]
7
-
8
- -->
9
- <head>
10
- <title>Methods [isi]</title>
11
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
12
- <link rel="stylesheet" href="rdoc-style.css" type="text/css" />
13
- <base target="docwin" />
14
- </head>
15
- <body>
16
- <div class="index">
17
- <h1 class="section-bar">Methods</h1>
18
- <div id="index-entries">
19
-
20
- <a href="classes/ISI_record.html#M000002">new (ISI_record)</a><br />
21
-
22
- <a href="classes/ARGF.html#M000005">read_an_ISI_record (ARGF)</a><br />
23
-
24
- <a href="classes/ISI_record.html#M000004">to_bibtex (ISI_record)</a><br />
25
-
26
- <a href="classes/String.html#M000001">to_journal_title_abbreviation (String)</a><br />
27
-
28
- <a href="classes/ISI_record.html#M000003">to_tohoku_DB (ISI_record)</a><br />
29
-
30
- </div>
31
- </div>
32
- </body>
33
- </html>