From bb055a09fc93a46bdb0411ae1f082debf6d16ac9 Mon Sep 17 00:00:00 2001
From: Houtan Bastani <houtan@dynare.org>
Date: Wed, 29 Apr 2015 16:19:23 +0200
Subject: [PATCH] reporting: use linewidth instead of textwidth as it works
 better in landscape mode

---
 src/@paragraph/write.m | 6 +++---
 src/@section/write.m   | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/@paragraph/write.m b/src/@paragraph/write.m
index 3397b44..09e6a2e 100644
--- a/src/@paragraph/write.m
+++ b/src/@paragraph/write.m
@@ -12,7 +12,7 @@ function o = write(o, fid)
 % SPECIAL REQUIREMENTS
 %   none
 
-% Copyright (C) 2014 Dynare Team
+% Copyright (C) 2014-2015 Dynare Team
 %
 % This file is part of Dynare.
 %
@@ -30,7 +30,7 @@ function o = write(o, fid)
 % along with Dynare.  If not, see <http://www.gnu.org/licenses/>.
 
 assert(fid ~= -1);
-fprintf(fid, '%% Paragraph Object\n\\multicolumn{1}{p{\\textwidth}}{%%\n');
+fprintf(fid, '%% Paragraph Object\n\\multicolumn{1}{p{\\linewidth}}{%%\n');
 if o.cols ~= 1
     bc = '';
     if o.balancedCols
@@ -67,4 +67,4 @@ end
 %\columnbreak
 %If you read this text, you will get no information.  Really?  Is there 
 %no information?  Is there...
-%\end{multicols}}\\
\ No newline at end of file
+%\end{multicols}}\\
diff --git a/src/@section/write.m b/src/@section/write.m
index 00a34f7..558fa4b 100644
--- a/src/@section/write.m
+++ b/src/@section/write.m
@@ -14,7 +14,7 @@ function o = write(o, fid, pg, sec)
 % SPECIAL REQUIREMENTS
 %   none
 
-% Copyright (C) 2013-2014 Dynare Team
+% Copyright (C) 2013-2015 Dynare Team
 %
 % This file is part of Dynare.
 %
@@ -37,7 +37,7 @@ fprintf(fid, '%% Section Object\n');
 if ~isempty(o.height)
     fprintf(fid, '\\setlength\\sectionheight{%s}%%\n', o.height);
 end
-fprintf(fid, '\\maxsizebox{\\textwidth}{');
+fprintf(fid, '\\maxsizebox{\\linewidth}{');
 if isempty(o.height)
     fprintf(fid, '!');
 else
@@ -86,4 +86,4 @@ for i=1:ne
 end
 fprintf(fid, '\\end{tabular}}\\\\\n');
 fprintf(fid, '%% End Section Object\n\n');
-end
\ No newline at end of file
+end
-- 
GitLab