Finish presentation
This commit is contained in:
parent
007ab6f95c
commit
defefecf95
34
gnuplot/t-h-pres.epslatex.gpi
Normal file
34
gnuplot/t-h-pres.epslatex.gpi
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
# Inspired by http://youinfinitesnake.blogspot.ch/2011/02/attractive-scientific-plots-with.html
|
||||||
|
# and http://www.gnuplotting.org/why-you-should-upgrade-to-gnuplot-4-4-3/
|
||||||
|
|
||||||
|
set terminal epslatex size 4.6,2.9 color colortext 'phv,9' header '\definecolor{t}{rgb}{0.5,0.5,0.5}'
|
||||||
|
set format '\color{t}$%g$'
|
||||||
|
|
||||||
|
set output 't-h-pres.tex'
|
||||||
|
|
||||||
|
# define axis
|
||||||
|
# remove border on top and right and set color to gray
|
||||||
|
set style line 11 lc rgb '#808080' lt 1
|
||||||
|
set border 3 back ls 11
|
||||||
|
set tics nomirror
|
||||||
|
# define grid
|
||||||
|
set style line 12 lc rgb '#808080' lt 0 lw 1
|
||||||
|
set grid back ls 12
|
||||||
|
|
||||||
|
set style line 1 linetype 1
|
||||||
|
set style line 2 linetype 1
|
||||||
|
set style line 1 linetype rgb '#A00000' linewidth 2 pointtype 7
|
||||||
|
set style line 2 linetype rgb '#00A000' linewidth 2 pointtype 9
|
||||||
|
|
||||||
|
set size 1,1
|
||||||
|
set origin 0,0
|
||||||
|
|
||||||
|
set xlabel 'Température'
|
||||||
|
set ylabel 'Humidité'
|
||||||
|
|
||||||
|
plot 'T-H.TSV' using 3:6:1 title 'Hr [\%]' with points linestyle 1, \
|
||||||
|
'T-H.TSV' using 3:6:1 title 'Hr moyen [\%]' smooth unique with linespoints linestyle 2
|
||||||
|
|
||||||
|
reset
|
||||||
|
|
||||||
|
set output
|
@ -123,3 +123,9 @@
|
|||||||
url = "https://en.wikipedia.org/wiki/USB",
|
url = "https://en.wikipedia.org/wiki/USB",
|
||||||
keywords = "pres"
|
keywords = "pres"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@misc{my-website,
|
||||||
|
title = "TM - N4th4's projects",
|
||||||
|
url = "https://projects.lib42.so/projects/tm",
|
||||||
|
keywords = "my-website"
|
||||||
|
}
|
||||||
|
11839
latex/data/3/t-h-pres.eps
Normal file
11839
latex/data/3/t-h-pres.eps
Normal file
File diff suppressed because it is too large
Load Diff
126
latex/data/3/t-h-pres.tex
Normal file
126
latex/data/3/t-h-pres.tex
Normal file
@ -0,0 +1,126 @@
|
|||||||
|
% GNUPLOT: LaTeX picture with Postscript
|
||||||
|
\begingroup
|
||||||
|
\fontfamily{phv}%
|
||||||
|
\selectfont
|
||||||
|
\definecolor{t}{rgb}{0.5,0.5,0.5}
|
||||||
|
\makeatletter
|
||||||
|
\providecommand\color[2][]{%
|
||||||
|
\GenericError{(gnuplot) \space\space\space\@spaces}{%
|
||||||
|
Package color not loaded in conjunction with
|
||||||
|
terminal option `colourtext'%
|
||||||
|
}{See the gnuplot documentation for explanation.%
|
||||||
|
}{Either use 'blacktext' in gnuplot or load the package
|
||||||
|
color.sty in LaTeX.}%
|
||||||
|
\renewcommand\color[2][]{}%
|
||||||
|
}%
|
||||||
|
\providecommand\includegraphics[2][]{%
|
||||||
|
\GenericError{(gnuplot) \space\space\space\@spaces}{%
|
||||||
|
Package graphicx or graphics not loaded%
|
||||||
|
}{See the gnuplot documentation for explanation.%
|
||||||
|
}{The gnuplot epslatex terminal needs graphicx.sty or graphics.sty.}%
|
||||||
|
\renewcommand\includegraphics[2][]{}%
|
||||||
|
}%
|
||||||
|
\providecommand\rotatebox[2]{#2}%
|
||||||
|
\@ifundefined{ifGPcolor}{%
|
||||||
|
\newif\ifGPcolor
|
||||||
|
\GPcolortrue
|
||||||
|
}{}%
|
||||||
|
\@ifundefined{ifGPblacktext}{%
|
||||||
|
\newif\ifGPblacktext
|
||||||
|
\GPblacktextfalse
|
||||||
|
}{}%
|
||||||
|
% define a \g@addto@macro without @ in the name:
|
||||||
|
\let\gplgaddtomacro\g@addto@macro
|
||||||
|
% define empty templates for all commands taking text:
|
||||||
|
\gdef\gplbacktext{}%
|
||||||
|
\gdef\gplfronttext{}%
|
||||||
|
\makeatother
|
||||||
|
\ifGPblacktext
|
||||||
|
% no textcolor at all
|
||||||
|
\def\colorrgb#1{}%
|
||||||
|
\def\colorgray#1{}%
|
||||||
|
\else
|
||||||
|
% gray or color?
|
||||||
|
\ifGPcolor
|
||||||
|
\def\colorrgb#1{\color[rgb]{#1}}%
|
||||||
|
\def\colorgray#1{\color[gray]{#1}}%
|
||||||
|
\expandafter\def\csname LTw\endcsname{\color{white}}%
|
||||||
|
\expandafter\def\csname LTb\endcsname{\color{black}}%
|
||||||
|
\expandafter\def\csname LTa\endcsname{\color{black}}%
|
||||||
|
\expandafter\def\csname LT0\endcsname{\color[rgb]{1,0,0}}%
|
||||||
|
\expandafter\def\csname LT1\endcsname{\color[rgb]{0,1,0}}%
|
||||||
|
\expandafter\def\csname LT2\endcsname{\color[rgb]{0,0,1}}%
|
||||||
|
\expandafter\def\csname LT3\endcsname{\color[rgb]{1,0,1}}%
|
||||||
|
\expandafter\def\csname LT4\endcsname{\color[rgb]{0,1,1}}%
|
||||||
|
\expandafter\def\csname LT5\endcsname{\color[rgb]{1,1,0}}%
|
||||||
|
\expandafter\def\csname LT6\endcsname{\color[rgb]{0,0,0}}%
|
||||||
|
\expandafter\def\csname LT7\endcsname{\color[rgb]{1,0.3,0}}%
|
||||||
|
\expandafter\def\csname LT8\endcsname{\color[rgb]{0.5,0.5,0.5}}%
|
||||||
|
\else
|
||||||
|
% gray
|
||||||
|
\def\colorrgb#1{\color{black}}%
|
||||||
|
\def\colorgray#1{\color[gray]{#1}}%
|
||||||
|
\expandafter\def\csname LTw\endcsname{\color{white}}%
|
||||||
|
\expandafter\def\csname LTb\endcsname{\color{black}}%
|
||||||
|
\expandafter\def\csname LTa\endcsname{\color{black}}%
|
||||||
|
\expandafter\def\csname LT0\endcsname{\color{black}}%
|
||||||
|
\expandafter\def\csname LT1\endcsname{\color{black}}%
|
||||||
|
\expandafter\def\csname LT2\endcsname{\color{black}}%
|
||||||
|
\expandafter\def\csname LT3\endcsname{\color{black}}%
|
||||||
|
\expandafter\def\csname LT4\endcsname{\color{black}}%
|
||||||
|
\expandafter\def\csname LT5\endcsname{\color{black}}%
|
||||||
|
\expandafter\def\csname LT6\endcsname{\color{black}}%
|
||||||
|
\expandafter\def\csname LT7\endcsname{\color{black}}%
|
||||||
|
\expandafter\def\csname LT8\endcsname{\color{black}}%
|
||||||
|
\fi
|
||||||
|
\fi
|
||||||
|
\setlength{\unitlength}{0.0500bp}%
|
||||||
|
\begin{picture}(6622.00,4176.00)%
|
||||||
|
\gplgaddtomacro\gplbacktext{%
|
||||||
|
\colorrgb{0.50,0.50,0.50}%
|
||||||
|
\put(774,576){\makebox(0,0)[r]{\strut{}\color{t}$40$}}%
|
||||||
|
\colorrgb{0.50,0.50,0.50}%
|
||||||
|
\put(774,1059){\makebox(0,0)[r]{\strut{}\color{t}$45$}}%
|
||||||
|
\colorrgb{0.50,0.50,0.50}%
|
||||||
|
\put(774,1543){\makebox(0,0)[r]{\strut{}\color{t}$50$}}%
|
||||||
|
\colorrgb{0.50,0.50,0.50}%
|
||||||
|
\put(774,2026){\makebox(0,0)[r]{\strut{}\color{t}$55$}}%
|
||||||
|
\colorrgb{0.50,0.50,0.50}%
|
||||||
|
\put(774,2509){\makebox(0,0)[r]{\strut{}\color{t}$60$}}%
|
||||||
|
\colorrgb{0.50,0.50,0.50}%
|
||||||
|
\put(774,2992){\makebox(0,0)[r]{\strut{}\color{t}$65$}}%
|
||||||
|
\colorrgb{0.50,0.50,0.50}%
|
||||||
|
\put(774,3476){\makebox(0,0)[r]{\strut{}\color{t}$70$}}%
|
||||||
|
\colorrgb{0.50,0.50,0.50}%
|
||||||
|
\put(774,3959){\makebox(0,0)[r]{\strut{}\color{t}$75$}}%
|
||||||
|
\colorrgb{0.50,0.50,0.50}%
|
||||||
|
\put(882,396){\makebox(0,0){\strut{}\color{t}$3.5$}}%
|
||||||
|
\colorrgb{0.50,0.50,0.50}%
|
||||||
|
\put(1656,396){\makebox(0,0){\strut{}\color{t}$4$}}%
|
||||||
|
\colorrgb{0.50,0.50,0.50}%
|
||||||
|
\put(2429,396){\makebox(0,0){\strut{}\color{t}$4.5$}}%
|
||||||
|
\colorrgb{0.50,0.50,0.50}%
|
||||||
|
\put(3203,396){\makebox(0,0){\strut{}\color{t}$5$}}%
|
||||||
|
\colorrgb{0.50,0.50,0.50}%
|
||||||
|
\put(3976,396){\makebox(0,0){\strut{}\color{t}$5.5$}}%
|
||||||
|
\colorrgb{0.50,0.50,0.50}%
|
||||||
|
\put(4750,396){\makebox(0,0){\strut{}\color{t}$6$}}%
|
||||||
|
\colorrgb{0.50,0.50,0.50}%
|
||||||
|
\put(5523,396){\makebox(0,0){\strut{}\color{t}$6.5$}}%
|
||||||
|
\colorrgb{0.50,0.50,0.50}%
|
||||||
|
\put(6297,396){\makebox(0,0){\strut{}\color{t}$7$}}%
|
||||||
|
\csname LTb\endcsname%
|
||||||
|
\put(144,2267){\rotatebox{-270}{\makebox(0,0){\strut{}Humidité}}}%
|
||||||
|
\put(3589,126){\makebox(0,0){\strut{}Température}}%
|
||||||
|
}%
|
||||||
|
\gplgaddtomacro\gplfronttext{%
|
||||||
|
\csname LTb\endcsname%
|
||||||
|
\put(5478,3806){\makebox(0,0)[r]{\strut{}Hr [\%]}}%
|
||||||
|
\csname LTb\endcsname%
|
||||||
|
\put(5478,3626){\makebox(0,0)[r]{\strut{}Hr moyen [\%]}}%
|
||||||
|
}%
|
||||||
|
\gplbacktext
|
||||||
|
\put(0,0){\includegraphics{data/3/t-h-pres}}%
|
||||||
|
\gplfronttext
|
||||||
|
\end{picture}%
|
||||||
|
\endgroup
|
@ -270,7 +270,7 @@
|
|||||||
\begin{block}{Essai n°3}<+->
|
\begin{block}{Essai n°3}<+->
|
||||||
\begin{itemize}[<+->]
|
\begin{itemize}[<+->]
|
||||||
\item Douze heures dans le frigo
|
\item Douze heures dans le frigo
|
||||||
\item Sans sachet plastique
|
\item Avec un adaptateur
|
||||||
\item Constatations
|
\item Constatations
|
||||||
\end{itemize}
|
\end{itemize}
|
||||||
\end{block}
|
\end{block}
|
||||||
@ -288,11 +288,14 @@
|
|||||||
\begin{frame}
|
\begin{frame}
|
||||||
\input{data/3/data-pres-p.tex}
|
\input{data/3/data-pres-p.tex}
|
||||||
\end{frame}
|
\end{frame}
|
||||||
|
\begin{frame}
|
||||||
|
\input{data/3/t-h-pres.tex}
|
||||||
|
\end{frame}
|
||||||
\begin{frame}
|
\begin{frame}
|
||||||
\input{data/3/data-pres-l.tex}
|
\input{data/3/data-pres-l.tex}
|
||||||
\end{frame}
|
\end{frame}
|
||||||
|
|
||||||
\section{Sources}
|
\section*{Sources}
|
||||||
\begin{frame}
|
\begin{frame}
|
||||||
\renewcommand*{\bibfont}{\scriptsize}
|
\renewcommand*{\bibfont}{\scriptsize}
|
||||||
\nocite{*}
|
\nocite{*}
|
||||||
@ -313,6 +316,13 @@
|
|||||||
\item M.~Gelsomino
|
\item M.~Gelsomino
|
||||||
\item Mes parents et ma sœur
|
\item Mes parents et ma sœur
|
||||||
\end{itemize}
|
\end{itemize}
|
||||||
|
|
||||||
|
\begin{center}
|
||||||
|
\line(1,0){250}
|
||||||
|
\end{center}
|
||||||
|
|
||||||
|
\renewcommand*{\bibfont}{\scriptsize}
|
||||||
|
\printbibliography[heading=none,keyword=my-website]
|
||||||
\end{frame}
|
\end{frame}
|
||||||
|
|
||||||
\end{document}
|
\end{document}
|
||||||
|
Loading…
Reference in New Issue
Block a user