Difference between revisions of "PsTricks export"
From JSXGraph Wiki
Jump to navigationJump to search(3 intermediate revisions by the same user not shown) | |||
Line 3: | Line 3: | ||
<html> | <html> | ||
<form> | <form> | ||
− | <input type='button' value='Export as psTricks' onclick='document.getElementById( | + | <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;"> | ||
Line 14: | Line 14: | ||
<html> | <html> | ||
<form> | <form> | ||
− | <input type='button' value='Export as psTricks' onclick='document.getElementById( | + | <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;"> | ||
Line 21: | Line 21: | ||
</source> | </source> | ||
− | [[Category: | + | [[Category:Austragungsstueberl]] |
Latest revision as of 17: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>