Presentations and Posters ⇒ Changing the size to 36" by 24"
-
- Posts: 679
- Joined: Tue Mar 03, 2015 4:01 pm
Changing the size to 36" by 24"
jakemerrell
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Changing the size to 36" by 24"
Hmm that's odd, you'd think that adjusting those values should adjust everything else automatically since everything is a proportion of
\linewidth
. I don't have the time to figure out why this is happening at the moment but the solution is to do the following:1) Set
\paperwidth
to 36in
and \paperheight
to 24in
in main.tex
2) Change
\usepackage[scale=1.24]{beamerposter}
to \usepackage[scale=0.8]{beamerposter}
in main.tex
3) Change \setlength{\paperwidth}{118.82cm}
to \setlength{\paperwidth}{80cm}
in beamerposter.sty
just after "%a0" on line 49.Cheers,
Vel
-
- Posts: 679
- Joined: Tue Mar 03, 2015 4:01 pm
Re: Changing the size to 36" by 24"
That worked great! Thanks for the help. I have one other question, I have only been able to edit this document on the online editors because my local editors say it is missing the translator.sty. Do you know where I can find that file? It didn't come in the zip with the other files.
jakemerrell
Re: Changing the size to 36" by 24"
Excellent, glad that helped!
You can pick up translator.sty from CTAN here: http://www.ctan.org/tex-archive/macros/ ... translator
Just download it and put it in the same directory as the poster and your compiler will pick it up!
Cheers,
Vel
Changing the size to 36" by 24"
I am also trying to change the size of the poster, but to 42" by 30". I implemented the same sort of changes as the previous user Jake, but I am having problems as the document is made un-centered and runs off the right edge. I'm wondering if this aspect ratio is just un-doable for the template, or if there might be an easy fix for this.
Best,
Kathryn
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Changing the size to 36" by 24"
Many templates are buggy. Here, not only the template, but also the package it relies onare buggy.
Add the following to your document:
Code: Select all
\setlength{\paperwidth}{42in} % A0 width: 46.8in
\setlength{\textwidth}{40in}
\setlength{\paperheight}{30in} % A0 height: 33.1in
\setlength{\textwidth}{28in}
Changing the size to 36" by 24"
Changing the size to 36" by 24"
templateuser wrote:I have only been able to edit this document on the online editors because my local editors say it is missing the translator.sty. Do you know where I can find that file? It didn't come in the zip with the other files.
Please don't do this! Probably half of the “bug reports” I get regarding my packages are because people installed single files or single packages instead of doing a proper update.Vel wrote:You can pick up translator.sty from CTAN here: http://www.ctan.org/tex-archive/macros/ ... translator
Just download it and put it in the same directory as the poster and your compiler will pick it up!
Just update your TeX distribution (TeX Live or MiKTeX, presumably) using the corresponding package manager.
Regards