Difference between revisions of "PsTricks export"
From JSXGraph Wiki
Jump to navigationJump to searchA WASSERMANN (talk | contribs) |
|||
(7 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
− | <jsxgraph width="600" height=" | + | A very recent version of psTricks is recommended, since the colour attribute 'opacity' is required. |
+ | <jsxgraph width="600" height="400" board="board" filename="Blubb81.nc.gxt" /> | ||
<html> | <html> | ||
<form> | <form> | ||
− | <input type='button' value=' | + | <input type='button' value='Export as psTricks' onclick='document.getElementById("pstricksOutput").innerHTML = JXG.PsTricks.convert(board);'> |
</form> | </form> | ||
<div id="pstricksOutput" style="width:600px; height:400px; border:1px dashed black; overflow:scroll;"> | <div id="pstricksOutput" style="width:600px; height:400px; border:1px dashed black; overflow:scroll;"> | ||
</div> | </div> | ||
</html> | </html> | ||
+ | |||
+ | ===HTML/JavaScript code=== | ||
+ | <source lang="xml"> | ||
+ | <jsxgraph width="600" height="400" board="board" filename="Blubb81.nc.gxt" /> | ||
+ | <html> | ||
+ | <form> | ||
+ | <input type='button' value='Export as psTricks' onclick='document.getElementById("pstricksOutput").innerHTML = JXG.PsTricks.convert(board);'> | ||
+ | </form> | ||
+ | <div id="pstricksOutput" style="width:600px; height:400px; border:1px dashed black; overflow:scroll;"> | ||
+ | </div> | ||
+ | </html> | ||
+ | </source> | ||
+ | |||
+ | [[Category:Austragungsstueberl]] |
Latest revision as of 16:00, 17 January 2012
A very recent version of psTricks is recommended, since the colour attribute 'opacity' is required.
HTML/JavaScript code
<jsxgraph width="600" height="400" board="board" filename="Blubb81.nc.gxt" />
<html>
<form>
<input type='button' value='Export as psTricks' onclick='document.getElementById("pstricksOutput").innerHTML = JXG.PsTricks.convert(board);'>
</form>
<div id="pstricksOutput" style="width:600px; height:400px; border:1px dashed black; overflow:scroll;">
</div>
</html>