-
Notifications
You must be signed in to change notification settings - Fork 1
/
pdf2pub.inx
62 lines (55 loc) · 3.09 KB
/
pdf2pub.inx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?xml version="1.0" encoding="UTF-8"?>
<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
<name>pdf2pub</name>
<id>www.seas.upenn.edu/luizf</id>
<dependency type="executable" location="extensions">pdf2pub.py</dependency>
<dependency type="executable" location="extensions">inkex.py</dependency>
<dependency type="executable" location="extensions">simpletransform.py</dependency>
<dependency type="executable" location="extensions">simplepath.py</dependency>
<dependency type="executable" location="extensions">simplestyle.py</dependency>
<param name="tabs" type="notebook">
<page name="defaults" _gui-text="Format">
<param name="format" type="optiongroup" _gui-text="Plot format">
<_option value="full">Full</_option>
<_option value="half">Half</_option>
<_option value="custom">Custom</_option>
</param>
<param name="xticks" type="string" _gui-text="x-ticks (comma separated list)"></param>
<param name="yticks" type="string" _gui-text="y-ticks (comma separated list)"></param>
<param name="color_pal" type="enum" _gui-text="Color palette">
<_item value="original">Keep original</_item>
<item value="chamon_pal">Chamon's Set1</item>
<item value="brewer_set1">Brewer's Set1</item>
<item value="brewer_dark2">Brewer's Dark2</item>
</param>
<param name="bbox_style_find" type="string" _gui-text="Find bounding box style">stroke:#262626</param>
<param name="grid_style_find" type="string" _gui-text="Find grid style">stroke:#dfdfdf</param>
<param name="elements_dict" type="boolean" _gui-text="Legend and additional elements">true</param>
</page>
<page name="custom" _gui-text="Custom">
<param name="width" type="string" _gui-text="Plot width (half: 130px)">260px</param>
<param name="height" type="string" _gui-text="Plot height (half: 98px)">196px</param>
<param name="font_family" type="string" _gui-text="Font family">CMU Serif</param>
<param name="font_color" type="string" _gui-text="Font color">#262626</param>
<param name="ticks_size" type="string" _gui-text="Tick labels font size (half: 7px)">8px</param>
<param name="labels_size" type="string" _gui-text="Axis labels font size (half: 9px)">10px</param>
<param name="plot_stroke_width" type="string" _gui-text="Plot line width">1.2px</param>
<param name="bbox_style" type="string" _gui-text="Bounding box style">
stroke:#262626;fill:none;stroke-width:0.4px;stroke-linecap:square;
stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;
stroke-opacity:1
</param>
<param name="grid_style" type="string" _gui-text="Grid style">
stroke:#dfdfdf;fill:none;stroke-width:0.4px;stroke-linecap:square;
stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;
stroke-opacity:1
</param>
</page>
</param>
<effect needs-live-preview="false">
<object-type>all</object-type>
</effect>
<script>
<command reldir="extensions" interpreter="python">pdf2pub.py</command>
</script>
</inkscape-extension>