Skip to content
Snippets Groups Projects
Commit 268a2aa9 authored by Michael Jastram's avatar Michael Jastram
Browse files

Initial import of Rodin Handbook Project.

git-svn-id: svn://svn.code.sf.net/p/rodin-b-sharp/svn/trunk/Handbook@11749 1434b563-b632-4741-aa49-43a3a8374d2e
parent 0bbba644
No related branches found
No related tags found
No related merge requests found
Showing
with 2308 additions and 0 deletions
//
// This code fixes up the images so that MSIE doesn't truncate images
// within tables. It also adjusts the line height so that it's prettier.
//
var images = document.getElementsByTagName('img')
var adjusted = new Array();
for ( var i = 0; i < images.length; i++ )
{
image = images[i];
if ( parseInt(image.style.marginBottom) < -8 )
{
if ( !image.height )
continue;
// Make sure that images in IE in tables don't get truncated
ieimgfix = document.createElement('img');
ieimgfix.src = 'iicons/blank.gif';
ieimgfix.style.height = image.style.height;
ieimgfix.style.width = '0px';
// Adjust line height to be prettier
adjust = document.createElement('span');
adjust.style.lineHeight = (parseInt(image.style.height) - 8) + 'px';
adjust.style.visibility = 'hidden';
adjust.nodeValue = '&8205;';
// Store away the nodes for use later
adjusted[image.parentNode] = new Array(image.parentNode, image,
ieimgfix, adjust);
}
}
// Insert the adjuster nodes
for ( var n in adjusted )
{
adjusted[n][0].insertBefore(adjusted[n][2], adjusted[n][1]);
adjusted[n][0].insertBefore(adjusted[n][3], adjusted[n][1]);
}
org.rodinp.handbook.feature/XHTML/Themes/rodin-theme-html/icons/index.gif

221 B

org.rodinp.handbook.feature/XHTML/Themes/rodin-theme-html/icons/loading.gif

2.31 KiB

org.rodinp.handbook.feature/XHTML/Themes/rodin-theme-html/icons/missing.gif

627 B

org.rodinp.handbook.feature/XHTML/Themes/rodin-theme-html/icons/modules.gif

268 B

org.rodinp.handbook.feature/XHTML/Themes/rodin-theme-html/icons/overlay.gif

171 B

