Skip to content

Instantly share code, notes, and snippets.

@redVi
Last active August 29, 2015 13:58
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save redVi/10005075 to your computer and use it in GitHub Desktop.
Save redVi/10005075 to your computer and use it in GitHub Desktop.
English verbs. Mind map.
\documentclass[a4paper]{article}
\usepackage[russian]{babel}
\usepackage[utf8]{inputenc} % UTF-8
\usepackage{tikz} % include TikZ
\usetikzlibrary{mindmap, trees, shadows} % TikZ library
\usepackage{verbatim}
\usepackage[left=2cm,right=2cm,
top=2cm,bottom=2cm,bindingoffset=0cm]{geometry}
\usepackage{color} % you may define RGB colors
\usepackage{graphicx}
\begin{document} % begin document
\pagestyle{empty}
% Set RGB Colors
\definecolor{Red}{RGB}{153,0,0}
\definecolor{RedLight}{RGB}{255,0,0}
\tikzset {
every node/.style=concept,
every node/.append style={text=white, drop shadow={opacity=0.7}},
root concept/.append style={concept color=black, fill=white, line width=1ex, text=black, font=\itshape},
level 1 concept/.append style={level distance=120,sibling angle=150},
level 2 concept/.append style={level distance=100,sibling angle=50},
level 3 concept/.append style={level distance=80,sibling angle=30},
}
\begin{comment}
:Title: English verbs
:Tags: Mindmap
| Author: redVi
\end{comment}
\begin{tikzpicture} % begin TikZ
\path[mindmap,
grow cyclic,
concept color=black!90,text=white] % color
node[root concept] {VERBS}
% Indefinite
% 1 level
child[concept color=Red] {
node[concept] {\underline{Simple}}
% 2 level
child [concept color=red!70!black] {
node[concept] {
\underline{Present} \\ V/V(es)}
% 3 level
child [concept color=blue!60!white] { node[concept] {regular action} }
child [concept] { node[concept] {work} }
}
% 2 level
child [concept color=red!80!black] {
node[concept] {\underline{Past} \\ V(ed)/V2}
child [concept color=blue!60!white]{
node [concept ] {action in the past}
}
child [concept]{ node [concept] {workED}}}
child [concept color=red!90!black] {
node[concept] {\underline{Future} \\ Will + V}
child [concept] {
node[concept]{WILL work}}
}
}
% Continuous
child[concept color=orange] {
node[concept] {\underline{Progressive} \\ be + V(ing)}
child [concept color=orange!90!white] { node[concept] {\underline{Present}}
child [concept color=blue!60!white] {
node [concept] {NOW!}
}
child [concept] {
node [concept] {workING}
}
}
child [concept color=orange!80!black]{ node[concept] {\underline{Past} \\ was/were + V(ing)}
child[concept color=blue!60!white]{ node [concept]{action in time }}
child[concept]{ node [concept] {working when... }}}
child [concept color=orange!90!black] { node[concept] {\underline{Future} \\ Will be + V(ing)}
child[concept color=blue!60!white]{ node[concept]{action in the time}}
child[concept]{ node[concept]{WILL BE cookING when}}
}
}
% Perfect
child[concept color=green!50!black] { node[concept] {\underline{Perfect} \\ have/has + V(ed)/V3}
child[concept color=blue!60!white] { node[concept]{action before action}
child[concept color=green!40!black]{ node[concept]{WILL HAVE worked}}
child[concept color=green!40!black]{ node[concept]{HAD worked}}
}
}
% Perfect Progressive
child[concept color=violet!60!white] {
node[concept] {\underline{Perfect Prog.}\\ have/has been + V(ed)/V3}
child [concept color=blue!60!white]{
node[concept] {process is continued (some time)}
child[concept color=violet!50!white] { node[concept] {had/has BEEN workING} }
child[concept color=violet!50!white] { node[concept] {WILL have BEEN workING} }
}
};
\end{tikzpicture} % end TikZ
\end{document} % end document
@redVi
Copy link
Author

redVi commented Apr 6, 2014

Example: devianart

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment