surpass 0.0.4 → 0.0.6
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.
- data/History.txt +4 -0
- data/README.txt +3 -20
- data/Rakefile +2 -13
- data/bin/surpass +8 -0
- data/examples/big-16mb.rb +25 -0
- data/examples/big-random-strings.rb +28 -0
- data/examples/blanks.rb +34 -0
- data/examples/blanks.xls +0 -0
- data/examples/col_width.rb +16 -0
- data/examples/col_width.xls +0 -0
- data/examples/dates.rb +31 -0
- data/examples/dates.xls +0 -0
- data/examples/format.rb +23 -0
- data/examples/format.xls +0 -0
- data/examples/hello-world.rb +9 -0
- data/examples/hello-world.xls +0 -0
- data/examples/image.rb +10 -0
- data/examples/image.xls +0 -0
- data/examples/merged.rb +36 -0
- data/examples/merged.xls +0 -0
- data/examples/merged0.rb +27 -0
- data/examples/merged0.xls +0 -0
- data/examples/merged1.rb +99 -0
- data/examples/merged1.xls +0 -0
- data/examples/num_formats.rb +55 -0
- data/examples/num_formats.xls +0 -0
- data/examples/numbers.rb +24 -0
- data/examples/numbers.xls +0 -0
- data/examples/outline.rb +110 -0
- data/examples/outline.xls +0 -0
- data/examples/panes.rb +48 -0
- data/examples/panes.xls +0 -0
- data/examples/protection.rb +132 -0
- data/examples/protection.xls +0 -0
- data/examples/python.bmp +0 -0
- data/examples/row_styles.rb +16 -0
- data/examples/row_styles.xls +0 -0
- data/examples/row_styles_empty.rb +15 -0
- data/examples/row_styles_empty.xls +0 -0
- data/examples/set_cell_and_range_style.rb +12 -0
- data/examples/set_cell_and_range_style.xls +0 -0
- data/examples/wrapped-text.rb +13 -0
- data/examples/wrapped-text.xls +0 -0
- data/examples/write_arrays.rb +22 -0
- data/examples/write_arrays.xls +0 -0
- data/examples/ws_props.rb +80 -0
- data/lib/surpass/ExcelFormula.g +366 -0
- data/lib/surpass/ExcelFormula.tokens +30 -0
- data/lib/surpass/ExcelFormulaLexer.rb +922 -0
- data/lib/surpass/ExcelFormulaParser.rb +602 -0
- data/lib/{biff_record.rb → surpass/biff_record.rb} +0 -0
- data/lib/{bitmap.rb → surpass/bitmap.rb} +0 -0
- data/lib/{cell.rb → surpass/cell.rb} +2 -34
- data/lib/{chart.rb → surpass/chart.rb} +0 -0
- data/lib/{column.rb → surpass/column.rb} +0 -0
- data/lib/{document.rb → surpass/document.rb} +0 -0
- data/lib/surpass/excel_formula.rb +23 -0
- data/lib/{excel_magic.rb → surpass/excel_magic.rb} +0 -0
- data/lib/{formatting.rb → surpass/formatting.rb} +93 -53
- data/lib/{row.rb → surpass/row.rb} +0 -0
- data/lib/{style.rb → surpass/style.rb} +2 -1
- data/lib/surpass/tokens.txt +2 -0
- data/lib/{utilities.rb → surpass/utilities.rb} +0 -0
- data/lib/{workbook.rb → surpass/workbook.rb} +0 -0
- data/lib/{worksheet.rb → surpass/worksheet.rb} +15 -6
- data/lib/surpass.rb +1 -1
- data/spec/biff_record_spec.rb +268 -0
- data/spec/cell_spec.rb +56 -0
- data/spec/data/random-strings.txt +10000 -0
- data/spec/document_spec.rb +168 -0
- data/spec/excel_formula_spec.rb +27 -0
- data/spec/formatting_spec.rb +53 -0
- data/spec/output/cells-rk.xls +0 -0
- data/spec/output/cells.xls +0 -0
- data/spec/output/mini.xls +0 -0
- data/spec/reference/P-0508-0000507647-3280-5298.xls +0 -0
- data/spec/reference/all-cell-styles.bin +0 -0
- data/spec/reference/all-number-formats.bin +0 -0
- data/spec/reference/all-styles.bin +0 -0
- data/spec/reference/mini.xls +0 -0
- data/spec/row_spec.rb +19 -0
- data/spec/spec_helper.rb +10 -0
- data/spec/style_spec.rb +89 -0
- data/spec/surpass_spec.rb +7 -0
- data/spec/utilities_spec.rb +57 -0
- data/spec/workbook_spec.rb +48 -0
- data/spec/worksheet_spec.rb +0 -0
- data/stats/cloc.txt +8 -0
- data/stats/rcov.txt +0 -0
- data/stats/specdoc.txt +158 -0
- data/surpass.gemspec +40 -0
- data/tasks/setup.rb +1 -1
- data/tasks/zentest.rake +36 -0
- data/webby/README.txt +6 -0
- data/webby/Sitefile +43 -0
- data/webby/content/css/pygments.txt +6 -0
- data/webby/content/css/style.css +279 -0
- data/webby/content/examples/autoformat.png +0 -0
- data/webby/content/examples/autoformat.rb +32 -0
- data/webby/content/examples/autoformat.xls +0 -0
- data/webby/content/examples/borders.png +0 -0
- data/webby/content/examples/borders.rb +15 -0
- data/webby/content/examples/borders.xls +0 -0
- data/webby/content/examples/colours.png +0 -0
- data/webby/content/examples/colours.rb +23 -0
- data/webby/content/examples/colours.xls +0 -0
- data/webby/content/examples/data.png +0 -0
- data/webby/content/examples/data.rb +11 -0
- data/webby/content/examples/data.xls +0 -0
- data/webby/content/examples/formatting.png +0 -0
- data/webby/content/examples/formatting.rb +78 -0
- data/webby/content/examples/formatting.xls +0 -0
- data/webby/content/examples/hello-world.png +0 -0
- data/webby/content/examples/hello-world.py +8 -0
- data/webby/content/examples/hello-world.rb +9 -0
- data/webby/content/examples/hello-world.xls +0 -0
- data/webby/content/examples/number-format-string.png +0 -0
- data/webby/content/examples/number-format-string.rb +14 -0
- data/webby/content/examples/number-format-string.xls +0 -0
- data/webby/content/examples/patterns.png +0 -0
- data/webby/content/examples/patterns.rb +26 -0
- data/webby/content/examples/patterns.xls +0 -0
- data/webby/content/examples/show-greens.sh +1 -0
- data/webby/content/examples/surpass-info.sh +1 -0
- data/webby/content/img/Thumbs.db +0 -0
- data/webby/content/img/bg_menu.gif +0 -0
- data/webby/content/img/bg_t.gif +0 -0
- data/webby/content/img/bullet.gif +0 -0
- data/webby/content/img/logo.png +0 -0
- data/webby/content/img/logo_.jpg +0 -0
- data/webby/content/img/top_bg.gif +0 -0
- data/webby/content/img/top_bg_.gif +0 -0
- data/webby/content/index.txt +16 -0
- data/webby/content/installation/index.txt +24 -0
- data/webby/content/source/ExcelFormulaLexer.txt +7 -0
- data/webby/content/source/ExcelFormulaParser.txt +7 -0
- data/webby/content/source/biff_record.txt +7 -0
- data/webby/content/source/bitmap.txt +7 -0
- data/webby/content/source/cell.txt +7 -0
- data/webby/content/source/chart.txt +7 -0
- data/webby/content/source/column.txt +7 -0
- data/webby/content/source/document.txt +7 -0
- data/webby/content/source/excel_formula.txt +7 -0
- data/webby/content/source/excel_magic.txt +7 -0
- data/webby/content/source/formatting.txt +7 -0
- data/webby/content/source/row.txt +7 -0
- data/webby/content/source/style.txt +7 -0
- data/webby/content/source/utilities.txt +7 -0
- data/webby/content/source/workbook.txt +7 -0
- data/webby/content/source/worksheet.txt +7 -0
- data/webby/content/surpass-manual.erb +198 -0
- data/webby/layouts/book.txt +29 -0
- data/webby/layouts/default.txt +27 -0
- data/webby/layouts/two_column.txt +25 -0
- data/webby/layouts/web.txt +66 -0
- data/webby/output/.cairn +0 -0
- data/webby/output/css/blueprint/ie.css +26 -0
- data/webby/output/css/blueprint/plugins/buttons/icons/cross.png +0 -0
- data/webby/output/css/blueprint/plugins/buttons/icons/key.png +0 -0
- data/webby/output/css/blueprint/plugins/buttons/icons/tick.png +0 -0
- data/webby/output/css/blueprint/plugins/buttons/readme.txt +32 -0
- data/webby/output/css/blueprint/plugins/buttons/screen.css +97 -0
- data/webby/output/css/blueprint/plugins/fancy-type/readme.txt +14 -0
- data/webby/output/css/blueprint/plugins/fancy-type/screen.css +71 -0
- data/webby/output/css/blueprint/plugins/link-icons/icons/doc.png +0 -0
- data/webby/output/css/blueprint/plugins/link-icons/icons/email.png +0 -0
- data/webby/output/css/blueprint/plugins/link-icons/icons/external.png +0 -0
- data/webby/output/css/blueprint/plugins/link-icons/icons/feed.png +0 -0
- data/webby/output/css/blueprint/plugins/link-icons/icons/im.png +0 -0
- data/webby/output/css/blueprint/plugins/link-icons/icons/pdf.png +0 -0
- data/webby/output/css/blueprint/plugins/link-icons/icons/visited.png +0 -0
- data/webby/output/css/blueprint/plugins/link-icons/icons/xls.png +0 -0
- data/webby/output/css/blueprint/plugins/link-icons/readme.txt +18 -0
- data/webby/output/css/blueprint/plugins/link-icons/screen.css +40 -0
- data/webby/output/css/blueprint/plugins/rtl/readme.txt +10 -0
- data/webby/output/css/blueprint/plugins/rtl/screen.css +109 -0
- data/webby/output/css/blueprint/print.css +30 -0
- data/webby/output/css/blueprint/screen.css +251 -0
- data/webby/output/css/blueprint/src/forms.css +49 -0
- data/webby/output/css/blueprint/src/grid.css +212 -0
- data/webby/output/css/blueprint/src/grid.png +0 -0
- data/webby/output/css/blueprint/src/ie.css +59 -0
- data/webby/output/css/blueprint/src/print.css +85 -0
- data/webby/output/css/blueprint/src/reset.css +38 -0
- data/webby/output/css/blueprint/src/typography.css +105 -0
- data/webby/output/css/pygments.css +59 -0
- data/webby/output/css/site.css +62 -0
- data/webby/output/css/style.css +279 -0
- data/webby/output/examples/autoformat.png +0 -0
- data/webby/output/examples/autoformat.rb +32 -0
- data/webby/output/examples/autoformat.xls +0 -0
- data/webby/output/examples/borders.png +0 -0
- data/webby/output/examples/borders.rb +15 -0
- data/webby/output/examples/borders.xls +0 -0
- data/webby/output/examples/colours.png +0 -0
- data/webby/output/examples/colours.rb +23 -0
- data/webby/output/examples/colours.xls +0 -0
- data/webby/output/examples/data.png +0 -0
- data/webby/output/examples/data.rb +11 -0
- data/webby/output/examples/data.xls +0 -0
- data/webby/output/examples/formatting.png +0 -0
- data/webby/output/examples/formatting.rb +78 -0
- data/webby/output/examples/formatting.xls +0 -0
- data/webby/output/examples/hello-world.png +0 -0
- data/webby/output/examples/hello-world.py +8 -0
- data/webby/output/examples/hello-world.rb +9 -0
- data/webby/output/examples/hello-world.xls +0 -0
- data/webby/output/examples/number-format-string.png +0 -0
- data/webby/output/examples/number-format-string.rb +14 -0
- data/webby/output/examples/number-format-string.xls +0 -0
- data/webby/output/examples/patterns.png +0 -0
- data/webby/output/examples/patterns.rb +26 -0
- data/webby/output/examples/patterns.xls +0 -0
- data/webby/output/examples/show-greens.sh +1 -0
- data/webby/output/examples/surpass-info.sh +1 -0
- data/webby/output/img/Thumbs.db +0 -0
- data/webby/output/img/bg_menu.gif +0 -0
- data/webby/output/img/bg_t.gif +0 -0
- data/webby/output/img/bullet.gif +0 -0
- data/webby/output/img/logo.png +0 -0
- data/webby/output/img/logo_.jpg +0 -0
- data/webby/output/img/top_bg.gif +0 -0
- data/webby/output/img/top_bg_.gif +0 -0
- data/webby/output/index.html +138 -0
- data/webby/output/installation/index.html +64 -0
- data/webby/output/installation/installation.html +1 -0
- data/webby/output/installation.html +1 -0
- data/webby/output/source/ExcelFormulaLexer.html +981 -0
- data/webby/output/source/ExcelFormulaParser.html +661 -0
- data/webby/output/source/biff_record.html +462 -0
- data/webby/output/source/bitmap.html +277 -0
- data/webby/output/source/cell.html +241 -0
- data/webby/output/source/chart.html +64 -0
- data/webby/output/source/column.html +99 -0
- data/webby/output/source/document.html +465 -0
- data/webby/output/source/excel_formula.html +82 -0
- data/webby/output/source/excel_magic.html +1072 -0
- data/webby/output/source/formatting.html +664 -0
- data/webby/output/source/row.html +169 -0
- data/webby/output/source/style.html +158 -0
- data/webby/output/source/surpass.html +110 -0
- data/webby/output/source/utilities.html +145 -0
- data/webby/output/source/workbook.html +265 -0
- data/webby/output/source/worksheet.html +331 -0
- data/webby/output/surpass-manual-0-0-5.pdf +0 -0
- data/webby/output/surpass-manual.aux +50 -0
- data/webby/output/surpass-manual.log +366 -0
- data/webby/output/surpass-manual.out +20 -0
- data/webby/output/surpass-manual.tex +582 -0
- data/webby/output/surpass-manual.toc +20 -0
- data/webby/rsync-exclude +7 -0
- data/webby/tasks/latex.rake +14 -0
- data/webby/tasks/screenshots.rb +58 -0
- data/webby/templates/article.erb +15 -0
- data/webby/templates/book.erb +16 -0
- data/webby/templates/page.erb +9 -0
- metadata +302 -24
- data/bin/surpass-info +0 -20
- data/lib/excel_formula.rb +0 -6
@@ -0,0 +1,366 @@
|
|
1
|
+
This is pdfTeX, Version 3.141592-1.40.3 (Web2C 7.5.6) (format=pdflatex 2009.4.7) 2 JUL 2009 20:07
|
2
|
+
entering extended mode
|
3
|
+
**surpass-manual.tex
|
4
|
+
(./surpass-manual.tex
|
5
|
+
LaTeX2e <2005/12/01>
|
6
|
+
Babel <v3.8h> and hyphenation patterns for english, usenglishmax, dumylang, noh
|
7
|
+
yphenation, arabic, basque, bulgarian, coptic, welsh, czech, slovak, german, ng
|
8
|
+
erman, danish, esperanto, spanish, catalan, galician, estonian, farsi, finnish,
|
9
|
+
french, greek, monogreek, ancientgreek, croatian, hungarian, interlingua, ibyc
|
10
|
+
us, indonesian, icelandic, italian, latin, mongolian, dutch, norsk, polish, por
|
11
|
+
tuguese, pinyin, romanian, russian, slovenian, uppersorbian, serbian, swedish,
|
12
|
+
turkish, ukenglish, ukrainian, loaded.
|
13
|
+
(/opt/local/share/texmf-dist/tex/latex/base/book.cls
|
14
|
+
Document Class: book 2005/09/16 v1.4f Standard LaTeX document class
|
15
|
+
(/opt/local/share/texmf-dist/tex/latex/base/bk10.clo
|
16
|
+
File: bk10.clo 2005/09/16 v1.4f Standard LaTeX file (size option)
|
17
|
+
)
|
18
|
+
\c@part=\count79
|
19
|
+
\c@chapter=\count80
|
20
|
+
\c@section=\count81
|
21
|
+
\c@subsection=\count82
|
22
|
+
\c@subsubsection=\count83
|
23
|
+
\c@paragraph=\count84
|
24
|
+
\c@subparagraph=\count85
|
25
|
+
\c@figure=\count86
|
26
|
+
\c@table=\count87
|
27
|
+
\abovecaptionskip=\skip41
|
28
|
+
\belowcaptionskip=\skip42
|
29
|
+
\bibindent=\dimen102
|
30
|
+
)
|
31
|
+
(/opt/local/share/texmf-dist/tex/latex/preprint/fullpage.sty
|
32
|
+
Package: fullpage 1999/02/23 1.1 (PWD)
|
33
|
+
\FP@margin=\skip43
|
34
|
+
)
|
35
|
+
(/opt/local/share/texmf-dist/tex/latex/fancyvrb/fancyvrb.sty
|
36
|
+
Package: fancyvrb 1998/07/17
|
37
|
+
|
38
|
+
Style option: `fancyvrb' v2.6, with DG/SPQR fixes <1998/07/17> (tvz)
|
39
|
+
(/opt/local/share/texmf-dist/tex/latex/graphics/keyval.sty
|
40
|
+
Package: keyval 1999/03/16 v1.13 key=value parser (DPC)
|
41
|
+
\KV@toks@=\toks14
|
42
|
+
)
|
43
|
+
\FV@CodeLineNo=\count88
|
44
|
+
\FV@InFile=\read1
|
45
|
+
\FV@TabBox=\box26
|
46
|
+
\c@FancyVerbLine=\count89
|
47
|
+
\FV@StepNumber=\count90
|
48
|
+
\FV@OutFile=\write3
|
49
|
+
|
50
|
+
No file fancyvrb.cfg.
|
51
|
+
) (/opt/local/share/texmf-dist/tex/latex/graphics/color.sty
|
52
|
+
Package: color 2005/11/14 v1.0j Standard LaTeX Color (DPC)
|
53
|
+
|
54
|
+
(/opt/local/share/texmf/tex/latex/config/color.cfg
|
55
|
+
File: color.cfg 2007/01/18 v1.5 color configuration of teTeX/TeXLive
|
56
|
+
)
|
57
|
+
Package color Info: Driver file: pdftex.def on input line 130.
|
58
|
+
|
59
|
+
(/opt/local/share/texmf-dist/tex/latex/pdftex-def/pdftex.def
|
60
|
+
File: pdftex.def 2007/01/08 v0.04d Graphics/color for pdfTeX
|
61
|
+
\Gread@gobject=\count91
|
62
|
+
))
|
63
|
+
(/opt/local/share/texmf-dist/tex/latex/base/inputenc.sty
|
64
|
+
Package: inputenc 2006/05/05 v1.1b Input encoding file
|
65
|
+
\inpenc@prehook=\toks15
|
66
|
+
\inpenc@posthook=\toks16
|
67
|
+
|
68
|
+
(/opt/local/share/texmf-dist/tex/latex/base/ascii.def
|
69
|
+
File: ascii.def 2006/05/05 v1.1b Input encoding file
|
70
|
+
))
|
71
|
+
(/opt/local/share/texmf-dist/tex/latex/hyperref/hyperref.sty
|
72
|
+
Package: hyperref 2007/02/07 v6.75r Hypertext links for LaTeX
|
73
|
+
\@linkdim=\dimen103
|
74
|
+
\Hy@linkcounter=\count92
|
75
|
+
\Hy@pagecounter=\count93
|
76
|
+
|
77
|
+
(/opt/local/share/texmf-dist/tex/latex/hyperref/pd1enc.def
|
78
|
+
File: pd1enc.def 2007/02/07 v6.75r Hyperref: PDFDocEncoding definition (HO)
|
79
|
+
)
|
80
|
+
(/opt/local/share/texmf/tex/latex/config/hyperref.cfg
|
81
|
+
File: hyperref.cfg 2002/06/06 v1.2 hyperref configuration of TeXLive
|
82
|
+
)
|
83
|
+
(/opt/local/share/texmf-dist/tex/latex/oberdiek/kvoptions.sty
|
84
|
+
Package: kvoptions 2006/08/22 v2.4 Connects package keyval with LaTeX options (
|
85
|
+
HO)
|
86
|
+
)
|
87
|
+
Package hyperref Info: Hyper figures OFF on input line 2288.
|
88
|
+
Package hyperref Info: Link nesting OFF on input line 2293.
|
89
|
+
Package hyperref Info: Hyper index ON on input line 2296.
|
90
|
+
Package hyperref Info: Plain pages OFF on input line 2303.
|
91
|
+
Package hyperref Info: Backreferencing OFF on input line 2308.
|
92
|
+
|
93
|
+
Implicit mode ON; LaTeX internals redefined
|
94
|
+
Package hyperref Info: Bookmarks ON on input line 2444.
|
95
|
+
(/opt/local/share/texmf-dist/tex/latex/ltxmisc/url.sty
|
96
|
+
\Urlmuskip=\muskip10
|
97
|
+
Package: url 2005/06/27 ver 3.2 Verb mode for urls, etc.
|
98
|
+
)
|
99
|
+
LaTeX Info: Redefining \url on input line 2599.
|
100
|
+
\Fld@menulength=\count94
|
101
|
+
\Field@Width=\dimen104
|
102
|
+
\Fld@charsize=\dimen105
|
103
|
+
\Choice@toks=\toks17
|
104
|
+
\Field@toks=\toks18
|
105
|
+
Package hyperref Info: Hyper figures OFF on input line 3102.
|
106
|
+
Package hyperref Info: Link nesting OFF on input line 3107.
|
107
|
+
Package hyperref Info: Hyper index ON on input line 3110.
|
108
|
+
Package hyperref Info: backreferencing OFF on input line 3117.
|
109
|
+
Package hyperref Info: Link coloring OFF on input line 3122.
|
110
|
+
\Hy@abspage=\count95
|
111
|
+
\c@Item=\count96
|
112
|
+
\c@Hfootnote=\count97
|
113
|
+
)
|
114
|
+
*hyperref using default driver hpdftex*
|
115
|
+
(/opt/local/share/texmf-dist/tex/latex/hyperref/hpdftex.def
|
116
|
+
File: hpdftex.def 2007/02/07 v6.75r Hyperref driver for pdfTeX
|
117
|
+
\Fld@listcount=\count98
|
118
|
+
)
|
119
|
+
(/opt/local/share/texmf-dist/tex/latex/graphics/graphicx.sty
|
120
|
+
Package: graphicx 1999/02/16 v1.0f Enhanced LaTeX Graphics (DPC,SPQR)
|
121
|
+
|
122
|
+
(/opt/local/share/texmf-dist/tex/latex/graphics/graphics.sty
|
123
|
+
Package: graphics 2006/02/20 v1.0o Standard LaTeX Graphics (DPC,SPQR)
|
124
|
+
|
125
|
+
(/opt/local/share/texmf-dist/tex/latex/graphics/trig.sty
|
126
|
+
Package: trig 1999/03/16 v1.09 sin cos tan (DPC)
|
127
|
+
)
|
128
|
+
(/opt/local/share/texmf/tex/latex/config/graphics.cfg
|
129
|
+
File: graphics.cfg 2007/01/18 v1.5 graphics configuration of teTeX/TeXLive
|
130
|
+
)
|
131
|
+
Package graphics Info: Driver file: pdftex.def on input line 90.
|
132
|
+
)
|
133
|
+
\Gin@req@height=\dimen106
|
134
|
+
\Gin@req@width=\dimen107
|
135
|
+
)
|
136
|
+
(/opt/local/share/texmf-dist/tex/latex/wrapfig/wrapfig.sty
|
137
|
+
\wrapoverhang=\dimen108
|
138
|
+
\WF@size=\dimen109
|
139
|
+
\c@WF@wrappedlines=\count99
|
140
|
+
\WF@box=\box27
|
141
|
+
\WF@everypar=\toks19
|
142
|
+
Package: wrapfig 2003/01/31 v 3.6
|
143
|
+
)
|
144
|
+
(/opt/local/share/texmf-dist/tex/latex/tools/multicol.sty
|
145
|
+
Package: multicol 2006/05/18 v1.6g multicolumn formatting (FMi)
|
146
|
+
\c@tracingmulticols=\count100
|
147
|
+
\mult@box=\box28
|
148
|
+
\multicol@leftmargin=\dimen110
|
149
|
+
\c@unbalance=\count101
|
150
|
+
\c@collectmore=\count102
|
151
|
+
\doublecol@number=\count103
|
152
|
+
\multicoltolerance=\count104
|
153
|
+
\multicolpretolerance=\count105
|
154
|
+
\full@width=\dimen111
|
155
|
+
\page@free=\dimen112
|
156
|
+
\premulticols=\dimen113
|
157
|
+
\postmulticols=\dimen114
|
158
|
+
\multicolsep=\skip44
|
159
|
+
\multicolbaselineskip=\skip45
|
160
|
+
\partial@page=\box29
|
161
|
+
\last@line=\box30
|
162
|
+
\mult@rightbox=\box31
|
163
|
+
\mult@grightbox=\box32
|
164
|
+
\mult@gfirstbox=\box33
|
165
|
+
\mult@firstbox=\box34
|
166
|
+
\@tempa=\box35
|
167
|
+
\@tempa=\box36
|
168
|
+
\@tempa=\box37
|
169
|
+
\@tempa=\box38
|
170
|
+
\@tempa=\box39
|
171
|
+
\@tempa=\box40
|
172
|
+
\@tempa=\box41
|
173
|
+
\@tempa=\box42
|
174
|
+
\@tempa=\box43
|
175
|
+
\@tempa=\box44
|
176
|
+
\@tempa=\box45
|
177
|
+
\@tempa=\box46
|
178
|
+
\@tempa=\box47
|
179
|
+
\@tempa=\box48
|
180
|
+
\@tempa=\box49
|
181
|
+
\@tempa=\box50
|
182
|
+
\@tempa=\box51
|
183
|
+
\c@columnbadness=\count106
|
184
|
+
\c@finalcolumnbadness=\count107
|
185
|
+
\last@try=\dimen115
|
186
|
+
\multicolovershoot=\dimen116
|
187
|
+
\multicolundershoot=\dimen117
|
188
|
+
\mult@nat@firstbox=\box52
|
189
|
+
\colbreak@box=\box53
|
190
|
+
)
|
191
|
+
(./surpass-manual.aux)
|
192
|
+
\openout1 = `surpass-manual.aux'.
|
193
|
+
|
194
|
+
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 80.
|
195
|
+
LaTeX Font Info: ... okay on input line 80.
|
196
|
+
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 80.
|
197
|
+
LaTeX Font Info: ... okay on input line 80.
|
198
|
+
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 80.
|
199
|
+
LaTeX Font Info: ... okay on input line 80.
|
200
|
+
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 80.
|
201
|
+
LaTeX Font Info: ... okay on input line 80.
|
202
|
+
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 80.
|
203
|
+
LaTeX Font Info: ... okay on input line 80.
|
204
|
+
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 80.
|
205
|
+
LaTeX Font Info: ... okay on input line 80.
|
206
|
+
LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 80.
|
207
|
+
LaTeX Font Info: ... okay on input line 80.
|
208
|
+
|
209
|
+
(/opt/local/share/texmf-dist/tex/context/base/supp-pdf.tex
|
210
|
+
[Loading MPS to PDF converter (version 2006.09.02).]
|
211
|
+
\scratchcounter=\count108
|
212
|
+
\scratchdimen=\dimen118
|
213
|
+
\scratchbox=\box54
|
214
|
+
\nofMPsegments=\count109
|
215
|
+
\nofMParguments=\count110
|
216
|
+
\MPscratchCnt=\count111
|
217
|
+
\MPscratchDim=\dimen119
|
218
|
+
\MPnumerator=\count112
|
219
|
+
\everyMPtoPDFconversion=\toks20
|
220
|
+
)
|
221
|
+
Package hyperref Info: Link coloring OFF on input line 80.
|
222
|
+
(/opt/local/share/texmf-dist/tex/latex/hyperref/nameref.sty
|
223
|
+
Package: nameref 2006/12/27 v2.28 Cross-referencing by name of section
|
224
|
+
|
225
|
+
(/opt/local/share/texmf-dist/tex/latex/oberdiek/refcount.sty
|
226
|
+
Package: refcount 2006/02/20 v3.0 Data extraction from references (HO)
|
227
|
+
)
|
228
|
+
\c@section@level=\count113
|
229
|
+
)
|
230
|
+
LaTeX Info: Redefining \ref on input line 80.
|
231
|
+
LaTeX Info: Redefining \pageref on input line 80.
|
232
|
+
|
233
|
+
(./surpass-manual.out) (./surpass-manual.out)
|
234
|
+
\@outlinefile=\write4
|
235
|
+
\openout4 = `surpass-manual.out'.
|
236
|
+
|
237
|
+
LaTeX Font Info: External font `cmex10' loaded for size
|
238
|
+
(Font) <12> on input line 83.
|
239
|
+
LaTeX Font Info: External font `cmex10' loaded for size
|
240
|
+
(Font) <8> on input line 83.
|
241
|
+
LaTeX Font Info: External font `cmex10' loaded for size
|
242
|
+
(Font) <6> on input line 83.
|
243
|
+
[1
|
244
|
+
|
245
|
+
|
246
|
+
{/opt/local/share/texmf/fonts/map/pdftex/updmap/pdftex.map}] [2
|
247
|
+
|
248
|
+
] (./surpass-manual.toc
|
249
|
+
LaTeX Font Info: External font `cmex10' loaded for size
|
250
|
+
(Font) <7> on input line 2.
|
251
|
+
LaTeX Font Info: External font `cmex10' loaded for size
|
252
|
+
(Font) <5> on input line 2.
|
253
|
+
)
|
254
|
+
\tf@toc=\write5
|
255
|
+
\openout5 = `surpass-manual.toc'.
|
256
|
+
|
257
|
+
[3] [4
|
258
|
+
|
259
|
+
]
|
260
|
+
Chapter 1.
|
261
|
+
<examples/hello-world.png, id=131, 843.15pt x 572.1375pt>
|
262
|
+
File: examples/hello-world.png Graphic file (type png)
|
263
|
+
|
264
|
+
<use examples/hello-world.png> [5] [6 <./examples/hello-world.png (PNG copy)>]
|
265
|
+
Chapter 2.
|
266
|
+
LaTeX Font Info: Font shape `OT1/cmtt/bx/n' in size <10> not available
|
267
|
+
(Font) Font shape `OT1/cmtt/m/n' tried instead on input line 152.
|
268
|
+
[7
|
269
|
+
|
270
|
+
] [8] <examples/autoformat.png, id=151, 843.15pt x 572.1375pt>
|
271
|
+
File: examples/autoformat.png Graphic file (type png)
|
272
|
+
|
273
|
+
<use examples/autoformat.png> [9 <./examples/autoformat.png (PNG copy)>]
|
274
|
+
[10
|
275
|
+
|
276
|
+
]
|
277
|
+
Chapter 3.
|
278
|
+
LaTeX Font Info: Try loading font information for OMS+cmr on input line 314.
|
279
|
+
|
280
|
+
(/opt/local/share/texmf-dist/tex/latex/base/omscmr.fd
|
281
|
+
File: omscmr.fd 1999/05/25 v2.5h Standard LaTeX font definitions
|
282
|
+
)
|
283
|
+
LaTeX Font Info: Font shape `OMS/cmr/m/n' in size <10> not available
|
284
|
+
(Font) Font shape `OMS/cmsy/m/n' tried instead on input line 314.
|
285
|
+
[11] [12]
|
286
|
+
<examples/number-format-string.png, id=169, 843.15pt x 572.1375pt>
|
287
|
+
File: examples/number-format-string.png Graphic file (type png)
|
288
|
+
|
289
|
+
<use examples/number-format-string.png>
|
290
|
+
Overfull \hbox (17.27618pt too wide) in paragraph at lines 350--351
|
291
|
+
[][]
|
292
|
+
[]
|
293
|
+
|
294
|
+
[13 <./examples/number-format-string.png (PNG copy)>]
|
295
|
+
<examples/colours.png, id=175, 843.15pt x 572.1375pt>
|
296
|
+
File: examples/colours.png Graphic file (type png)
|
297
|
+
|
298
|
+
<use examples/colours.png>
|
299
|
+
Overfull \hbox (17.27618pt too wide) in paragraph at lines 417--418
|
300
|
+
[][]
|
301
|
+
[]
|
302
|
+
|
303
|
+
<examples/borders.png, id=176, 843.15pt x 572.1375pt>
|
304
|
+
File: examples/borders.png Graphic file (type png)
|
305
|
+
|
306
|
+
<use examples/borders.png>
|
307
|
+
Overfull \hbox (2.27618pt too wide) in paragraph at lines 438--439
|
308
|
+
[]
|
309
|
+
[]
|
310
|
+
|
311
|
+
|
312
|
+
Underfull \vbox (badness 1178) has occurred while \output is active []
|
313
|
+
|
314
|
+
[14 <./examples/colours.png (PNG copy)>]
|
315
|
+
<examples/patterns.png, id=181, 843.15pt x 572.1375pt>
|
316
|
+
File: examples/patterns.png Graphic file (type png)
|
317
|
+
|
318
|
+
<use examples/patterns.png>
|
319
|
+
Overfull \hbox (2.27618pt too wide) in paragraph at lines 464--465
|
320
|
+
[]
|
321
|
+
[]
|
322
|
+
|
323
|
+
|
324
|
+
Underfull \vbox (badness 10000) has occurred while \output is active []
|
325
|
+
|
326
|
+
[15 <./examples/borders.png (PNG copy)>] [16 <./examples/patterns.png (PNG cop
|
327
|
+
y)>]
|
328
|
+
<examples/formatting.png, id=190, 843.15pt x 572.1375pt>
|
329
|
+
File: examples/formatting.png Graphic file (type png)
|
330
|
+
|
331
|
+
<use examples/formatting.png>
|
332
|
+
Overfull \hbox (17.27618pt too wide) in paragraph at lines 551--552
|
333
|
+
[][]
|
334
|
+
[]
|
335
|
+
|
336
|
+
|
337
|
+
Underfull \vbox (badness 10000) has occurred while \output is active []
|
338
|
+
|
339
|
+
[17]
|
340
|
+
[18 <./examples/formatting.png (PNG copy)>]
|
341
|
+
Chapter 4.
|
342
|
+
[19
|
343
|
+
|
344
|
+
] (./surpass-manual.aux) )
|
345
|
+
Here is how much of TeX's memory you used:
|
346
|
+
3562 strings out of 94073
|
347
|
+
50299 string characters out of 1164798
|
348
|
+
109534 words of memory out of 1500000
|
349
|
+
6782 multiletter control sequences out of 10000+50000
|
350
|
+
9443 words of font info for 34 fonts, out of 1200000 for 2000
|
351
|
+
645 hyphenation exceptions out of 8191
|
352
|
+
25i,6n,36p,881b,531s stack positions out of 5000i,500n,6000p,200000b,5000s
|
353
|
+
</opt/local/share/texmf-dist/fonts/type1/bluesky/cm/c
|
354
|
+
mbx10.pfb></opt/local/share/texmf-dist/fonts/type1/bluesky/cm/cmbx12.pfb></opt/
|
355
|
+
local/share/texmf-dist/fonts/type1/bluesky/cm/cmitt10.pfb></opt/local/share/tex
|
356
|
+
mf-dist/fonts/type1/bluesky/cm/cmr10.pfb></opt/local/share/texmf-dist/fonts/typ
|
357
|
+
e1/bluesky/cm/cmr12.pfb></opt/local/share/texmf-dist/fonts/type1/bluesky/cm/cmr
|
358
|
+
17.pfb></opt/local/share/texmf-dist/fonts/type1/bluesky/cm/cmr7.pfb></opt/local
|
359
|
+
/share/texmf-dist/fonts/type1/bluesky/cm/cmsy10.pfb></opt/local/share/texmf-dis
|
360
|
+
t/fonts/type1/bluesky/cm/cmtt10.pfb>
|
361
|
+
Output written on surpass-manual.pdf (19 pages, 735198 bytes).
|
362
|
+
PDF statistics:
|
363
|
+
245 PDF objects out of 1000 (max. 8388607)
|
364
|
+
41 named destinations out of 1000 (max. 131072)
|
365
|
+
212 words of extra memory for PDF output out of 10000 (max. 10000000)
|
366
|
+
|
@@ -0,0 +1,20 @@
|
|
1
|
+
\BOOKMARK [0][-]{chapter.1}{Installation and Hello World}{}
|
2
|
+
\BOOKMARK [1][-]{section.1.1}{Dependencies}{chapter.1}
|
3
|
+
\BOOKMARK [1][-]{section.1.2}{Gem Installation}{chapter.1}
|
4
|
+
\BOOKMARK [1][-]{section.1.3}{Source Installation}{chapter.1}
|
5
|
+
\BOOKMARK [1][-]{section.1.4}{Hello World}{chapter.1}
|
6
|
+
\BOOKMARK [2][-]{subsection.1.4.1}{Surpass}{section.1.4}
|
7
|
+
\BOOKMARK [2][-]{subsection.1.4.2}{Result}{section.1.4}
|
8
|
+
\BOOKMARK [0][-]{chapter.2}{Writing Data}{}
|
9
|
+
\BOOKMARK [1][-]{section.2.1}{write}{chapter.2}
|
10
|
+
\BOOKMARK [1][-]{section.2.2}{Writing Arrays of Data}{chapter.2}
|
11
|
+
\BOOKMARK [1][-]{section.2.3}{Autoformatting}{chapter.2}
|
12
|
+
\BOOKMARK [0][-]{chapter.3}{Formatting}{}
|
13
|
+
\BOOKMARK [1][-]{section.3.1}{Reference}{chapter.3}
|
14
|
+
\BOOKMARK [1][-]{section.3.2}{StyleFormat Class}{chapter.3}
|
15
|
+
\BOOKMARK [1][-]{section.3.3}{Number Format Strings}{chapter.3}
|
16
|
+
\BOOKMARK [2][-]{subsection.3.3.1}{Specifying Colours}{section.3.3}
|
17
|
+
\BOOKMARK [2][-]{subsection.3.3.2}{Border Formats}{section.3.3}
|
18
|
+
\BOOKMARK [2][-]{subsection.3.3.3}{Fill Patterns}{section.3.3}
|
19
|
+
\BOOKMARK [2][-]{subsection.3.3.4}{Surpass}{section.3.3}
|
20
|
+
\BOOKMARK [0][-]{chapter.4}{Saving}{}
|