Created
April 29, 2013 16:46
-
-
Save iliaaw/5482899 to your computer and use it in GitHub Desktop.
Latex template for schemes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\documentclass{article} | |
\usepackage{tikz} | |
\usetikzlibrary{positioning,arrows,shapes,shadows} | |
\begin{document} | |
\tikzstyle{node} = [ | |
rectangle, | |
thick, | |
minimum size=1cm, | |
draw=blue!50!black!50, | |
top color=white, | |
bottom color=blue!50!black!20, | |
drop shadow, | |
rounded corners=.8ex | |
] | |
\tikzstyle{arrow} = [ | |
>=triangle 45 | |
] | |
\tikzstyle{header} = [ | |
font=\sffamily\large | |
] | |
\tikzstyle{frame} = [ | |
thick, | |
rounded corners, | |
draw=black!, | |
dashed | |
] | |
\begin{tikzpicture}[auto,font=\sffamily] | |
\end{tikzpicture} | |
\end{document} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment