From 555e2cf73b59378d0dca44a0378120d6c051e43a Mon Sep 17 00:00:00 2001
From: Houtan Bastani <houtan@dynare.org>
Date: Mon, 28 Jul 2014 17:28:00 +0200
Subject: [PATCH] reporting: write tableSubSectionHeader in bold

---
 matlab/reports/@report_series/writeSeriesForTable.m | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/matlab/reports/@report_series/writeSeriesForTable.m b/matlab/reports/@report_series/writeSeriesForTable.m
index edda0b0b1..bd4f70b67 100644
--- a/matlab/reports/@report_series/writeSeriesForTable.m
+++ b/matlab/reports/@report_series/writeSeriesForTable.m
@@ -69,7 +69,7 @@ if ~isempty(o.tableRowColor)
     fprintf(fid, '\\rowcolor{%s}', o.tableRowColor);
 end
 if ~isempty(o.tableSubSectionHeader)
-    fprintf(fid, '%s', o.tableSubSectionHeader);
+    fprintf(fid, '\\textbf{%s}', o.tableSubSectionHeader);
     for i=1:ncols-1
         fprintf(fid, ' &');
     end
-- 
GitLab