-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Generation of A0 PDF #3
Comments
I found that you can print the page using a smaller page size and then resize it manually. The example poster from GitHub fits on the A2 page and after resizing it with Inkscape, it looks fine on A0. So this is a workaround, but maybe you know of a better approach? Anyway, thanks for this great project regarding academic posters! |
(Short answer: type Long answer: Here's what I do (with Chrome):
This works up to size A1, where a scale of 170 does the trick. For size A0, since Chrome doesn't let me increase "scale" past 200, I add a "zoom" property from CSS, and then printing with "scale" set to 115 fills an A0 page: html { zoom: 2; } A convenient way to do this is from the address bar, where you can just type (See the discussion in the comments of https://academia.stackexchange.com/a/173015/24520 for a bit more details) |
I wonder if it would be worth adding this zoom setting to a "media: print" rule in the stylesheet. |
Great! Thanks a lot. I will definitely give it a try. |
Hello @cpitclaudel Thank you for this very nice project. I was hesitant on whether to open a new issue, because my question is very related to this one. Would it be possible to somehow enforce a two column layout of the poster when printing to PDF? The thing is that some conferences do not accept landscape posters, but only vertical ones. |
@Panadestein I can think of two ways to do this. One is to use a CSS grid instead of a flexbox, and force it to have exactly two columns. The second one is to change the |
Thanks a lot, Clément. The first suggestion worked best for me. I used something in this direction:
which renders to 2 nice columns when printing to A0 format. |
Great news @Panadestein , thanks for the update! If your poster is public, feel free to add a link here :) |
Is there a way to generate a PDF in A0 format?
Saving a page as a PDF in A0 format does not scale - the PDF is a huge blank page with slides in one column.
The text was updated successfully, but these errors were encountered: