This repository has been archived by the owner on Nov 20, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add more information on modularization
- Loading branch information
1 parent
cf11784
commit eb9e1fd
Showing
5 changed files
with
216 additions
and
14 deletions.
There are no files selected for viewing
This file contains 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
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
\documentclass[crop,tikz]{standalone} | ||
\usetikzlibrary{positioning,arrows,fit,calc} | ||
\pgfdeclarelayer{bg} | ||
\pgfsetlayers{bg,main} | ||
\tikzset{ | ||
>=stealth' | ||
} | ||
\begin{document} | ||
\begin{tikzpicture}[ | ||
node distance = 2mm, | ||
every node/.style = { | ||
font = \sffamily | ||
}, | ||
module/.style = { | ||
draw, | ||
text width = 3cm, | ||
align = center, | ||
} | ||
] | ||
|
||
\node[module] (jabref) {org.jabref}; | ||
\node[module, below = 35mm of jabref] (model) {org.jabref.model}; | ||
\node[module, below left = 15mm and 5mm of jabref] (logic) {org.jabref.logic}; | ||
\node[module, below left = 15mm and -20mm of logic, dashed] (test) {jabref-testutils}; | ||
|
||
\draw[->] (jabref) -- (logic); | ||
\draw[->] (jabref) -- (model); | ||
\draw[->] (logic) -- (model); | ||
\draw[->, dashed] (logic) -- (test); | ||
|
||
\end{tikzpicture} | ||
|
||
\end{document} |
This file contains 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