anriseth / baposter

Automatically exported from code.google.com/p/baposter
GNU General Public License v3.0
14 stars 2 forks source link

Page number appears in archE page size #8

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
If you use archE page size, the page number will still be there. I am using
the April 2009 version on a Linux (FC8) system.

Original issue reported on code.google.com by rodrigo.d.dominguez@gmail.com on 2 Sep 2009 at 8:44

GoogleCodeExporter commented 8 years ago
The problem had to do with using both archE and landscape options. More 
specifically,
the size of the physical page and the logical page are different. I solved the
problem by changing the following on the cls file:

\ifthenelse{\equal{\baposter@format}{landscape}}{
  \setlength{\baposter@basepaperwidth} {121.92cm}
  \setlength{\baposter@basepaperheight}{91.44cm}
  \setlength{\baposter@basemargin}{1.5cm}
}{
  \setlength{\baposter@basepaperwidth} {91.44cm}
  \setlength{\baposter@basepaperheight}{121.92cm}
  \setlength{\baposter@basemargin}{1.5cm}
}

Original comment by rodrigo.d.dominguez@gmail.com on 6 Sep 2009 at 11:30

GoogleCodeExporter commented 8 years ago
Thank you very much..I had the same problem.!!!

Original comment by eny.rce...@gmail.com on 12 Oct 2010 at 5:56

GoogleCodeExporter commented 8 years ago
I wasn't able to get the above solution to work, but I was able to get ride of 
the 
page number by inserting the line below into the cls file.

\thispagestyle{empty}

Original comment by jon.good...@gmail.com on 3 Dec 2010 at 10:13

GoogleCodeExporter commented 8 years ago
Thank you for the bug report.

Added
  \thispagestyle{empty}
to the style file. This should fix the problem, even though the underlying 
page-size selection mechanisms have not yet been fixed.

Original comment by brian.amberg@gmail.com on 11 Dec 2010 at 7:57