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
--[[-- | |
Use this file to specify User preferences. | |
Review [examples](+/Applications/ZeroBraneStudio.app/Contents/ZeroBraneStudio/cfg/user-sample.lua) or check [online documentation](http://studio.zerobrane.com/documentation.html) for details. | |
--]]-- | |
editor.fontsize = 14 | |
editor.usewrap = false | |
editor.tabwidth = 4 | |
editor.indentguide = true | |
editor.fold = true | |
editor.foldtype = 'arrow' |
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{standalone} | |
\usepackage{tikz} | |
\begin{document} | |
\tikzstyle{block} = [rectangle, draw, | |
text width=8em, text centered, rounded corners, minimum height=4em] | |
\tikzstyle{line} = [draw, -latex] | |
\begin{tikzpicture}[node distance = 6em, auto, thick] | |
\node [block] (Agent) {Agent}; |