Add structure of material and content drafts on Git and RSE

This commit is contained in:
Benjamin Uekermann
2023-07-19 14:22:23 +02:00
parent 14a54f702a
commit 4e7e5d24db
15 changed files with 719 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View File

@@ -0,0 +1,22 @@
% build with: pdflatex --shell-escape fig.tex
\documentclass[tikz, convert={density=800}]{standalone}
\usepackage{tikz}
\definecolor{myBlue}{HTML}{42affa}
\begin{document}
\begin{tikzpicture}[>=latex, thick, shorten >=2pt, shorten <=2pt, ->, myBlue]
\tikzstyle{C}=[circle,fill=myBlue,text=white,minimum size=30pt,inner sep=2pt, font=\LARGE]
\tikzstyle{B}=[text=myBlue, font=\LARGE]
\node[C] at (0,1) (A) {\texttt{A}};
\node[C] at (3,1) (B) {\texttt{B}};
\node[C] at (6,1) (C) {\texttt{C}};
\draw [<-] (A) to (B);
\draw [<-] (B) to (C);
\node[B] at (-3,1) {\texttt{main}};
\end{tikzpicture}
\end{document}

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

View File

@@ -0,0 +1,34 @@
% build with: pdflatex --shell-escape fig.tex
\documentclass[tikz, convert={density=800}]{standalone}
\usepackage{tikz}
\definecolor{myOrange}{HTML}{ffa500}
\definecolor{myBlue}{HTML}{42affa}
\begin{document}
\begin{tikzpicture}[>=latex, thick, shorten >=2pt, shorten <=2pt, ->, myBlue]
\tikzstyle{C}=[circle,fill=myBlue,text=white,minimum size=30pt,inner sep=2pt, font=\LARGE]
\tikzstyle{M}=[circle,fill=myOrange,text=white,minimum size=30pt,inner sep=2pt, font=\LARGE]
\tikzstyle{B}=[text=myBlue, font=\LARGE]
\node[C] at (0,3) (A) {\texttt{A}};
\node[C] at (3,3) (B) {\texttt{B}};
\node[C] at (6,3) (C) {\texttt{C}};
\node[C] at (3,1) (D) {\texttt{D}};
\node[C] at (6,1) (E) {\texttt{E}};
\node[M] at (9,3) (M) {\texttt{M}};
\draw [<-] (A) to (B);
\draw [<-] (B) to (C);
\draw [<-] (A) to (D);
\draw [<-] (D) to (E);
\draw [<-, myOrange] (C) to (M);
\draw [<-, myOrange] (E) to (M);
\node[B] at (-3,3) {\texttt{main}};
\node[B] at (-3,1) {\texttt{feature}};
\end{tikzpicture}
\end{document}

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

View File

@@ -0,0 +1,30 @@
% build with: pdflatex --shell-escape fig.tex
\documentclass[tikz, convert={density=800}]{standalone}
\usepackage{tikz}
\definecolor{myOrange}{HTML}{ffa500}
\definecolor{myBlue}{HTML}{42affa}
\begin{document}
\begin{tikzpicture}[>=latex, thick, shorten >=2pt, shorten <=2pt, ->, myBlue]
\tikzstyle{C}=[circle,fill=myBlue,text=white,minimum size=30pt,inner sep=2pt, font=\LARGE]
\tikzstyle{M}=[circle,fill=myOrange,text=white,minimum size=30pt,inner sep=2pt, font=\LARGE]
\tikzstyle{B}=[text=myBlue, font=\LARGE]
\node[C] at (0,3) (A) {\texttt{A}};
\node[C] at (3,3) (B) {\texttt{B}};
\node[C] at (6,3) (C) {\texttt{C}};
\node[C] at (9,1) (D) {\texttt{D'}};
\node[C] at (12,1) (E) {\texttt{E'}};
\draw [<-] (A) to (B);
\draw [<-] (B) to (C);
\draw [<-] (C) to (D);
\draw [<-] (D) to (E);
\node[B] at (-3,3) {\texttt{main}};
\node[B] at (-3,1) {\texttt{feature}};
\end{tikzpicture}
\end{document}