-
Book Overview & Buying
-
Table Of Contents
-
Feedback & Rating

LaTeX Cookbook
By :

We have seen informational or scientific posters at conferences or on the walls of universities or institutes. They mostly have certain characteristics in common:
In consequence, we get some requirements for typesetting:
In this recipe, we will create a poster of A0 size in landscape orientation. It will show some blocks containing the dummy text as a placeholder, math, and images. As sample images, we will take a flowchart from Chapter 9, Creating Graphics, and a plot from Chapter 10, Advanced Mathematics. There, you can find the source code. You can later replace the dummy text and other parts with your own content.
We will use the tikzposter
class. The document is structured in columns and blocks. Follow these steps:
document
class. A0 is the default paper size. We state landscape orientation as the option:\documentclass[landscape]{tikzposter}
Wave
theme:\usetheme{Wave}
lipsum
package to generate the dummy text:\usepackage{lipsum}
multicol
package. On account of the large paper, we set the column separation and the separation line width to high values:\usepackage{multicol} \setlength{\columnsep}{4cm} \setlength{\columnseprule}{1mm}
\newcommand*{\image}[2][]{% \begin{tikzfigure}[#1] \includegraphics[width=\linewidth]{#2} \end{tikzfigure}}
\begin{document}
\title{\LaTeX\ in Use} \author{John Doe} \maketitle
\begin{columns}
\column{.65}
Workflow
in the first argument; the second argument containing dummy text and an image:\block{Workflow}{ \lipsum[1] \image[\LaTeX\ workflow]{flowchart} }
\begin{subcolumns}
\subcolumn{.5}
\block{Mathematics}{ Take a coffee, then: \bigskip \coloredbox{\begin{itemize} \item State \item Proof \item Write in \LaTeX \end{itemize}} \bigskip \innerblock{Integral approximation}{ \[ \int_a^b f(x) dx \approx (b-a) \sum_{i=0}^n w_i f(x_i) \] } }
\note[targetoffsetx = 4.5cm, targetoffsety = -5cm, angle = -30, connection]{Weight function}
subcolumns
environment:\subcolumn{.5} \block{Text}{\lipsum[1]} \end{subcolumns}
column
environment, make another column, print a block with an image and some text, and then end the columns
environment:\column{.35} \block{Plotting functions}{ \image{plot} \lipsum[4] } \end{columns}
multicol
package. We divide the text itself into columns using a multicolumn
environment with four columns:\block{Conclusion and outlook}{ \begin{multicols}{4} \lipsum[10-11] \end{multicols} }
\end{document}
The tikzposter
package supports large paper sizes, large fonts, and it takes care of block heights and spacing between columns. We, as users, just decided the relative column width.
Several class options are provided. You can add them to the \documentclass
command like we did with the preceding landscape
option. Let's take a look at the following:
a0paper
, a1paper
, or a2paper
options. The a0paper
option is the default.12pt
, 14pt
, 17pt
, 20pt
, and 25pt
. The last one is the default.landscape
or portrait
command. The portrait
option is the default.fleqn
for flush left equations is supported.leqno
for numbering the equation at the left-hand side is also supported.You can adjust several lengths using different options. Give them as class options in the key=value
form with a measurement unit such as mm or cm:
margin
: This is the distance between the edge of the poster area and the edge of the paperinnermargin
: This is the distance from the outermost edge of the blocks to the edge of the postercolspace
: This is the horizontal distance between consecutive columnssubcolspace
: This is the horizontal distance between consecutive columns in a subcolumn environmentblockverticalspace
: This is the distance between the bottom of a block and the top of the next blockA sample call using the defaults will be as follows:
\documentclass[a0paper, portrait, 25pt, margin=0mm, innermargin=15mm, colspace=15mm, subcolspace=8mm, blockverticalspace=15mm]{tikzposter}
The tikzposter
package makes use of the very capable graphics language TikZ. We will see more of TikZ in Chapter 9, Creating Graphics. For now, the main benefit is that tikzposter
provides a lot of predefined styles and color schemes.
You can use a main layout style by using the \usetheme{name}
command. When this book came out, there were nine themes available:
Wave
: This can be seen in our preceding recipeDefault
(left) and Basic
(right): This is shown in the following image:Rays
(left) and Simple
(right), as shown in the following image:Envelope
(left) and Board
(right), as shown in the following image:Autumn
(left) and Desert
(right), as shown in the following image:Furthermore, there are predefined styles for color, title, background, notes, blocks, and inner blocks, which can be chosen and composed. There's support for creating further styles.
The commands, which you have seen previously, can be used without support options straight away. However, they can be customized using several options.
The full reference is available by typing the texdoc tikzposter
command in Command Prompt, and online at http://texdoc.net/pkg/tikzposter. You can find a style guide, a feature guide, and much more at https://bitbucket.org/surmann/tikzposter/downloads.
One of the first poster classes is a0poster
. It actually supports the paper sizes A0, A1, A2, and A3. It provides font sizes from 12 pt up to 107 pt. Math formulas are printed in a suitable size. There's no specific support for graphics, color, or text placement. For this, you would need additional packages, such as TikZ.
In the recipe Creating a presentation, you saw the beamer
package as a presentation class. The beamerposter
package can be used together with it to produce presentations in poster size. It combines the beamer
package with the a0poster
code. So, you can produce large posters with a wide range of font sizes together with the beamer
package's color and graphics capabilities, such as the beamer
boxes with titles.
As mentioned previously, you can use the texdoc
command or the Internet site http://texdoc.net to access the documentation of the aforementioned classes and packages.
Another solution is provided by the baposter
template. It provides blocks with headings and positioning support. Furthermore, it offers a set of predefined styles. Its download and documentation are available at http://www.brian-amberg.de/uni/poster/.
Change the font size
Change margin width
Change background colour