DS_18_05_30 pour les 601 (non terminé)
This commit is contained in:
parent
fe10abbedc
commit
7b53799c4f
BIN
6e/DS/DS_18_05_30/DS_18_05_30-1.pdf
Normal file
BIN
6e/DS/DS_18_05_30/DS_18_05_30-1.pdf
Normal file
Binary file not shown.
289
6e/DS/DS_18_05_30/DS_18_05_30-1.tex
Normal file
289
6e/DS/DS_18_05_30/DS_18_05_30-1.tex
Normal file
@ -0,0 +1,289 @@
|
|||||||
|
\documentclass[a4paper,12pt]{article}
|
||||||
|
\usepackage{myXsim}
|
||||||
|
|
||||||
|
\title{DS 10}
|
||||||
|
\tribe{Sixième}
|
||||||
|
\date{30 mai 2018}
|
||||||
|
|
||||||
|
\sujet{1}
|
||||||
|
|
||||||
|
\RequirePackage{contour}
|
||||||
|
\newcommand{\clockATick}[2]{%
|
||||||
|
% colors
|
||||||
|
\colorlet{minutes color}{blue!50!cyan!70!black}
|
||||||
|
\colorlet{bg hours 0}{yellow}
|
||||||
|
\colorlet{bg hours 1}{red!50}
|
||||||
|
\colorlet{hours color}{red!80!black}
|
||||||
|
% styles
|
||||||
|
\tikzset{
|
||||||
|
minutes/.style={circle,inner sep=0,text width=5mm,align=center,font=\bfseries},
|
||||||
|
minutes 0/.style={fill=minutes color,text=white,minutes},
|
||||||
|
minutes 1/.style={text=minutes color,fill=white,minutes},
|
||||||
|
minutes font/.style={font=\normalsize},
|
||||||
|
hours/.style={font=\fontsize{60}{66}\selectfont\bfseries,text=hours color,align=center},
|
||||||
|
mini hours font/.style={font=\fontsize{40}{46}\selectfont\bfseries},
|
||||||
|
}
|
||||||
|
% radii
|
||||||
|
\def\bigradius{80mm}
|
||||||
|
\def\minuteradius{75mm}
|
||||||
|
\def\hourradius{60mm}
|
||||||
|
\def\minihourminradius{25mm}
|
||||||
|
\def\minihourmaxradius{45mm}
|
||||||
|
\pgfmathsetmacro\minihourradius{(\minihourmaxradius + \minihourminradius)*.5}
|
||||||
|
\def\hourwidth{2mm}
|
||||||
|
\def\minutewidth{1mm}
|
||||||
|
|
||||||
|
% big circle
|
||||||
|
\filldraw [fill=white,draw=minutes color] (0,0) circle (\bigradius);
|
||||||
|
|
||||||
|
% minutes marks
|
||||||
|
\foreach \angle[count=\c from 0,evaluate={\c as \hourmark using notequal(int(mod(\c,5)),0)}]
|
||||||
|
in {0,6,...,354}{ \path (-\angle:\minuteradius) node[minutes \hourmark]{\c}; }
|
||||||
|
|
||||||
|
% hours marks
|
||||||
|
\foreach \angle[count=\c from 1,evaluate={\c as \col using int(mod(\c,2))}] in {30,60,...,360}{
|
||||||
|
|
||||||
|
\path (-\angle:\hourradius) node[hours]{\c};
|
||||||
|
|
||||||
|
\path[fill=bg hours \col]
|
||||||
|
(-\angle:\minihourminradius) -- (-\angle:\minihourmaxradius)
|
||||||
|
arc(-\angle:-\angle-30:\minihourmaxradius) -- (-\angle-30:\minihourminradius)
|
||||||
|
arc(-\angle-30:-\angle:\minihourminradius) -- cycle;
|
||||||
|
|
||||||
|
\path (-\angle-15:\minihourradius pt) node[mini hours font]{\textcolor{white}{\contour{hours color}{\c}}};
|
||||||
|
}
|
||||||
|
|
||||||
|
% hands
|
||||||
|
\pgfmathsetmacro\hourangle{-#1*30-#2*.5}
|
||||||
|
\pgfmathsetmacro\minuteangle{-#2*6}
|
||||||
|
\fill[rotate=\hourangle,fill=hours color] ++(0,\hourwidth) arc(90:270:\hourwidth) -- ++(50mm,0)
|
||||||
|
-- ++(\hourwidth,\hourwidth) -- ++(-\hourwidth,\hourwidth) -- ++(-50mm,0) -- cycle ;
|
||||||
|
\fill[rotate=\minuteangle,fill=minutes color] ++(0,\minutewidth) arc(90:270:\minutewidth) -- ++(70mm,0)
|
||||||
|
-- ++(\minutewidth,\minutewidth) -- ++(-\minutewidth,\minutewidth) -- ++(-70mm,0) -- cycle ;
|
||||||
|
}
|
||||||
|
|
||||||
|
\newcommand{\clockBTick}[2]{%
|
||||||
|
\draw (0,0) circle (2cm);
|
||||||
|
\foreach \angle / \label in
|
||||||
|
{0/3, 30/2, 60/1, 90/12, 120/11, 150/10, 180/9,
|
||||||
|
210/8, 240/7, 270/6, 300/5, 330/4}
|
||||||
|
{
|
||||||
|
\draw (\angle:1.8cm) -- (\angle:2cm);
|
||||||
|
\draw (\angle:1.4cm) node{\textsf{\label}};
|
||||||
|
}
|
||||||
|
\foreach \angle[count=\c from 0] in {0,6,...,354}
|
||||||
|
{
|
||||||
|
\draw (\angle:1.9cm) -- (\angle:2cm);
|
||||||
|
}
|
||||||
|
\draw[rotate=90] (0,0) -- (-#1*30-#2*30/60:0.7cm); % hours
|
||||||
|
\draw[rotate=90] (0,0) -- (-#2*6:1.2cm); % minutes
|
||||||
|
\path [fill=black] (0,0) circle (3pt);
|
||||||
|
\path [fill=red] (0,0) circle (1.5pt);
|
||||||
|
}
|
||||||
|
|
||||||
|
\newcommand{\clockA}{%
|
||||||
|
% colors
|
||||||
|
\colorlet{minutes color}{blue!50!cyan!70!black}
|
||||||
|
\colorlet{bg hours 0}{yellow}
|
||||||
|
\colorlet{bg hours 1}{red!50}
|
||||||
|
\colorlet{hours color}{red!80!black}
|
||||||
|
% styles
|
||||||
|
\tikzset{
|
||||||
|
minutes/.style={circle,inner sep=0,text width=5mm,align=center,font=\bfseries},
|
||||||
|
minutes 0/.style={fill=minutes color,text=white,minutes},
|
||||||
|
minutes 1/.style={text=minutes color,fill=white,minutes},
|
||||||
|
minutes font/.style={font=\normalsize},
|
||||||
|
hours/.style={font=\fontsize{60}{66}\selectfont\bfseries,text=hours color,align=center},
|
||||||
|
mini hours font/.style={font=\fontsize{40}{46}\selectfont\bfseries},
|
||||||
|
}
|
||||||
|
% radii
|
||||||
|
\def\bigradius{80mm}
|
||||||
|
\def\minuteradius{75mm}
|
||||||
|
\def\hourradius{60mm}
|
||||||
|
\def\minihourminradius{25mm}
|
||||||
|
\def\minihourmaxradius{45mm}
|
||||||
|
\pgfmathsetmacro\minihourradius{(\minihourmaxradius + \minihourminradius)*.5}
|
||||||
|
\def\hourwidth{2mm}
|
||||||
|
\def\minutewidth{1mm}
|
||||||
|
|
||||||
|
% big circle
|
||||||
|
\filldraw [fill=white,draw=minutes color] (0,0) circle (\bigradius);
|
||||||
|
|
||||||
|
% minutes marks
|
||||||
|
\foreach \angle[count=\c from 0,evaluate={\c as \hourmark using notequal(int(mod(\c,5)),0)}]
|
||||||
|
in {0,6,...,354}{ \path (-\angle:\minuteradius) node[minutes \hourmark]{\c}; }
|
||||||
|
|
||||||
|
% hours marks
|
||||||
|
\foreach \angle[count=\c from 1,evaluate={\c as \col using int(mod(\c,2))}] in {30,60,...,360}{
|
||||||
|
|
||||||
|
\path (-\angle:\hourradius) node[hours]{\c};
|
||||||
|
|
||||||
|
\path[fill=bg hours \col]
|
||||||
|
(-\angle:\minihourminradius) -- (-\angle:\minihourmaxradius)
|
||||||
|
arc(-\angle:-\angle-30:\minihourmaxradius) -- (-\angle-30:\minihourminradius)
|
||||||
|
arc(-\angle-30:-\angle:\minihourminradius) -- cycle;
|
||||||
|
|
||||||
|
\path (-\angle-15:\minihourradius pt) node[mini hours font]{\textcolor{white}{\contour{hours color}{\c}}};
|
||||||
|
}
|
||||||
|
|
||||||
|
\path [fill=black] (0,0) circle (3mm);
|
||||||
|
\path [fill=red] (0,0) circle (1.5mm);
|
||||||
|
}
|
||||||
|
|
||||||
|
\newcommand{\clockB}{%
|
||||||
|
\draw (0,0) circle (2cm);
|
||||||
|
\foreach \angle / \label in
|
||||||
|
{0/3, 30/2, 60/1, 90/12, 120/11, 150/10, 180/9,
|
||||||
|
210/8, 240/7, 270/6, 300/5, 330/4}
|
||||||
|
{
|
||||||
|
\draw (\angle:1.8cm) -- (\angle:2cm);
|
||||||
|
\draw (\angle:1.4cm) node{\textsf{\label}};
|
||||||
|
}
|
||||||
|
\foreach \angle[count=\c from 0] in {0,6,...,354}
|
||||||
|
{
|
||||||
|
\draw (\angle:1.9cm) -- (\angle:2cm);
|
||||||
|
}
|
||||||
|
\path [fill=black] (0,0) circle (3pt);
|
||||||
|
\path [fill=red] (0,0) circle (1.5pt);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
\begin{document}
|
||||||
|
|
||||||
|
\competencesStatement
|
||||||
|
|
||||||
|
\maketitle
|
||||||
|
\bigskip
|
||||||
|
\begin{exercise}[subtitle={Le temps}]
|
||||||
|
\begin{enumerate}
|
||||||
|
\item Quelle heure indique ces deux horloges?
|
||||||
|
~
|
||||||
|
|
||||||
|
\vspace{1.5cm}
|
||||||
|
\hspace{1cm}
|
||||||
|
\begin{tikzpicture}[cap=round, rotate=90, transform canvas={scale=0.25}]
|
||||||
|
\clockATick{7}{30}
|
||||||
|
\end{tikzpicture}
|
||||||
|
\hspace{2cm}
|
||||||
|
............
|
||||||
|
\hspace{2.5cm}
|
||||||
|
\begin{tikzpicture}[cap=round, transform canvas={scale=0.9}]
|
||||||
|
\clockBTick{11}{15}
|
||||||
|
\end{tikzpicture}
|
||||||
|
\hspace{2cm}
|
||||||
|
............
|
||||||
|
|
||||||
|
\vspace{2cm}
|
||||||
|
\item Placer les aiguilles correctement.
|
||||||
|
~
|
||||||
|
|
||||||
|
\vspace{1.5cm}
|
||||||
|
\hspace{1cm}
|
||||||
|
\begin{tikzpicture}[cap=round, rotate=90, transform canvas={scale=0.25}]
|
||||||
|
\clockA
|
||||||
|
\end{tikzpicture}
|
||||||
|
\hspace{2cm}
|
||||||
|
10h20
|
||||||
|
\hspace{2.5cm}
|
||||||
|
\begin{tikzpicture}[cap=round, transform canvas={scale=0.9}]
|
||||||
|
\clockB
|
||||||
|
\end{tikzpicture}
|
||||||
|
\hspace{2cm}
|
||||||
|
9h54
|
||||||
|
|
||||||
|
\vspace{2cm}
|
||||||
|
\item Compléter les trous (justifier par le calcul en dessous).
|
||||||
|
\begin{multicols}{2}
|
||||||
|
\begin{enumerate}
|
||||||
|
\item $1h =$ \parbox{2cm}{\dotfill} min
|
||||||
|
\\[0.2cm].\dotfill
|
||||||
|
\item $8h =$ \parbox{2cm}{\dotfill} min
|
||||||
|
\\[0.2cm].\dotfill
|
||||||
|
\item $5h 25min =$ \parbox{2cm}{\dotfill} min
|
||||||
|
\\[0.2cm].\dotfill
|
||||||
|
\item $15min10s =$ \parbox{2cm}{\dotfill} s
|
||||||
|
\\[0.2cm].\dotfill
|
||||||
|
\end{enumerate}
|
||||||
|
\end{multicols}
|
||||||
|
\end{enumerate}
|
||||||
|
\end{exercise}
|
||||||
|
|
||||||
|
\begin{exercise}[subtitle={Histoire de champs}]
|
||||||
|
Voici de 2 champs.
|
||||||
|
\begin{center}
|
||||||
|
\includegraphics[scale=1]{./fig/champs-1}
|
||||||
|
\end{center}
|
||||||
|
|
||||||
|
\begin{enumerate}
|
||||||
|
\item Lequel des 2 champs va demander le moins de clôture pour faire le tour?
|
||||||
|
\\[0.2cm] .\dotfill
|
||||||
|
\\[0.2cm] .\dotfill
|
||||||
|
\\[0.2cm] .\dotfill
|
||||||
|
\\[0.2cm] .\dotfill
|
||||||
|
\item Lequel de ces 2 champs va donner le plus d'espace pour des faire vivre des chèvres?
|
||||||
|
\\[0.2cm] .\dotfill
|
||||||
|
\\[0.2cm] .\dotfill
|
||||||
|
\\[0.2cm] .\dotfill
|
||||||
|
\\[0.2cm] .\dotfill
|
||||||
|
\end{enumerate}
|
||||||
|
\end{exercise}
|
||||||
|
|
||||||
|
\begin{exercise}[subtitle={Quadrilatères}]
|
||||||
|
\begin{enumerate}
|
||||||
|
\item Tracer les figures suivantes avec le plus de précision
|
||||||
|
\begin{multicols}{2}
|
||||||
|
\begin{enumerate}
|
||||||
|
\item Un quadrilatère $ABCD$ \\[4cm]
|
||||||
|
\item Un losange $IJLK$ \\[4cm]
|
||||||
|
\end{enumerate}
|
||||||
|
\end{multicols}
|
||||||
|
\item Comment reconnaît-on un rectangle?
|
||||||
|
\\[0.2cm] .\dotfill
|
||||||
|
\\[0.2cm] .\dotfill
|
||||||
|
\\[0.2cm] .\dotfill
|
||||||
|
\end{enumerate}
|
||||||
|
\end{exercise}
|
||||||
|
|
||||||
|
\begin{exercise}[subtitle={Tremblements de terre}]
|
||||||
|
|
||||||
|
La force d'un tremblement de terre se mesure avec la \textbf{magnitude}. Voici les relevés des tremblements de terre de vendredi à dimanche.
|
||||||
|
|
||||||
|
\begin{minipage}{0.5\linewidth}
|
||||||
|
\begin{tabular}{|*{4}{c|}}
|
||||||
|
\hline
|
||||||
|
Date & Profondeur & Magnitude & Lieu\\
|
||||||
|
\hline
|
||||||
|
2018-05-27 & 10 & 5.1 & CHINA \\
|
||||||
|
\hline
|
||||||
|
2018-05-27 & 10 & 5.0 & FIJI \\
|
||||||
|
\hline
|
||||||
|
2018-05-27 & 10 & 5.1 & FIJI \\
|
||||||
|
\hline
|
||||||
|
2018-05-27 & 20 & 5.0 & GUAM \\
|
||||||
|
\hline
|
||||||
|
2018-05-25 & 175 & 5.2 & INDONESIE \\
|
||||||
|
\hline
|
||||||
|
2018-05-25 & 10 & 5.0 & MAYOTTE\\
|
||||||
|
\hline
|
||||||
|
2018-05-25 & 10 & 5.0 & MAYOTTE\\
|
||||||
|
\hline
|
||||||
|
\end{tabular}
|
||||||
|
\end{minipage}
|
||||||
|
\begin{minipage}{0.5\linewidth}
|
||||||
|
\begin{enumerate}
|
||||||
|
\item
|
||||||
|
\end{enumerate}
|
||||||
|
|
||||||
|
\end{minipage}
|
||||||
|
|
||||||
|
\end{exercise}
|
||||||
|
|
||||||
|
|
||||||
|
\end{document}
|
||||||
|
|
||||||
|
|
||||||
|
%%% Local Variables:
|
||||||
|
%%% mode: latex
|
||||||
|
%%% TeX-master: "master"
|
||||||
|
%%% End:
|
||||||
|
|
BIN
6e/DS/DS_18_05_30/fig/champs-1.pdf
Normal file
BIN
6e/DS/DS_18_05_30/fig/champs-1.pdf
Normal file
Binary file not shown.
BIN
6e/DS/DS_18_05_30/fig/champs-2.pdf
Normal file
BIN
6e/DS/DS_18_05_30/fig/champs-2.pdf
Normal file
Binary file not shown.
123
6e/DS/DS_18_05_30/fig/champs.svg
Normal file
123
6e/DS/DS_18_05_30/fig/champs.svg
Normal file
@ -0,0 +1,123 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
id="svg8"
|
||||||
|
version="1.1"
|
||||||
|
viewBox="0 0 79.372215 30.054155"
|
||||||
|
height="30.054155mm"
|
||||||
|
width="79.372215mm">
|
||||||
|
<defs
|
||||||
|
id="defs2">
|
||||||
|
<marker
|
||||||
|
style="overflow:visible"
|
||||||
|
id="Arrow1Mend"
|
||||||
|
refX="0"
|
||||||
|
refY="0"
|
||||||
|
orient="auto">
|
||||||
|
<path
|
||||||
|
transform="matrix(-0.4,0,0,-0.4,-4,0)"
|
||||||
|
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
|
||||||
|
d="M 0,0 5,-5 -12.5,0 5,5 Z"
|
||||||
|
id="path855" />
|
||||||
|
</marker>
|
||||||
|
<marker
|
||||||
|
style="overflow:visible"
|
||||||
|
id="Arrow1Mstart"
|
||||||
|
refX="0"
|
||||||
|
refY="0"
|
||||||
|
orient="auto">
|
||||||
|
<path
|
||||||
|
transform="matrix(0.4,0,0,0.4,4,0)"
|
||||||
|
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
|
||||||
|
d="M 0,0 5,-5 -12.5,0 5,5 Z"
|
||||||
|
id="path852" />
|
||||||
|
</marker>
|
||||||
|
</defs>
|
||||||
|
<metadata
|
||||||
|
id="metadata5">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
transform="translate(-11.172407,-136.13989)"
|
||||||
|
id="layer1">
|
||||||
|
<g
|
||||||
|
id="g952">
|
||||||
|
<circle
|
||||||
|
style="opacity:1;vector-effect:none;fill:#4ecb46;fill-opacity:0.63809526;fill-rule:nonzero;stroke:#000000;stroke-width:0.70555556;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||||
|
id="path815"
|
||||||
|
cx="23.887167"
|
||||||
|
cy="151.16698"
|
||||||
|
r="12.361981" />
|
||||||
|
<g
|
||||||
|
id="g842"
|
||||||
|
transform="matrix(0.39981473,0,0,0.39981473,9.8457104,80.340171)"
|
||||||
|
style="fill:#399433;fill-opacity:0.63809527;stroke-width:1.76470625;stroke-miterlimit:4;stroke-dasharray:none">
|
||||||
|
<path
|
||||||
|
id="path823"
|
||||||
|
d="m 37.336212,174.93275 -4.43261,4.43261"
|
||||||
|
style="fill:#399433;fill-opacity:0.63809527;stroke:#000000;stroke-width:1.76470625;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
id="path823-3"
|
||||||
|
d="m 32.903602,174.93275 4.43261,4.43261"
|
||||||
|
style="fill:#399433;fill-opacity:0.63809527;stroke:#000000;stroke-width:1.76470625;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
</g>
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-start:url(#Arrow1Mstart);marker-end:url(#Arrow1Mend)"
|
||||||
|
d="m 24.773278,150.28086 6.607758,-7.30439"
|
||||||
|
id="path844" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
|
||||||
|
x="18.605803"
|
||||||
|
y="145.5444"
|
||||||
|
id="text2806"><tspan
|
||||||
|
id="tspan2804"
|
||||||
|
x="18.605803"
|
||||||
|
y="145.5444"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:sans-serif;stroke-width:0.26458332">10m</tspan></text>
|
||||||
|
</g>
|
||||||
|
<rect
|
||||||
|
y="136.49268"
|
||||||
|
x="50.634567"
|
||||||
|
height="24.645042"
|
||||||
|
width="39.557278"
|
||||||
|
id="rect817"
|
||||||
|
style="opacity:1;vector-effect:none;fill:#4dcb45;fill-opacity:0.63921571;fill-rule:nonzero;stroke:#000000;stroke-width:0.70555556;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||||
|
<text
|
||||||
|
id="text2810"
|
||||||
|
y="166.13411"
|
||||||
|
x="65.680679"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
|
||||||
|
xml:space="preserve"><tspan
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:sans-serif;stroke-width:0.26458332"
|
||||||
|
y="166.13411"
|
||||||
|
x="65.680679"
|
||||||
|
id="tspan2808">21m</tspan></text>
|
||||||
|
<text
|
||||||
|
transform="rotate(-90)"
|
||||||
|
id="text2814"
|
||||||
|
y="49.06979"
|
||||||
|
x="-152.85002"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
|
||||||
|
xml:space="preserve"><tspan
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:sans-serif;stroke-width:0.26458332"
|
||||||
|
y="49.06979"
|
||||||
|
x="-152.85002"
|
||||||
|
id="tspan2812">12m</tspan></text>
|
||||||
|
<g
|
||||||
|
transform="translate(-2.169933)"
|
||||||
|
id="g2864" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 5.5 KiB |
Loading…
Reference in New Issue
Block a user