October 2015
Intermediate to advanced
378 pages
7h 44m
English
A very common type of hierarchical graph is a tree. Tree nodes have children. These are connected by edges and are usually displayed in rows when growing down, or in columns when growing horizontally.
We will draw a tree presenting possible math formula layouts.
We will use basic TikZ, without any extra package. Follow these steps:
\documentclass{article}tikz package:\usepackage{tikz}\begin{document}\begin{tikzpicture}[sibling distance=10em,
every node/.style = {shape=rectangle, rounded corners,
draw, align=center,
top color=white, bottom color=blue!20}]] \node {Formulas} ...Read now
Unlock full access