aboutsummaryrefslogtreecommitdiff
path: root/paper.tex
diff options
context:
space:
mode:
authorMohammad Akhlaghi <mohammad@akhlaghi.org>2020-06-04 17:15:23 +0100
committerMohammad Akhlaghi <mohammad@akhlaghi.org>2020-06-04 17:34:07 +0100
commit1637cce6617314de545dcb3b38f480f6a64c96e2 (patch)
tree0458085bd693cff71ecaf66fc903becd0df9b834 /paper.tex
parent6e26690be7b5f073105baaca088bbfb14d454f63 (diff)
Scale element in includegraphics for roughly similar-sized figures
Until now, when the figures were built directly from EPS ('\newcommand{\makepdf}{}' was commented), they would take the full line-width becoming a little too large! I noticed this after letting arXiv build the PDF. With this commit, the 'includetikz' tool takes a second argument to be a parameter given to 'includegraphics' (which is scale in this case).
Diffstat (limited to 'paper.tex')
-rw-r--r--paper.tex6
1 files changed, 3 insertions, 3 deletions
diff --git a/paper.tex b/paper.tex
index 2f3300a..5507292 100644
--- a/paper.tex
+++ b/paper.tex
@@ -282,8 +282,8 @@ Figure \ref{fig:datalineage} (bottom) is the data lineage graph that produced it
\begin{figure*}[t]
\begin{center}
- \includetikz{figure-tools-per-year}
- \includetikz{figure-data-lineage}
+ \includetikz{figure-tools-per-year}{width=0.95\linewidth}
+ \includetikz{figure-data-lineage}{width=0.85\linewidth}
\end{center}
\vspace{-3mm}
\caption{\label{fig:datalineage}
@@ -351,7 +351,7 @@ If changed, Make will \emph{only} re-execute the dependent recipe and all its de
This fast and cheap testing encourages experimentation (without necessarily knowing the implementation details, e.g., by co-authors or future readers), and ensures self-consistency.
\begin{figure*}[t]
- \begin{center} \includetikz{figure-branching}\end{center}
+ \begin{center} \includetikz{figure-branching}{scale=1}\end{center}
\vspace{-3mm}
\caption{\label{fig:branching} Maneage is a Git branch. Projects using Maneage are branched off it and apply their customizations.
(a) A hypothetical project's history prior to publication.