aboutsummaryrefslogtreecommitdiff
path: root/tex/src/preamble-style.tex
diff options
context:
space:
mode:
authorMohammad Akhlaghi <mohammad@akhlaghi.org>2020-03-02 02:55:00 +0000
committerMohammad Akhlaghi <mohammad@akhlaghi.org>2020-03-02 02:55:00 +0000
commite9c81f9f40187bc4701ac539d110003e92b9ca69 (patch)
treee3929f2a116cf1bc790eaf88883e0315ef0ffa6c /tex/src/preamble-style.tex
parentf51082b27e47e552658000689161c150d9c9a70e (diff)
Described the first analysis phase with a demo subMakefile
Until now, there was no explanation on an actual analysis phase, therefore with this commit an example scenario with a readable Makefile is included. The Data lineage graph was also simplified to both be more readable, and also to correspond to this new explanation and subMakefile. Some random edits/typos were also corrected and some references added for discussion.
Diffstat (limited to 'tex/src/preamble-style.tex')
-rw-r--r--tex/src/preamble-style.tex11
1 files changed, 8 insertions, 3 deletions
diff --git a/tex/src/preamble-style.tex b/tex/src/preamble-style.tex
index 9556f54..e20c73c 100644
--- a/tex/src/preamble-style.tex
+++ b/tex/src/preamble-style.tex
@@ -135,11 +135,16 @@
\renewcommand\footrulewidth{0.0pt}
}
+%% For creating color boxes
+\usepackage[many]{tcolorbox}
+
%% Custom macros
\newcommand{\inlinecode}[1]{\textcolor{blue!35!black}{\texttt{#1}}}
%% Example Makefile macros
-\newcommand{\mkcomment}[1]{\textcolor{red!35!white}{#1}}
+\newcommand{\mkcomment}[1]{\textcolor{red!70!white}{\# #1}}
+\newcommand{\mkvar}[1]{\textcolor{orange!40!black}{#1}}
\newcommand{\mktarget}[1]{\textcolor{blue!40!black}{#1}}
-\newcommand{\mkprereq}[1]{\textcolor{green!30!black}{#1}}
-\newcommand{\mktab}[1]{\textcolor{black!25!white}{\_\_\_TAB\_\_\_}}
+\newcommand{\mkprog}[1]{\textcolor{green!30!black}{#1}}
+\newcommand{\mktab}[1]{\textcolor{black!30!white}{\_\_\_TAB\_\_\_}}
+\newcommand{\recipecomment}[1]{{ }{ }{ }{ }{ }{ }{ }{ }{ }\mkcomment{#1}}