Easy to follow LaTeX tutorial on layout?

Posted by lexu on Stack Overflow See other posts from Stack Overflow or by lexu
Published on 2010-04-25T09:07:52Z Indexed on 2010/04/25 9:13 UTC
Read the original article Hit count: 343

Filed under:
|
|

I want to layout a page using LaTeX and distribute text snippets/blocks in predefined locations.

Something like this

+--------------------------------------------------------+
| +-------------+                                        |
| |bla  bla  bla|                                        |
| |bla bl ab lab|  +-------------+                       |
| |bla  bla  bla|  |bla  bla  bla|                       |    
| |bla bl ab lab|  |bla bl ab lab|                       |
| +-------------+  |bla  bla  bla|                       |
|                  |bla bl ab lab|                       |
|                  +-------------+          +----+       |
|                                           |more|       |
|    Ich und Du                             |text|       |
|    Müllers Kuh                            +----+       |
|                                                        |
+--------------------------------------------------------+

My guess is that I should go about this using a minipage or using boxes like

\begin{minipage}[b][2cm]{8cm}
    \mbox{more} \newline
    \mbox{text} \newline
\end{minipage}

Is there a tutorial or a 'how to' page that you know, that shows me how to do this - not a list all LaTeX idioms, I have some books for that. But my books are more focused on command lists, scientific publishing and math ..

© Stack Overflow or respective owner

Related posts about latex

Related posts about layout