Przeglądaj źródła

Add graphics folder as job trigger

tags/0.2.2-analysis
Wouter Horlings 5 lat temu
rodzic
commit
f1692dab58
6 zmienionych plików z 27 dodań i 14 usunięć
  1. +1
    -0
      .gitlab-ci.yml
  2. +1
    -1
      Makefile
  3. +1
    -1
      graphics/design_flow.tex
  4. +11
    -6
      graphics/feature_dependency.tex
  5. +1
    -1
      graphics/test_flow_graph.tex
  6. +12
    -5
      graphics/waterfall.tex

+ 1
- 0
.gitlab-ci.yml Wyświetl plik

@@ -29,6 +29,7 @@ final_report:
- include/references.bib
- report.tex
- content/*.tex
- graphics/*.tex

rro:
stage: rro


+ 1
- 1
Makefile Wyświetl plik

@@ -28,7 +28,7 @@ $(TARGET): $(SOURCE) $(GRPH_TARGET) $(CONTENT_SOURCE)
$(LATEXMK) $(LATEXMK_OPTS) $(LATEXMK_TARGET) $<

$(GRPH_DIR)/%.pdf: $(GRPH_DIR)/%.tex
$(LATEXMK) -lualatex -outdir=$(GRPH_DIR) $(LATEXMK_OPTS) $<
$(LATEXMK) $(LATEXMK_TARGET) -outdir=$(GRPH_DIR) $(LATEXMK_OPTS) $<

.PHONY: clean Clean
clean:


+ 1
- 1
graphics/design_flow.tex Wyświetl plik

@@ -11,7 +11,7 @@ draw=black!50, thick, font=\footnotesize, fill=white},
\draw[fill=lightgray] (-1.7cm , 0.5cm) rectangle (5cm, -2.8cm);
\draw[fill=lightgray] (-1.7cm,-3cm) rectangle (5cm, -7.2cm);
\node (pd) {Problem Description};
\node (sp)[below=1 of pd] {System\\Requirements};
\node (sp)[below=1 of pd] {Specifications};
\node (id)[below=1 of sp] {Initial Design};
\node (fs)[below=1 of id] {Feature Definition};
\node (ss)[below=1 of fs] {Feature Selection};


+ 11
- 6
graphics/feature_dependency.tex Wyświetl plik

@@ -1,16 +1,21 @@
\documentclass{standalone}
\usepackage{tikz}
\usetikzlibrary {arrows.meta,graphs,graphdrawing} \usegdlibrary {layered}
\usepackage{siltex}
\usetikzlibrary {arrows.meta,positioning}
\tikzset{nodes={text height=.7em, text width=1.2cm, align=center,
draw=black!50, thick, font=\footnotesize, fill=white},
>={Stealth[round,sep]}, rounded corners, semithick}

\begin{document}
\begin{tikzpicture}
\graph [layered layout, level distance=1.2cm, sibling sep=.5em, sibling distance=1.5cm, sweep crossing minimization] {
"Feat. A" -> {"Feat. B", "Feat. C"};
"Feat. D" ->[edges=white!99] "Feat. C" -> "Feat. E";
};
\begin{tikzpicture}[on grid, y = 1.5cm, x = 1.8cm]
\node (a) {Feature A};
\node (d) [right = 1 of a]{Feature D};
\node (b) [below = 1 of a]{Feature B};
\node (c) [below = 1 of d]{Feature C};
\node (e) [below = 1 of c]{Feature E};
\path[->] (a) edge (b)
(a) edge (c)
(c) edge (e);
\end{tikzpicture}
\end{document}


+ 1
- 1
graphics/test_flow_graph.tex Wyświetl plik

@@ -1,6 +1,6 @@
%&tex
\documentclass{standalone}
%\usepackage[]{siltex}
\usepackage{siltex}
\usepackage{tikz}
\usetikzlibrary {arrows.meta,graphs,positioning,shapes.geometric}
\tikzset{nodes={text height=.7em, text width=1.7cm, align=center,


+ 12
- 5
graphics/waterfall.tex Wyświetl plik

@@ -1,16 +1,23 @@
\documentclass{standalone}
\usepackage{tikz}
\usetikzlibrary {arrows.meta,graphs,graphdrawing} \usegdlibrary {layered}
\usepackage{siltex}
\usetikzlibrary {arrows.meta,positioning}
\tikzset{nodes={text height=.7em, text width=2.8cm, align=center,
draw=black!50, thick, font=\footnotesize, fill=white},
>={Stealth[round,sep]}, rounded corners, semithick}

\begin{document}

\begin{tikzpicture}
\graph [layered layout, level distance=1.2cm, sibling sep=.5em, sibling distance=1.5cm, sweep crossing minimization] {
pd [as=Problem Description] -> "Specifications" -> "Initial Design" -> "Implementation" -> "Testing";
};
\begin{tikzpicture}[on grid,y=1.2cm,x=3.2cm]
\node (pd) {Problem Description};
\node (sp)[below=1 of pd] {Specifications};
\node (id)[below=1 of sp] {Initial Design};
\node (im)[below=1 of id] {Implementation};
\node (te)[below=1 of im] {Testing};
\path[->] (pd) edge (sp)
(sp) edge (id)
(id) edge (im)
(im) edge (te);
\end{tikzpicture}
\end{document}


Ładowanie…
Anuluj
Zapisz