/usr/share/metview/etc/PlotSuperPageRules is in metview-data 5.0.0~beta.1-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | !%if LAYOUT_SIZE <> CUSTOM %then
! %unset CUSTOM_WIDTH
! %unset CUSTOM_HEIGHT
%if LAYOUT_SIZE = A4 %and LAYOUT_ORIENTATION = PORTRAIT %then
%set CUSTOM_WIDTH = '21.0'
%set CUSTOM_HEIGHT = '29.7'
%if LAYOUT_SIZE = A4 %and LAYOUT_ORIENTATION = LANDSCAPE %then
%set CUSTOM_WIDTH = '29.7'
%set CUSTOM_HEIGHT = '21.0'
%if LAYOUT_SIZE = A3 %and LAYOUT_ORIENTATION = PORTRAIT %then
%set CUSTOM_WIDTH = '29.7'
%set CUSTOM_HEIGHT = '42.0'
%if LAYOUT_SIZE = A3 %and LAYOUT_ORIENTATION = LANDSCAPE %then
%set CUSTOM_WIDTH = '42.0'
%set CUSTOM_HEIGHT = '29.7'
|