wip before and after

main
Motiejus Jakštys 2021-05-27 08:32:39 +03:00 committed by Motiejus Jakštys
parent 88ae217f82
commit b1601b3a66
2 changed files with 34 additions and 3 deletions

View File

@ -19,7 +19,9 @@ FIGURES = \
inflection-1-gentle-inflection-after \
fig6-selfcrossing \
selfcrossing-1 \
isolated-1-exaggerated
isolated-1-exaggerated \
isolated-1-before \
isolated-1-after
RIVERS = \
salvis-25k \
@ -102,6 +104,14 @@ isolated-1-exaggerated_1SELECT = wm_debug where name='isolated-1' AND stage='afi
isolated-1-exaggerated_2SELECT = wm_debug where name='isolated-1' AND stage='afigures' AND gen=1
isolated-1-exaggerated_1COLOR = orange
isolated-1-before_1SELECT = wm_debug where name='isolated-1' AND stage='afigures' AND gen=1
isolated-1-before_2SELECT = wm_debug where name='isolated-1' AND stage='afigures' AND gen=2
isolated-1-before_2LINESTYLE = invisible
isolated-1-before_WIDTHDIV = 2
isolated-1-after_1SELECT = wm_debug where name='isolated-1' AND stage='afigures' AND gen=2
isolated-1-after_1COLOR = orange
isolated-1-after_WIDTHDIV = 2
################################################################################
# 250K
################################################################################
@ -306,7 +316,7 @@ vars.inc.tex: vars.awk wm.sql Makefile
slides-2021-03-29.pdf: slides-2021-03-29.txt
pandoc -t beamer -i $< -o $@
slides-2021-06-02.pdf: slides-2021-06-02.tex
slides-2021-06-02.pdf: slides-2021-06-02.tex isolated-1-before.pdf isolated-1-after.pdf
latexmk -pdf $<
dump-debug_wm.sql.xz:

View File

@ -154,7 +154,7 @@
\item Algoritmas implementuotas funkcija \textsc{st\_simplifywm}.
\item Priima vieną parametrą: \textsc{dhalfcircle}: pusskritulio
plotas: analogiško ir didesnio ploto linkių nepaprastina.
skersmuo: analogiško ir didesnio ploto linkių nepaprastina.
\item Pagalbinės funkcijos:
\begin{itemize}
@ -219,6 +219,27 @@
\end{frame}
\begin{frame}{Automatiniai testai}
\tikzset{
arrow/.style={thick,->,>=stealth},
}
\begin{figure}
\begin{tikzpicture}[auto]
\onslide<1->{
\node (before) []{
\includegraphics[width=.4\textwidth]{isolated-1-before.pdf}
};
}
\onslide<2->{
\node(after) [right=2cm of before.east]{
\includegraphics[width=.4\textwidth]{isolated-1-after.pdf}
};
}
\onslide<3->{
\draw[arrow] (before) -- node[anchor=south] {\footnotesize Programa} (after);
}
\end{tikzpicture}
\end{figure}
\end{frame}