Presentations and PostersChanging the size to 36" by 24"

Beamer, Powerdot and KOMA-Script presentations, Conference posters (a0poster, baposter, tikzposter)
Post Reply
templateuser
Posts: 679
Joined: Tue Mar 03, 2015 4:01 pm

Changing the size to 36" by 24"

Post by templateuser »

I would like to change the size of the poster to 36" X 24". It appeared as if the columns would adjust automatically with the new width. However once I change the size the columns don't change at all and the top title doesn't remain centered.

jakemerrell

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
Vel
Site Moderator
Posts: 463
Joined: Fri Jun 29, 2012 1:20 am

Changing the size to 36" by 24"

Post by Vel »

Hey Jake,

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.tex3) Change \setlength{\paperwidth}{118.82cm} to \setlength{\paperwidth}{80cm} in beamerposter.sty just after "%a0" on line 49.

Cheers,
Vel
Founder and administrator of LaTeXTemplates.com and LaTeXTypesetting.com
templateuser
Posts: 679
Joined: Tue Mar 03, 2015 4:01 pm

Re: Changing the size to 36" by 24"

Post by templateuser »

Vel,

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
User avatar
Vel
Site Moderator
Posts: 463
Joined: Fri Jun 29, 2012 1:20 am

Re: Changing the size to 36" by 24"

Post by Vel »

Hey Jake,

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
Founder and administrator of LaTeXTemplates.com and LaTeXTypesetting.com
ktmac
Posts: 2
Joined: Tue Mar 21, 2017 5:20 pm

Changing the size to 36" by 24"

Post by ktmac »

Hi,

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
User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Changing the size to 36" by 24"

Post by Johannes_B »

Do not change package files. Please immediately unchange the file beamerposter.sty, or delete it and unzip the template again.

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}
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
ktmac
Posts: 2
Joined: Tue Mar 21, 2017 5:20 pm

Changing the size to 36" by 24"

Post by ktmac »

Thanks so much! The fix worked perfectly.
User avatar
cgnieder
Site Moderator
Posts: 2000
Joined: Sat Apr 16, 2011 7:27 pm

Changing the size to 36" by 24"

Post by cgnieder »

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.
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!
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.

Just update your TeX distribution (TeX Live or MiKTeX, presumably) using the corresponding package manager.

Regards
site moderator & package author
Post Reply