From a9eb95ff2aebc69e8d9cca38a19cf6e4f386ff00 Mon Sep 17 00:00:00 2001 From: Houtan Bastani Date: Thu, 26 Sep 2013 14:45:46 +0200 Subject: [PATCH] reporting: series: fix spacing of table cell separators and eol's --- matlab/reports/@series/write.m | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/matlab/reports/@series/write.m b/matlab/reports/@series/write.m index 586c7125d..2511b9944 100644 --- a/matlab/reports/@series/write.m +++ b/matlab/reports/@series/write.m @@ -60,7 +60,7 @@ end if ~isempty(o.tableSubSectionHeader) fprintf(fid, '%s', o.tableSubSectionHeader); for i=1:size(dates) - fprintf(fid, ' & '); + fprintf(fid, '&'); end fprintf(fid, '\\\\%%\n'); return; @@ -75,7 +75,7 @@ end data = o.data(dates); data = data.data; for i=1:size(data,1) - fprintf(fid, ' &'); + fprintf(fid, '&'); if o.tableShowMarkers if data(i) < -o.tableMarkerLimit fprintf(fid, '\\color{%s}', o.tableNegColor); @@ -91,5 +91,5 @@ for i=1:size(data,1) fprintf(fid, ']'); end end -fprintf(fid, ' \\\\\n\n'); +fprintf(fid, '\\\\%%\n'); end