Don't export stupid latex output
This commit is contained in:
parent
6efc508ccd
commit
cf6f10a04b
@ -5,19 +5,10 @@ function ExportAsLaTeX() {
|
||||
this._scale = 0.1; // to convert pixels to document space (TikZ breaks if the numbers get too big, above 500?)
|
||||
|
||||
this.toLaTeX = function() {
|
||||
return '\\documentclass[12pt]{article}\n' +
|
||||
'\\usepackage{tikz}\n' +
|
||||
'\n' +
|
||||
'\\begin{document}\n' +
|
||||
'\n' +
|
||||
'\\begin{center}\n' +
|
||||
'\\begin{tikzpicture}[scale=0.2]\n' +
|
||||
return '\\begin{tikzpicture}[scale=0.2]\n' +
|
||||
'\\tikzstyle{every node}+=[inner sep=0pt]\n' +
|
||||
this._texData +
|
||||
'\\end{tikzpicture}\n' +
|
||||
'\\end{center}\n' +
|
||||
'\n' +
|
||||
'\\end{document}\n';
|
||||
'\\end{tikzpicture}';
|
||||
};
|
||||
|
||||
this.beginPath = function() {
|
||||
|
Loading…
Reference in New Issue
Block a user