From ad3d00f0da38452c479c604aaa4ddf34c8f1521f Mon Sep 17 00:00:00 2001 From: Houtan Bastani Date: Wed, 16 Sep 2015 12:20:20 +0200 Subject: [PATCH] preprocessor: fix bug when printing model variables containing underscores in latex file. closes #1059 --- preprocessor/ModelTree.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/preprocessor/ModelTree.cc b/preprocessor/ModelTree.cc index 10fb02f7a..21c2d509e 100644 --- a/preprocessor/ModelTree.cc +++ b/preprocessor/ModelTree.cc @@ -1385,7 +1385,7 @@ ModelTree::writeLatexModelFile(const string &basename, ExprNodeOutputType output expr_t value = it->second; content_output << "\\begin{dmath*}" << endl - << symbol_table.getName(id) << " = "; + << symbol_table.getTeXName(id) << " = "; // Use an empty set for the temporary terms value->writeOutput(content_output, output_type); content_output << endl << "\\end{dmath*}" << endl;