Page Layout ⇒ Nested framed Box with Math Formulae and Symbols
-
- Posts: 1
- Joined: Wed Sep 14, 2011 5:53 am
Nested framed Box with Math Formulae and Symbols
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
Nested framed Box with Math Formulae and Symbols
http://en.wikibooks.org/wiki/LaTeX/Advanced_Topics
See this:
Code: Select all
\documentclass{article}
\usepackage{lineno}
\usepackage{framed}
\begin{document}
\linenumbers
Text.
\begin{framed}
Text.
\begin{framed}
Text 2.
\begin{framed}
\[ \begin{array}{ll}
x & y \\
z & \zeta
\end{array} \]
\end{framed}
\end{framed}
\begin{framed}
Text last.
\end{framed}
\end{framed}
\framebox[9cm][l]{Some text.
\framebox[7cm][l]{More text.
\framebox[4cm][l]{Even more text}
}}
More text.
\end{document}