Graphics, Figures & TablesFormatting for a Poster

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
LavaTyper
Posts: 69
Joined: Sat Feb 11, 2012 2:38 am

Formatting for a Poster

Post by LavaTyper »

Greetings,

I'm trying to learn how to make posters for myself. I am learning this one step at a time, so I expect to have more questions about my project in the future.


Anyway, I am starting with a borderless square document and am learning how to construct modules using tikz. However, I may consider changing the page dimensions later.

How do I
  1. get the right-most edge of the module to not run off to the right edge of the page,
  2. make the bottom corners of the modules square instead of rounded, and
  3. create independent columns in which I can add and shuffle modules around?

Code: Select all

\documentclass{extreport}
\usepackage{array}
%\usepackage{wallpaper}
%\CenterWallPaper{1.02}{background2} % Can't use a PDF
\usepackage[
  paperwidth=12.0in,
  paperheight=12.0in,
  margin=0.0in
]{geometry}


\usepackage{tikz}
\usepackage{arev}
%\usetikzlibrary{shapes,snakes}
\usepackage{amsmath,amssymb}

\linespread{1.1}
\parskip=0\baselineskip
\parindent=0pt
\pagestyle{empty}

\definecolor{bordercol1}{rgb}{0.2, 0.2, 0.2}

\begin{document}
% Define box and box title style
\tikzstyle{posterbox}=[
  draw=bordercol1,
  fill=blue!25,
  very thick,
  rectangle,
  rounded corners=12pt,
  inner xsep=0pt,
  inner ysep=20pt
%  outer sep=0pt,
]
\tikzstyle{fancytitle}=[fill=red,text=white]

\begin{tikzpicture}
  \node[posterbox] (box){
    \begin{minipage}{\textwidth}
      Consider the set of equations:
      \begin{align}
        \dot{a} &= x\cos\psi -y\sin\psi, \\
        \dot{b} &= x\sin\psi + y\cos\psi.
      \end{align}

      We also consider the following linear combination:
      \begin{equation}
        X = \frac{1}{\sqrt{2}}Y + \frac{1}{\sqrt{2}}Z
      \end{equation}
    \end{minipage}
  };

% Title must be placed after box has been defined
    \node[fancytitle, right=10pt] at (box.north west) {Equation Review};
  \end{tikzpicture}
\end{document}

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Formatting for a Poster

Post by Johannes_B »

Just as a hint: There is also package beamerposter.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
LavaTyper
Posts: 69
Joined: Sat Feb 11, 2012 2:38 am

Re: Formatting for a Poster

Post by LavaTyper »

I don't see a manual for it and I'm trying to modify elements of other people's posters (which use beamer) but I'm struggling substantially to understand the syntax, so I have no idea what I am doing and am therefore stuck with the same themes. (I can only find a few...)
hugovdberg
Posts: 133
Joined: Sat Feb 25, 2012 6:12 pm

Formatting for a Poster

Post by hugovdberg »

Documentation specifically for beamerposter is scarce, I admit, but since it uses the beamerclass most of the features are actually described in the beamer manual. The beamerposter specifics are best learned by looking at other people's posters. Most of the time you simply create a single frame that fills the entire poster and you use the methods as described in the beamer manual to layout your poster using blocks and multicolumn environments.

http://www-i6.informatik.rwth-aachen.de ... poster.php
https://www.sharelatex.com/templates/pr ... ce_poster/

Alternatives to beamerposter are a0poster (which is actually used by beamerposter) and baposter (http://www.brian-amberg.de/uni/poster/)
Ubuntu 13.10 + Tex Live 2013 + Texmaker / Windows 7 Pro + MikTex 2.9 + TexnicCenter / Android 4.3 + TexPortal + DroidEdit
mas
Posts: 226
Joined: Thu Dec 04, 2008 4:39 am

Formatting for a Poster

Post by mas »

There is also the tikzposter package. Take a look at TikZPoster for examples to work with.

OS: Debian/GNU Linux; LaTeX System : TeXLive; Editor : Vim
hugovdberg
Posts: 133
Joined: Sat Feb 25, 2012 6:12 pm

Formatting for a Poster

Post by hugovdberg »

If you still want to go the way you already started, we should perhaps also address your original questions, instead of only pointing at other methods. This might still be useful if you would want to create a figure with blocks on your poster.

The rounded corners are probably better done by defining a new shape than by adding rounded corners to a rectangle since that is fixed to all corners. An example of defining a shape with different rounded corners can be found on tex.se, for more fine-tuning or to remove the bottom rounding altogether I kindly refer you to section 71.12 of the pgf manual.

To get multiple you might want to take a look at pgf matrices (section 17 of the aforementioned manual).
Ubuntu 13.10 + Tex Live 2013 + Texmaker / Windows 7 Pro + MikTex 2.9 + TexnicCenter / Android 4.3 + TexPortal + DroidEdit
LavaTyper
Posts: 69
Joined: Sat Feb 11, 2012 2:38 am

Formatting for a Poster

Post by LavaTyper »

mas wrote:There is also the tikzposter package. Take a look at TikZPoster for examples to work with.
I like the "Envelope" design, but it doesn't work.

Edit: Found something that looks nice here:

http://tex.stackexchange.com/questions/ ... r-template

This may be easier to edit for the short term.
Post Reply