General ⇒ making a poster with latex
making a poster with latex
I would like to make a poster with latex (paper size A0).
What templates/options/settings can I use for this?
Thanks.
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
- Stefan Kottwitz
- Site Admin
- Posts: 10397
- Joined: Mon Mar 10, 2008 9:44 pm
making a poster with latex
tikzposter is a pretty new package with very fancy and colorful design, coming with some templates. You could have a look at Elena's fancytikzposter page for seeing screenshots of templates of that package version.Stefan
Re: making a poster with latex
Thanks.
In tikzposter, do you know how to separate the title into multiple lines?
It seems using \\ does not work.
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
making a poster with latex
making a poster with latex
Code: Select all
\documentclass{tikzposter} %Options for format can be included here
% Title, Author, Institute
\title{This is a very very very very long title that should be separated into multiple lines}
\author{Author(s)}
\institute{Institute}
\titlegraphic{LogoGraphic Inserted Here}
%Choose Layout
\usetheme{Default}
\begin{document}
% Title block with title, author, logo, etc.
\maketitle
\block{Basic Block}{Text}
\begin{columns}
% FIRST column
\column{0.6}% Width set relative to text width
\block{Large Column}{Text\\Text\\Text Text Text}
\note{Note with default behavior}
\note[targetoffsetx=12cm, targetoffsety=-1cm, angle=20, rotate=25]
{Note \\ offset and rotated}
% First column - second block
\block{Block titles with enough text will automatically obey spacing requirements }
{Text\\Text}
% First column - third block
\block{Sample Block 4}{T\\E\\S\\T}
% SECOND column
\column{0.4}
%Second column with first block's top edge aligned with with previous column's top.
% Second column - first block
\block[titleleft]{Smaller Column}{Test}
% Second column - second block
\block[titlewidthscale=0.6, bodywidthscale=0.8]
{Variable width title}{Block with smaller width.}
% Second column - third block
\block{}{Block with no title}
% Second column - A collection of blocks in subcolumn environment.
\begin{subcolumns}
\subcolumn{0.27} \block{1}{First block.} \block{2}{Second block}
\subcolumn{0.4} \block{Sub-columns}{Sample subblocks\\Second subcolumn}
\subcolumn{0.33} \block{4}{Fourth} \block{}{Final Subcolumn block}
\end{subcolumns}
% Bottomblock
\block{Final Block in column}{
Sample block.
}
\end{columns}
\block[titleleft, titleoffsetx=2em, titleoffsety=1em, bodyoffsetx=2em,%
bodyoffsety=-2cm, roundedcorners=10, linewidth=0mm, titlewidthscale=0.7,%
bodywidthscale=0.9, bodyverticalshift=2cm, titleright]
{Block outside of Columns}{Along with several options enabled}
\end{document}
\endinput- Stefan Kottwitz
- Site Admin
- Posts: 10397
- Joined: Mon Mar 10, 2008 9:44 pm
making a poster with latex
\title{\parbox{.5\textwidth}{This is a very very very very long title
that should be separated into multiple lines}}Stefan