-
Notifications
You must be signed in to change notification settings - Fork 8
/
cs.sty
20 lines (16 loc) · 1.01 KB
/
cs.sty
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
% this package is designed by: [email protected]
% more infor mation and update: https://github.com/thanhhungqb/thesis-template
% Package give useful functions to work with Computer Science students including:
% flowchart draw
% ...
\ProvidesPackage{cs}
\usepackage {tikz}
\usetikzlibrary{shapes.misc, shapes.geometric, positioning,automata,topaths, arrows}
\tikzset{
vertex/.style = {circle, fill = black, outer sep = 2pt, inner sep = 1pt,}
}
\tikzstyle{startstop} = [rectangle, rounded corners, minimum width=3cm, minimum height=1cm,text centered, draw=black, fill=red!30]
\tikzstyle{io} = [trapezium, trapezium left angle=70, trapezium right angle=110, minimum width=3cm, minimum height=1cm, text centered, draw=black, fill=blue!30]
\tikzstyle{process} = [rounded rectangle, minimum width=3cm, minimum height=1cm, text centered , draw=black] %, fill=orange!30]
\tikzstyle{decision} = [diamond, minimum width=3cm, minimum height=1cm, text centered, draw=black ] %, fill=green!30]
\tikzstyle{arrow} = [thick,->,>=stealth]