var toolTipLib = {
xCord : 0,
yCord : 0,
obj : null,
tipElements : ['a','abbr','acronym'],
attachToolTipBehavior: function() {
if ( !document.getElementById ||
!document.createElement ||
!document.getElementsByTagName ) {
return;
}
var i,j;
addEvent(document,'mousemove',toolTipLib.updateXY,false);
if ( document.captureEvents ) {
document.captureEvents(Event.MOUSEMOVE);
}
for ( i=0;i<toolTipLib.tipElements.length;i++ ) {
var current = document.getElementsByTagName(toolTipLib.tipElements[i]);
for ( j=0;j<current.length;j++ ) {
addEvent(current[j],'mouseover',toolTipLib.tipOver,false);
addEvent(current[j],'mouseout',toolTipLib.tipOut,false);
current[j].setAttribute('tip',current[j].title);
current[j].removeAttribute('title');
}
}
},
updateXY : function(e) {
if ( document.captureEvents ) {
toolTipLib.xCord = e.pageX;
toolTipLib.yCord = e.pageY;
} else if ( window.event.clientX ) {
toolTipLib.xCord = window.event.clientX+document.documentElement.scrollLeft;
toolTipLib.yCord = window.event.clientY+document.documentElement.scrollTop;
}
},
tipOut: function(e) {
if ( window.tID ) {
clearTimeout(tID);
}
if ( window.opacityID ) {
clearTimeout(opacityID);
}
var l = getEventSrc(e);
var div = document.getElementById('toolTip');
if ( div ) {
div.parentNode.removeChild(div);
}
},
checkNode : function(obj) {
var trueObj = obj;
if ( trueObj.nodeName.toLowerCase() == 'a' || trueObj.nodeName.toLowerCase() == 'acronym' || trueObj.nodeName.toLowerCase() == 'abbr' ) {
return trueObj;
} else {
return trueObj.parentNode;
}
},
tipOver : function(e) {
toolTipLib.obj = getEventSrc(e);
tID = setTimeout("toolTipLib.tipShow()",500)
},
tipShow : function() {
var newDiv = document.createElement('div');
var scrX = Number(toolTipLib.xCord);
var scrY = Number(toolTipLib.yCord);
var tp = parseInt(scrY+15);
var lt = parseInt(scrX+10);
var anch = toolTipLib.checkNode(toolTipLib.obj);
var addy = '';
var access = '';
if ( anch.nodeName.toLowerCase() == 'a' ) {
addy = (anch.href.length > 25 ? anch.href.toString().substring(0,25)+"..." : anch.href);
var access = ( anch.accessKey ? ' <span>['+anch.accessKey+']</span> ' : '' );
} else {
addy = anch.firstChild.nodeValue;
}
newDiv.id = 'toolTip';
document.getElementsByTagName('body')[0].appendChild(newDiv);
newDiv.style.opacity = '.1';
newDiv.innerHTML = "<p>"+anch.getAttribute('tip')+"<em>"+access+addy+"</em></p>";
if ( parseInt(document.documentElement.clientWidth+document.documentElement.scrollLeft) < parseInt(newDiv.offsetWidth+lt) ) {
newDiv.style.left = parseInt(lt-(newDiv.offsetWidth+10))+'px';
} else {
newDiv.style.left = lt+'px';
}
if ( parseInt(document.documentElement.clientHeight+document.documentElement.scrollTop) < parseInt(newDiv.offsetHeight+tp) ) {
newDiv.style.top = parseInt(tp-(newDiv.offsetHeight+10))+'px';
} else {
newDiv.style.top = tp+'px';
}
toolTipLib.tipFade('toolTip',10);
},
tipFade: function(div,opac) {
var obj = document.getElementById(div);
var passed = parseInt(opac);
var newOpac = parseInt(passed+10);
if ( newOpac < 80 ) {
obj.style.opacity = '.'+newOpac;
obj.style.filter = "alpha(opacity:"+newOpac+")";
opacityID = setTimeout("toolTipLib.tipFade('toolTip','"+newOpac+"')",20);
}
else {
obj.style.opacity = '.80';
obj.style.filter = "alpha(opacity:80)";
}
}
};
addEvent(window,'load',toolTipLib.attachToolTipBehavior,false);
\ No newline at end of file
pre {
color: #004000;
width: 100%;
font-size: 90%;
background-color: #f0f0f0;
padding-top: 5px;
padding-bottom: 5px;
border: 1px #aaffaa solid;
font-family: Monaco, "Courier New", Courier, fixed;
padding-left: 4ex;
}
.breadcrumbs {
font-family: "Lucida Grande", Arial, Helvetica, sans-serif;
font-size: small;
font-style: italic;
}
h1, h2, h3, h4, h5, h6 {
font-family: "Lucida Grande", Arial, Helvetica, sans-serif;
}
.navigation { clear:both }
.navigation td { background-color: #ffffff;
color: #000000;
font-weight: bold;
font-family: avantgarde, sans-serif;
font-size: 110% }
.navigation img { border-width: 0px }
.navtitle { width: 100% }
.contents ul {
font-family: "Lucida Grande", Arial, Helvetica, sans-serif;
list-style-type: none;
font-weight: bold;
}
.contents ul ul {
font-size: small;
font-weight: normal;
}
hr {color: black}
.minitoc {
border-top: 1px solid black;
border-bottom: 1px solid block;
margin-bottom: 1em;
}
.minitoc li {
list-style-type: none;
}
/*************/
/* Footnotes */
/*************/
/*
a.footnote .footnotemark {
color: #ff8000;
}
a.footnote:hover .footnotemark {
cursor: help;
}
a.footnote .footnotetext {
display: none;
}
a.footnote:hover .footnotetext {
display: block;
position: absolute;
bottom: 0em;
left: 0em;
background-color: #F8F8CB;
color: #000;
text-align: left;
border: 7px #ff8000 solid;
padding: 10px;
margin: 0px;
z-index: 20;
}
*/
a.footnote {
text-decoration: none;
}
#footnotes {
padding: 1em;
border-top: 1px solid black;
font-size: smaller;
}
/*******/
/* TeX */
/*******/
/* Fonts */
.rm {
font-family: serif;
font-style: normal;
font-weight: normal;
}
.cal {
font-family: serif;
font-style: italic;
font-weight: normal;
}
.it {
font-family: serif;
font-style: italic;
font-weight: normal;
}
.sl {
font-family: serif;
font-style: oblique;
font-weight: normal;
}
.bf {
font-family: serif;
font-style: normal;
font-weight: bold;
}
.tt {
font-family: monospace;
font-style: normal;
font-weight: normal;
}
/* Text */
.underbar {text-decoration: underline}
/*********/
/* LaTeX */
/*********/
/* Alignment */
.center, .centering {text-align: center}
.flushleft, .raggedright {text-align: left}
.flushright, .raggedleft {text-align: right}
/* Arrays */
.tabular { border-collapse: collapse }
.tabular td, .tabular th {
vertical-align: top;
text-align: left;
padding-top: 0.3em;
padding-bottom: 0.3em;
padding-left: 0.6em;
padding-right: 0.6em;
empty-cells: show;
}
/* Boxes */
.fbox, .framebox {
border: 1px black solid;
padding-top: 1px;
padding-bottom: 1px;
padding-left: 3px;
padding-right: 3px;
}
/* Font Selection */
.mdseries, .textmf {font-weight: normal}
.bfseries, .textbf {font-weight: bold}
.rmfamily, .textrm {font-family: serif}
.sffamily, .textsf {font-family: sans-serif}
.ttfamily, .texttt {font-family: monospace}
.upshape, .textup {text-transform: uppercase}
.itshape, .textit {font-style: italic}
.slshape, .textsl {font-style: oblique}
.scshape, .textsc {font-variant: small-caps}
small.tiny {font-size: x-small}
small.scriptsize {font-size: smaller}
small.footnotesize {font-size: small}
small.small {font-size: small}
.normalsize {font-size: normal}
big.large {font-size: large}
big.xlarge {font-size: x-large}
big.xxlarge {font-size: x-large}
big.huge {font-size: xx-large}
big.xhuge {font-size: xx-large}
/* Lists */
/*ul.itemize {}*/
/*ol.enumerate {}*/
dl.description dt {font-weight: bold}
table.list {
margin-left: 15px;
margin-top: 1em;
margin-bottom: 1em;
}
table.list td {
padding-right: 5px;
}
/* Title Page */
.titlepage {text-align: center}
.titlepage h1 {font-weight: normal}
/* Math */
.displaymath, .eqnarray, .equation {
margin-top: 15px;
margin-bottom: 15px;
text-align: center;
}
.eqnnum {
width: 16ex;
text-align: center;
}
.fleqn {width: 2em}
/* Quotations and Verse */
.quotation, .quote, .verse {
text-indent: 2em;
}
.quotation p, .quote p, .verse p {
text-indent: 2em;
margin-top: 0px;
margin-bottom: 0px;
}
/* Rules */
hr {color: black}
/* Image offset classes */
.raise15 {margin-bottom: 10px}
.raise14 {margin-bottom: 10px}
.raise13 {margin-bottom: 10px}
.raise12 {margin-bottom: 10px}
.raise11 {margin-bottom: 10px}
.raise10 {margin-bottom: 10px}
.raise9 {margin-bottom: 9px}
.raise8 {margin-bottom: 8px}
.raise7 {margin-bottom: 7px}
.raise6 {margin-bottom: 6px}
.raise5 {margin-bottom: 5px}
.raise4 {margin-bottom: 4px}
.raise3 {margin-bottom: 3px}
.raise2 {margin-bottom: 2px}
.raise1 {margin-bottom: 1px}
.raise0 {margin-bottom: 0px}
.lower0 {margin-bottom: -0px}
.lower1 {margin-bottom: -1px}
.lower2 {margin-bottom: -2px}
.lower3 {margin-bottom: -3px}
.lower4 {margin-bottom: -4px}
.lower5 {margin-bottom: -5px}
.lower6 {margin-bottom: -6px}
.lower7 {margin-bottom: -7px}
.lower8 {margin-bottom: -8px}
.lower10 {margin-bottom: -10px}
.lower11 {margin-bottom: -11px}
.lower12 {margin-bottom: -12px}
.lower13 {margin-bottom: -13px}
.lower14 {margin-bottom: -14px}
.lower15 {margin-bottom: -15px}
.lower16 {margin-bottom: -16px}
.lower17 {margin-bottom: -17px}
.lower18 {margin-bottom: -18px}
.lower19 {margin-bottom: -19px}
.lower20 {margin-bottom: -20px}
.lower21 {margin-bottom: -21px}
.lower22 {margin-bottom: -22px}
.lower23 {margin-bottom: -23px}
.lower24 {margin-bottom: -24px}
.lower25 {margin-bottom: -25px}
.lower26 {margin-bottom: -26px}
.lower27 {margin-bottom: -27px}
.lower28 {margin-bottom: -28px}
.lower29 {margin-bottom: -29px}
.lower30 {margin-bottom: -20px}
.lower20 {margin-bottom: -20px}
td p:first-child, th p:first-child {
margin-top: 0px;
margin-bottom: 0px;
}
td p, th p {
margin-top: 1em;
margin-bottom: 0px;
}
p {
text-indent: 0em;
margin-top: 0px;
margin-bottom: 1em;
}
img {
border: none;
vertical-align: baseline;
}
img.ieimgfix {
width: 0;
visibility: hidden;
vertical-align: top;
display: none;
}
td img.ieimgfix {
display: inline;
}
body {
color: #000000;
background-color: #ffffff;
background: url('../icons/background.png');
}
/* Index */
.theindex li {
list-style-type: none
}
.changebar {
border-right: 2px solid red;
padding-right: 1em;
}
.deletebar {
color: red;
font-size: 150%;
padding-left: 0.5ex;
padding-right: 0.5ex;
}
/* The Menu */
#navlist li { display: inline;
/* for IE5 and IE6 */
}
#navlist {
width: 135px;
/* to display the list horizontaly */
font-family: sans-serif;
font-size: 80%;
margin: 0 0 0 0;
padding: 0;
}
#navlist a
{
width: 99.99%;
/* extend the sensible area to the maximum with IE5 */
display: block;
text-decoration: none;
color: #000;
}
#navlist a:hover { background-color: #ffffff; }
#navlist a:visited { color: #000; }
bin.includes = feature.xml
<project default="generate-all">
<target name="generate-all">
<antcall target="generate-html" />
<antcall target="generate-eclipse" />
</target>
<target name="generate-html">
<antcall target="generate">
<param name="targetdir" value="${basedir}/build/html"/>
<param name="theme" value="rodin-theme-html"/>
</antcall>
<delete dir="${basedir}/build/html" includes="chm.*,*.xml,*.hs,*.jhm,*.paux"></delete>
</target>
<target name="generate-eclipse">
<antcall target="generate">
<param name="targetdir" value="${basedir}/build/org.rodinp.handbook"/>
<param name="theme" value="rodin-theme-eclipse"/>
</antcall>
<delete dir="${basedir}/build/org.rodinp.handbook" includes="chm.*,*.hs,*.jhm,*.paux"></delete>
<copy todir="${basedir}/build/org.rodinp.handbook">
<fileset dir="${basedir}/skeleton" />
</copy>
<replace file="${basedir}/build/org.rodinp.handbook/eclipse-toc.xml" >
<replacetoken><![CDATA[<toc ]]></replacetoken>
<replacevalue><![CDATA[<toc topic="index.html" ]]></replacevalue>
</replace>
</target>
<target name="generate" depends="init">
<mkdir dir="${targetdir}"/>
<exec executable="plastex" dir="${basedir}/build/latex">
<env key="XHTMLTEMPLATES" value="${basedir}/build/XHTML"/>
<arg value="-d"/>
<arg value="${targetdir}"/>
<arg value="--theme=${theme}"/>
<arg value="${basedir}/build/latex/rodin-doc.tex"/>
</exec>
<copy todir="${targetdir}/files">
<fileset dir="${basedir}/latex/files" />
</copy>
</target>
<target name="init">
<tstamp/>
<!-- plastex cannot deal with subversion files. Thus, we create a copy -->
<copy todir="${basedir}/build/latex">
<fileset dir="${basedir}/latex" excludes=".svn,*.sty"/>
</copy>
<!-- We tweak the Event-B Style Files for plastex -->
<copy file="${basedir}/latex/plastex-b2latex.sty" tofile="${basedir}/build/latex/b2latex.sty"/>
<copy file="${basedir}/latex/plastex-bsymb.sty" tofile="${basedir}/build/latex/bsymb.sty"/>
<copy todir="${basedir}/build/XHTML">
<fileset dir="${basedir}/XHTML" excludes=".svn"/>
</copy>
</target>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<feature
id="org.rodinp.handbook.feature"
label="Rodin Handbook Feature"
version="1.0.0.qualifier"
provider-name="Formal Mind GmbH">
<description url="http://www.example.com/description">
The Rodin Handbook.
</description>
<copyright url="http://www.example.com/copyright">
(c) 2011 by Formal Mind GmbH and Others
</copyright>
<license url="http://www.example.com/license">
This work is licensed under the Creative Commons Attribution Licens (CC BY). The full license is found at
http://creativecommons.org/licenses/by/3.0/
</license>
<url>
<discovery label="Formal Mind" url="http://formalmind.com"/>
<discovery label="Rodin Website" url="http://sourceforge.net/projects/rodin-b-sharp/"/>
</url>
<plugin
id="org.rodinp.handbook"
download-size="0"
install-size="0"
version="0.0.0"/>
</feature>
<?xml version="1.0" ?><properties><property key="MasterFilename" value="rodin-doc.tex"/></properties>
\ No newline at end of file
<?xml version="1.0" ?><properties><property key="MasterFilename" value="rodin-doc.tex"/></properties>
\ No newline at end of file
<?xml version="1.0" ?><properties><property key="MasterFilename" value="rodin-doc.tex"/></properties>
\ No newline at end of file
(dp0
V\u005craisebox{4mm}{\u005cvtop {\u005cnull \u005chbox{\u005cincludegraphics[width=10mm]{img/tick_64.png}}}}
p1
ccopy_reg
_reconstructor
p2
(cplasTeX.Imagers
Image
p3
c__builtin__
object
p4
Ntp5
Rp6
(dp7
S'_depth'
p8
g2
(cplasTeX.Imagers
Dimension
p9
c__builtin__
float
p10
F0.0
tp11
Rp12
sS'depthRatio'
p13
I0
sS'_height'
p14
g2
(g9
g10
F1.0
tp15
Rp16
sS'_width'
p17
g2
(g9
g10
F1.0
tp18
Rp19
sS'filename'
p20
Vimages/img-0001.png
p21
sS'_cropped'
p22
I01
sS'checksum'
p23
S'\xa1\xcf\t\xb5\x9eP`\xf3\xbe\xcc\xdc\xf7\xa3q\x89\xf0'
p24
sS'path'
p25
V/home/jastram/workspaces/rodin-src/org.rodinp.help/latex/images/img-0001.png
p26
sS'alt'
p27
NsS'bitmap'
p28
g6
sS'config'
p29
g2
(cplasTeX.ConfigManager
ConfigSection
p30
g4
Ntp31
Rp32
(dp33
S'data'
p34
(dp35
S'save-file'
p36
g2
(cplasTeX.ConfigManager.Boolean
BooleanOption
p37
g4
Ntp38
Rp39
(dp40
S'category'
p41
(lp42
S'images'
p43
asS'mandatory'
p44
I00
sS'actual'
p45
NsS'name'
p46
g36
sS'parent'
p47
g32
sS'source'
p48
I2
sS'default'
p49
I0
sg34
NsS'description'
p50
S'Should the temporary images.tex file be saved for debugging?'
p51
sS'summary'
p52
g51
sS'callback'
p53
NsS'values'
p54
NsS'registry'
p55
NsS'file'
p56
NsS'error'
p57
NsS'environ'
p58
NsS'optional'
p59
NsS'options'
p60
S'--save-image-file !--delete-image-file'
p61
sS'occurrences'
p62
I0
sbsS'scale-factor'
p63
g2
(cplasTeX.ConfigManager.Float
FloatOption
p64
g4
Ntp65
Rp66
(dp67
g41
(lp68
g43
asg44
I00
sg45
Nsg46
g63
sg47
g32
sg48
I2
sg49
F1.0
sg34
Nsg50
S'Factor to scale externally included images by'
p69
sg52
g69
sg53
Nsg54
Nsg55
Nsg56
Nsg57
Nsg58
Nsg59
Nsg60
S'--image-scale-factor'
p70
sg62
I0
sbsS'cache'
p71
g2
(g37
g4
Ntp72
Rp73
(dp74
g41
(lp75
g43
asg44
I00
sg45
Nsg46
g71
sg47
g32
sg48
I2
sg49
I0
sg34
Nsg50
S'Enable image caching between runs'
p76
sg52
g76
sg53
Nsg54
Nsg55
Nsg56
Nsg57
Nsg58
Nsg59
Nsg60
S'--enable-image-cache !--disable-image-cache'
p77
sg62
I0
sbsS'enabled'
p78
g2
(g37
g4
Ntp79
Rp80
(dp81
g41
(lp82
g43
asg44
I00
sg45
Nsg46
g78
sg47
g32
sg48
I2
sg49
I1
sg34
Nsg50
S'Enable image generation'
p83
sg52
g83
sg53
Nsg54
Nsg55
Nsg56
Nsg57
Nsg58
Nsg59
Nsg60
S'--enable-images !--disable-images'
p84
sg62
I0
sbsS'filenames'
p85
g2
(cplasTeX.ConfigManager.String
StringOption
p86
g4
Ntp87
Rp88
(dp89
g41
(lp90
g43
asg44
I00
sg45
Nsg46
g85
sg47
g32
sg48
I2
sg49
Vimages/img-$num(4)
p91
sg59
Nsg50
S'Template for image filenames'
p92
sg52
g92
sg53
Nsg54
Nsg55
Nsg56
Nsg57
Nsg58
Nsg34
g91
sg60
S'--image-filenames'
p93
sg62
I0
sbsS'vector-imager'
p94
g2
(g86
g4
Ntp95
Rp96
(dp97
g41
(lp98
g43
asg44
I00
sg45
Nsg46
g94
sg47
g32
sg48
I2
sg49
Vnone dvisvgm
p99
sg59
Nsg50
S'LaTeX to vector image program'
p100
sg52
g100
sg53
Nsg54
Nsg55
Nsg56
Nsg57
Nsg58
Nsg34
g99
sg60
S'--vector-imager'
p101
sg62
I0
sbsS'baseline-padding'
p102
g2
(cplasTeX.ConfigManager.Integer
IntegerOption
p103
g4
Ntp104
Rp105
(dp106
g41
(lp107
g43
asg44
I00
sg45
Nsg46
g102
sg47
g32
sg48
I2
sg49
I0
sg34
Nsg50
S'Amount to pad the image below the baseline'
p108
sg52
g108
sg53
Nsg54
Nsg55
Nsg56
Nsg57
Nsg58
Nsg59
Nsg60
S'--image-baseline-padding'
p109
sg62
I0
sbsS'imager'
p110
g2
(g86
g4
Ntp111
Rp112
(dp113
g41
(lp114
g43
asg44
I00
sg45
Nsg46
g110
sg47
g32
sg48
I2
sg49
Vdvipng dvi2bitmap gspdfpng gsdvipng OSXCoreGraphics
p115
sg59
Nsg50
S'LaTeX to image program'
p116
sg52
g116
sg53
Nsg54
Nsg55
Nsg56
Nsg57
Nsg58
Nsg34
g115
sg60
S'--imager'
p117
sg62
I0
sbsS'base-url'
p118
g2
(g86
g4
Ntp119
Rp120
(dp121
g41
(lp122
g43
asg44
I00
sg45
Nsg46
g118
sg47
g32
sg48
I2
sg49
Nsg59
Nsg50
S'Base URL for all images'
p123
sg52
g123
sg53
Nsg54
Nsg55
Nsg56
Nsg57
Nsg58
Nsg34
Nsg60
S'--image-base-url'
p124
sg62
I0
sbsS'resolution'
p125
g2
(g103
g4
Ntp126
Rp127
(dp128
g41
(lp129
g43
asg44
I00
sg45
Nsg46
g125
sg47
g32
sg48
I2
sg49
I0
sg34
Nsg50
S'Resolution of images document'
p130
sg52
g130
sg53
Nsg54
Nsg55
Nsg56
Nsg57
Nsg58
Nsg59
Nsg60
S'--image-resolution'
p131
sg62
I0
sbsS'transparent'
p132
g2
(g37
g4
Ntp133
Rp134
(dp135
g41
(lp136
g43
asg44
I00
sg45
Nsg46
g132
sg47
g32
sg48
I2
sg49
I0
sg34
Nsg50
S'Specifies whether the image backgrounds should be transparent or not'
p137
sg52
g137
sg53
Nsg54
Nsg55
Nsg56
Nsg57
Nsg58
Nsg59
Nsg60
S'--transparent-images !--opaque-images'
p138
sg62
I0
sbsS'compiler'
p139
g2
(g86
g4
Ntp140
Rp141
(dp142
g41
(lp143
g43
asg44
I00
sg45
Nsg46
g139
sg47
g32
sg48
I2
sg49
Nsg59
Nsg50
S'LaTeX command to use when compiling image document'
p144
sg52
g144
sg53
Nsg54
Nsg55
Nsg56
Nsg57
Nsg58
Nsg34
Nsg60
S'--image-compiler'
p145
sg62
I0
sbssg46
g43
sg47
g2
(cplasTeX.ConfigManager
ConfigManager
p146
g4
Ntp147
Rp148
(dp149
S'strict'
p150
I1
sS'_categories'
p151
(dp152
S'files'
p153
S'File Handling Options'
p154
sg43
S'Image Generation Options'
p155
sS'document'
p156
S'Document Options'
p157
ssg34
(dp158
g153
g2
(g30
g4
Ntp159
Rp160
(dp161
g34
(dp162
S'input-encoding'
p163
g2
(g86
g4
Ntp164
Rp165
(dp166
g41
(lp167
g153
asg44
I00
sg45
Nsg46
g163
sg47
g160
sg48
I2
sg49
Vutf-8
p168
sg59
Nsg50
S'Input file encoding'
p169
sg52
g169
sg53
Nsg54
Nsg55
Nsg56
Nsg57
Nsg58
Nsg34
g168
sg60
S'--input-encoding'
p170
sg62
I0
sbsS'bad-chars'
p171
g2
(g86
g4
Ntp172
Rp173
(dp174
g41
(lp175
g153
asg44
I00
sg45
Nsg46
g171
sg47
g160
sg48
I2
sg49
V: #$%^&*!~`"'=?/{}[]()|<>;\u005c,.
p176
sg59
Nsg50
S'Characters that should not be allowed in a filename'
p177
sg52
g177
sg53
Nsg54
Nsg55
Nsg56
Nsg57
Nsg58
Nsg34
V: #$%^&*!~`"'=?/{}[]()|<>;\u005c,.
p178
sg60
S'--bad-filename-chars'
p179
sg62
I0
sbsS'escape-high-chars'
p180
g2
(g37
g4
Ntp181
Rp182
(dp183
g41
(lp184
g153
asg44
I00
sg45
Nsg46
g180
sg47
g160
sg48
I2
sg49
I0
sg34
Nsg50
S'Escape characters that are higher than 7-bit'
p185
sg52
g185
sg53
Nsg54
Nsg55
Nsg56
Nsg57
Nsg58
Nsg59
Nsg60
S'--escape-high-chars'
p186
sg62
I0
sbsg20
g2
(g86
g4
Ntp187
Rp188
(dp189
g41
(lp190
g153
asg44
I00
sg45
Nsg46
g20
sg47
g160
sg48
I2
sg49
Vindex [$id, sect$num(4)]
p191
sg59
Nsg50
S'Template for output filenames'
p192
sg52
g192
sg53
cplasTeX.Config
setFilename
p193
sg54
Nsg55
Nsg56
Nsg57
Nsg58
Nsg34
g191
sg60
S'--filename'
p194
sg62
I0
sbsS'output-encoding'
p195
g2
(g86
g4
Ntp196
Rp197
(dp198
g41
(lp199
g153
asg44
I00
sg45
Nsg46
g195
sg47
g160
sg48
I2
sg49
Vutf-8
p200
sg59
Nsg50
S'Output file encoding'
p201
sg52
g201
sg53
Nsg54
Nsg55
Nsg56
Nsg57
Nsg58
Nsg34
g200
sg60
S'--output-encoding'
p202
sg62
I0
sbsS'split-level'
p203
g2
(g103
g4
Ntp204
Rp205
(dp206
g41
(lp207
g153
asg44
I00
sg45
Nsg46
g203
sg47
g160
sg48
I2
sg49
I2
sg34
Nsg50
S'Highest section level that generates a new file'
p208
sg52
g208
sg53
Nsg54
Nsg55
Nsg56
Nsg57
Nsg58
Nsg59
Nsg60
S'--split-level'
p209
sg62
I0
sbsS'directory'
p210
g2
(g86
g4
Ntp211
Rp212
(dp213
g41
(lp214
g153
asg44
I00
sg45
S'-d'
p215
sg46
g210
sg47
g160
sg48
I64
sg49
V$jobname
p216
sg59
Nsg50
S'Directory to put output files into'
p217
sg52
g217
sg53
Nsg54
Nsg55
Nsg56
Nsg57
Nsg58
Nsg34
V/home/jastram/workspaces/rodin-src/org.rodinp.help/latex
p218
sg60
S'--dir -d'
p219
sg62
I1
sbsS'bad-chars-sub'
p220
g2
(g86
g4
Ntp221
Rp222
(dp223
g41
(lp224
g153
asg44
I00
sg45
Nsg46
g220
sg47
g160
sg48
I2
sg49
V-
p225
sg59
Nsg50
S'Character that should be used instead of an illegal character'
p226
sg52
g226
sg53
Nsg54
Nsg55
Nsg56
Nsg57
Nsg58
Nsg34
g225
sg60
S'--bad-filename-chars-sub'
p227
sg62
I0
sbssg46
g153
sg47
g148
sbsS'links'
p228
g2
(g30
g4
Ntp229
Rp230
(dp231
g34
(dp232
S';links'
p233
g2
(cplasTeX.ConfigManager.Compound
CompoundOption
p234
g4
Ntp235
Rp236
(dp237
g41
(lp238
g156
asg44
I00
sg45
Nsg46
g233
sg47
g230
sg48
I2
sg49
Nsg59
Nsg50
S'Set links for use in navigation'
p239
sg52
g239
sg53
cplasTeX.Config
setlinks
p240
sg54
Nsg55
Nsg56
Nsg57
Nsg58
Nsg34
Nsg60
S'--link'
p241
sg62
I0
sbssg46
g228
sg47
g148
sbsS'DEFAULT'
p242
g2
(g30
g4
Ntp243
Rp244
(dp245
g34
(dp246
sg46
g242
sg47
g148
sbsS'general'
p247
g2
(g30
g4
Ntp248
Rp249
(dp250
g34
(dp251
S'paux-dirs'
p252
g2
(cplasTeX.ConfigManager.Multi
MultiOption
p253
g4
Ntp254
Rp255
(dp256
g44
I00
sS'delim'
p257
S','
p258
sg62
I0
sg56
Nsg41
(lp259
sg34
(lp260
sg48
I4
sS'template'
p261
g2
(g86
g4
Ntp262
Rp263
(dp264
g41
(lp265
sg44
I00
sg45
Nsg46
Nsg48
I2
sg49
Nsg59
Nsg50
Nsg52
Nsg53
Nsg54
Nsg55
Nsg56
Nsg57
Nsg58
Nsg34
Nsg60
S'--paux-dirs'
p266
sg62
I0
sbsg58
Nsg50
S'Directories where *.paux files should be loaded from.'
p267
sg47
g249
sg55
Nsg59
(lp268
sg45
Nsg46
g252
sg49
(lp269
sg52
g267
sg53
NsS'range'
p270
(lp271
I1
aS'*'
p272
asg54
Nsg57
Nsg60
g266
sbsS'kpsewhich'
p273
g2
(g86
g4
Ntp274
Rp275
(dp276
g41
(lp277
sg44
I00
sg45
Nsg46
g273
sg47
g249
sg48
I2
sg49
Vkpsewhich
p278
sg59
Nsg50
S'Program which locates LaTeX files and packages'
p279
sg52
g279
sg53
Nsg54
Nsg55
Nsg56
Nsg57
Nsg58
Nsg34
g278
sg60
S'--kpsewhich'
p280
sg62
I0
sbsS'copy-theme-extras'
p281
g2
(g37
g4
Ntp282
Rp283
(dp284
g41
(lp285
sg44
I00
sg45
Nsg46
g281
sg47
g249
sg48
I2
sg49
I1
sg34
Nsg50
S'Copy files associated with the theme to the output directory'
p286
sg52
g286
sg53
Nsg54
Nsg55
Nsg56
Nsg57
Nsg58
Nsg59
Nsg60
S'--copy-theme-extras !--no-theme-extras'
p287
sg62
I0
sbsS'theme'
p288
g2
(g86
g4
Ntp289
Rp290
(dp291
g41
(lp292
sg44
I00
sg45
S'--theme'
p293
sg46
g288
sg47
g249
sg48
I64
sg49
Vdefault
p294
sg59
Nsg50
S'Theme for the renderer to use'
p295
sg52
g295
sg53
Nsg54
Nsg55
Nsg56
Nsg57
Nsg58
Nsg34
Vrodin-theme-html
p296
sg60
S'--theme'
p297
sg62
I1
sbsS'renderer'
p298
g2
(g86
g4
Ntp299
Rp300
(dp301
g41
(lp302
sg44
I00
sg45
Nsg46
g298
sg47
g249
sg48
I2
sg49
VXHTML
p303
sg59
Nsg50
S'Renderer to use for conversion'
p304
sg52
g304
sg53
Nsg54
Nsg55
Nsg56
Nsg57
Nsg58
Nsg34
g303
sg60
S'--renderer'
p305
sg62
I0
sbsg29
g2
(g86
g4
Ntp306
Rp307
(dp308
g41
(lp309
sg44
I00
sg45
Nsg46
g29
sg47
g249
sg48
I2
sg49
Nsg59
Nsg50
S'Load additional configuration file\n\nThis configuration file will be loaded during the processing of\ncommand-line options. However, configuration files cannot override\ncommand-line options. So no matter what is in the configuration file,\nif an option is specified on the command-line, it will always win.\nTo eliminate any confusion, this should generally be the first\nargument.'
p310
sg52
S'Load additional configuration file'
p311
sg53
cplasTeX.Config
readconfig
p312
sg54
Nsg55
Nsg56
Nsg57
Nsg58
Nsg34
Nsg60
S'--config -c'
p313
sg62
I0
sbssg46
g247
sg47
g148
sbsg43
g32
sg156
g2
(g30
g4
Ntp314
Rp315
(dp316
g34
(dp317
S'toc-depth'
p318
g2
(g103
g4
Ntp319
Rp320
(dp321
g41
(lp322
g156
asg44
I00
sg45
Nsg46
g318
sg47
g315
sg48
I2
sg49
I3
sg34
Nsg50
S'Number of levels to display in the table of contents'
p323
sg52
g323
sg53
Nsg54
Nsg55
Nsg56
Nsg57
Nsg58
Nsg59
Nsg60
S'--toc-depth'
p324
sg62
I0
sbsS'toc-non-files'
p325
g2
(g37
g4
Ntp326
Rp327
(dp328
g41
(lp329
g156
asg44
I00
sg45
Nsg46
g325
sg47
g315
sg48
I2
sg49
I0
sg34
Nsg50
S'Display sections that do not create files in the table of contents'
p330
sg52
g330
sg53
Nsg54
Nsg55
Nsg56
Nsg57
Nsg58
Nsg59
Nsg60
S'--toc-non-files'
p331
sg62
I0
sbsS'lang-terms'
p332
g2
(g86
g4
Ntp333
Rp334
(dp335
g41
(lp336
g156
asg44
I00
sg45
Nsg46
g332
sg47
g315
sg48
I2
sg49
V
p337
sg59
Nsg50
S"Specifies a ':' delimited list of files that contain language terms"
p338
sg52
g338
sg53
Nsg54
Nsg55
Nsg56
Nsg57
Nsg58
Nsg34
g337
sg60
S'--lang-terms'
p339
sg62
I0
sbsS'title'
p340
g2
(g86
g4
Ntp341
Rp342
(dp343
g41
(lp344
g156
asg44
I00
sg45
Nsg46
g340
sg47
g315
sg48
I2
sg49
Nsg59
Nsg50
S'Title for the document\n\nThis option specifies a title to use instead of the title\nspecified in the LaTeX document.'
p345
sg52
S'Title for the document'
p346
sg53
Nsg54
Nsg55
Nsg56
Nsg57
Nsg58
Nsg34
Nsg60
S'--title'
p347
sg62
I0
sbsS'sec-num-depth'
p348
g2
(g103
g4
Ntp349
Rp350
(dp351
g41
(lp352
g156
asg44
I00
sg45
Nsg46
g348
sg47
g315
sg48
I2
sg49
I2
sg34
Nsg50
S'Maximum section depth to display section numbers'
p353
sg52
g353
sg53
Nsg54
Nsg55
Nsg56
Nsg57
Nsg58
Nsg59
Nsg60
S'--sec-num-depth'
p354
sg62
I0
sbsS'index-columns'
p355
g2
(g103
g4
Ntp356
Rp357
(dp358
g41
(lp359
g156
asg44
I00
sg45
Nsg46
g355
sg47
g315
sg48
I2
sg49
I2
sg34
Nsg50
S'Number of columns to split the index entries into'
p360
sg52
g360
sg53
Nsg54
Nsg55
Nsg56
Nsg57
Nsg58
Nsg59
Nsg60
S'--index-columns'
p361
sg62
I0
sbsg118
g2
(g86
g4
Ntp362
Rp363
(dp364
g41
(lp365
g156
asg44
I00
sg45
Nsg46
g118
sg47
g315
sg48
I2
sg49
Nsg59
Nsg50
S'Base URL for inter-node links'
p366
sg52
g366
sg53
Nsg54
Nsg55
Nsg56
Nsg57
Nsg58
Nsg34
Nsg60
S'--base-url'
p367
sg62
I0
sbssg46
g156
sg47
g148
sbsS'counters'
p368
g2
(g30
g4
Ntp369
Rp370
(dp371
g34
(dp372
S';counters'
p373
g2
(g234
g4
Ntp374
Rp375
(dp376
g41
(lp377
g156
asg44
I00
sg45
Nsg46
g373
sg47
g370
sg48
I2
sg49
Nsg59
Nsg50
S'Set initial counter values'
p378
sg52
g378
sg53
cplasTeX.Config
setcounter
p379
sg54
Nsg55
Nsg56
Nsg57
Nsg58
Nsg34
Nsg60
S'--counter'
p380
sg62
I0
sbssg46
g368
sg47
g148
sbssS'unrecognized'
p381
(lp382
sbsbsS'longdesc'
p383
Nsbs.
\ No newline at end of file
<?xml version="1.0" ?><properties><property key="MasterFilename" value="rodin-doc.tex"/></properties>
\ No newline at end of file
<?xml version="1.0" ?><properties><property key="MasterFilename" value="rodin-doc.tex"/></properties>
\ No newline at end of file
<?xml version="1.0" ?><properties><property key="MasterFilename" value="rodin-doc.tex"/></properties>
\ No newline at end of file
<?xml version="1.0" ?><properties><property key="MasterFilename" value="rodin-doc.tex"/></properties>
\ No newline at end of file
<?xml version="1.0" ?><properties><property key="MasterFilename" value="rodin-doc.tex"/></properties>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment