From 51e7373a7ec3d1ce7615d8d92d0ac7bce3352a4e Mon Sep 17 00:00:00 2001 From: bangerth Date: Tue, 29 Nov 2011 21:28:49 +0000 Subject: [PATCH] Use newlines instead of \\\\ in latex output. git-svn-id: https://svn.dealii.org/trunk@24778 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/source/base/parameter_handler.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 -- 2.39.5