Don't export stupid latex output

This commit is contained in:
Austen Adler 2017-02-05 23:24:07 -05:00
parent 6efc508ccd
commit cf6f10a04b
No known key found for this signature in database
GPG Key ID: 7ECEE590CCDFE3F1

View File

@ -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() {