From: bangerth Date: Tue, 29 Nov 2011 21:28:49 +0000 (+0000) Subject: Use newlines instead of \\\\ in latex output. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=51e7373a7ec3d1ce7615d8d92d0ac7bce3352a4e;p=dealii-svn.git Use newlines instead of \\\\ in latex output. git-svn-id: https://svn.dealii.org/trunk@24778 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/source/base/parameter_handler.cc b/deal.II/source/base/parameter_handler.cc index cf0787923d..98f7e9343b 100644 --- a/deal.II/source/base/parameter_handler.cc +++ b/deal.II/source/base/parameter_handler.cc @@ -1748,12 +1748,12 @@ ParameterHandler::print_parameters_section (std::ostream &out, const std::string value = p->second.get("value"); // print name and value - out << "\\item {\\it Parameter name:} {\\tt " << demangle(p->first) << "}\\\\" + out << "\\item {\\it Parameter name:} {\\tt " << demangle(p->first) << "}\n\n" << std::endl - << "{\\it Value:} " << value << "\\\\" + << "{\\it Value:} " << value << "\n\n" << std::endl << "{\\it Default:} " - << p->second.get("default_value") << "\\\\" + << p->second.get("default_value") << "\n\n" << std::endl; // if there is a @@ -1761,7 +1761,7 @@ ParameterHandler::print_parameters_section (std::ostream &out, // print it as well if (!p->second.get("documentation").empty()) out << "{\\it Description:} " - << p->second.get("documentation") << "\\\\" + << p->second.get("documentation") << "\n\n" << std::endl; // also output possible values