added code from TH template
This commit is contained in:
parent
5b4ed70619
commit
8dea0a7b82
2
Content.tex
Normal file
2
Content.tex
Normal file
@ -0,0 +1,2 @@
|
||||
%all the content goes here
|
||||
\input{frames/ExampleFrame.tex}
|
126
Packages.tex
Normal file
126
Packages.tex
Normal file
@ -0,0 +1,126 @@
|
||||
%--------------------
|
||||
%encoding
|
||||
%--------------------
|
||||
\usepackage[utf8]{inputenc}
|
||||
\usepackage[T1]{fontenc}
|
||||
|
||||
%--------------------
|
||||
%language
|
||||
%--------------------
|
||||
\usepackage{babel}
|
||||
|
||||
%--------------------
|
||||
%images
|
||||
%--------------------
|
||||
\usepackage{graphicx}
|
||||
\graphicspath{ {./images/} }
|
||||
%image placement
|
||||
\usepackage{float}
|
||||
%svg images
|
||||
\usepackage{svg}
|
||||
%captions
|
||||
\usepackage{caption}
|
||||
\newcommand*{\captionsource}[2]{%
|
||||
\caption{#1}
|
||||
\vspace{-3mm}
|
||||
\caption*{\footnotesize Quelle: #2}
|
||||
}
|
||||
|
||||
%--------------------
|
||||
%german quotation style
|
||||
%--------------------
|
||||
\usepackage[%
|
||||
left = \glqq,%
|
||||
right = \grqq,%
|
||||
leftsub = \glq,%
|
||||
rightsub = \grq%
|
||||
]{dirtytalk}
|
||||
|
||||
%--------------------
|
||||
%references
|
||||
%--------------------
|
||||
\usepackage{hyperref}
|
||||
|
||||
%--------------------
|
||||
%better tables
|
||||
%--------------------
|
||||
%enable X columns (columns with automatic width)
|
||||
\usepackage{tabularx}
|
||||
\newcolumntype{Y}{>{\centering\arraybackslash}X} %for centered X column
|
||||
%table longer than one page
|
||||
\usepackage{longtable}
|
||||
%colorfull tables
|
||||
\usepackage{colortbl}
|
||||
%enable line break in nomenclature
|
||||
\usepackage{array}
|
||||
|
||||
%--------------------
|
||||
%header and footer
|
||||
%--------------------
|
||||
\usepackage{fancyhdr}
|
||||
|
||||
%--------------------
|
||||
%custom font sizes
|
||||
%--------------------
|
||||
\usepackage{anyfontsize}
|
||||
|
||||
%--------------------
|
||||
%bibliography
|
||||
%--------------------
|
||||
\usepackage[square, numbers]{natbib}
|
||||
|
||||
%--------------------
|
||||
%for calculating the number of pages
|
||||
%--------------------
|
||||
\usepackage{refcount}
|
||||
|
||||
%--------------------
|
||||
%conditional formating
|
||||
%--------------------
|
||||
\usepackage{ifthen}
|
||||
|
||||
%--------------------
|
||||
%equations
|
||||
%--------------------
|
||||
%math symbols and more
|
||||
\usepackage{amsmath}
|
||||
%special symbols
|
||||
\usepackage{fontawesome}
|
||||
%si units
|
||||
\usepackage[output-decimal-marker={,}]{siunitx}
|
||||
%decimal comma
|
||||
\usepackage{icomma}
|
||||
|
||||
%--------------------
|
||||
%drawings
|
||||
%--------------------
|
||||
\usepackage{tikz,pgfplots}
|
||||
\pgfplotsset{compat=1.7}
|
||||
\usetikzlibrary{calc}
|
||||
\usetikzlibrary{3d}
|
||||
\usetikzlibrary{arrows}
|
||||
\usetikzlibrary{patterns}
|
||||
\usetikzlibrary{shapes.geometric}
|
||||
\usepackage{pgf-umlsd}
|
||||
\usepackage{environ}
|
||||
\makeatletter
|
||||
\newsavebox{\measure@tikzpicture}
|
||||
\NewEnviron{scaletikzpicturetowidth}[1]{%
|
||||
\def\tikz@width{#1}%
|
||||
\def\tikzscale{1}\begin{lrbox}{\measure@tikzpicture}%
|
||||
\BODY
|
||||
\end{lrbox}%
|
||||
\pgfmathparse{#1/\wd\measure@tikzpicture}%
|
||||
\edef\tikzscale{\pgfmathresult}%
|
||||
\BODY
|
||||
}
|
||||
\makeatother
|
||||
\tikzset{
|
||||
invisible/.style={opacity=0},
|
||||
visible on/.style={alt={#1{}{invisible}}},
|
||||
alt/.code args={<#1>#2#3}{%
|
||||
\alt<#1>{\pgfkeysalso{#2}}{\pgfkeysalso{#3}} % \pgfkeysalso doesn't change the path
|
||||
},
|
||||
}
|
||||
% landscape
|
||||
\usepackage{pdflscape}
|
7
Readme.md
Normal file
7
Readme.md
Normal file
@ -0,0 +1,7 @@
|
||||
# How to use this template
|
||||
1. fork template
|
||||
1. refactor
|
||||
1. commit
|
||||
|
||||
## Notes
|
||||
Requires you to enable [--shell escape](https://tex.stackexchange.com/questions/516604/how-to-enable-shell-escape-or-write18-visual-studio-code-latex-workshop)
|
24
Template_Presentation.tex
Normal file
24
Template_Presentation.tex
Normal file
@ -0,0 +1,24 @@
|
||||
\documentclass[aspectratio=169]{beamer}
|
||||
\usetheme{th-owl}
|
||||
|
||||
\input{Packages.tex}
|
||||
|
||||
\def \TITLE{Example Title}
|
||||
\def \SUBTITLE{Example Subtitle}
|
||||
\def \AUTHOR{Example Author\\123456\\example@invalid.com}
|
||||
\def \COMPACTAUTHOR{Example Author}
|
||||
\def \DATE{Example Date}
|
||||
|
||||
\setbeamertemplate{frametitle continuation}{}
|
||||
|
||||
\begin{document}
|
||||
\definecolor{th-grey}{HTML}{38434b}
|
||||
\definecolor{th-red}{HTML}{ed114c}
|
||||
|
||||
\input{TitlePage.tex}
|
||||
|
||||
\input{Content.tex}
|
||||
|
||||
\input{TitlePage.tex}
|
||||
|
||||
\end{document}
|
8
TitlePage.tex
Normal file
8
TitlePage.tex
Normal file
@ -0,0 +1,8 @@
|
||||
\setcounter{framenumber}{0}
|
||||
|
||||
\title{\TITLE}
|
||||
\subtitle{\SUBTITLE}
|
||||
\author[\COMPACTAUTHOR]{\AUTHOR}
|
||||
\date{\DATE}
|
||||
|
||||
\maketitle
|
9
beamercolorthemeth-owl.sty
Normal file
9
beamercolorthemeth-owl.sty
Normal file
@ -0,0 +1,9 @@
|
||||
\mode<presentation>
|
||||
\definecolor{THRed}{HTML}{ed114c}
|
||||
\setbeamertemplate{itemize item}{\color{THRed}$\blacksquare$}
|
||||
\setbeamertemplate{itemize subitem}{\color{THRed}$\blacktriangleright$}
|
||||
\setbeamercolor{section in toc}{fg=black}
|
||||
\setbeamertemplate{sections/subsections in toc}[square]
|
||||
\setbeamercolor{section number projected}{fg=THRed, bg=THRed}
|
||||
\mode
|
||||
<all>
|
55
beamerinnerthemeth-owl.sty
Normal file
55
beamerinnerthemeth-owl.sty
Normal file
@ -0,0 +1,55 @@
|
||||
\mode<presentation>
|
||||
% Requirement
|
||||
\RequirePackage{tikz}
|
||||
|
||||
\setbeamertemplate{background}{
|
||||
\begin{tikzpicture}
|
||||
\useasboundingbox (0,0) rectangle(\the\paperwidth,\the\paperheight);
|
||||
\ifnum\insertframenumber>1\relax%
|
||||
\fill[white,opacity=1] (0,0) rectangle(\the\paperwidth,\the\paperheight);
|
||||
\node [below left] at (current bounding box.north east)
|
||||
{\includesvg[width=.15\paperwidth]{./images/TH_OWL_Logo_small}};
|
||||
\node[below right] at (current bounding box.north west) {
|
||||
\footnotesize
|
||||
\hspace{.05\paperwidth}
|
||||
{\tiny\inserttitle \space | \insertshortauthor \space | \insertdate}
|
||||
};
|
||||
\node[above left] at (current bounding box.south east) {
|
||||
{\huge\insertframenumber}
|
||||
};
|
||||
\else
|
||||
\node [below right] at (.55*\the\paperwidth,.6*\the\paperheight)
|
||||
{\includesvg[width=.55\paperwidth]{./images/TH_OWL_Logo_tiny}};
|
||||
\fi
|
||||
\definecolor{th-red}{HTML}{ed114c};
|
||||
\fill[color=th-red] (0.5,0) rectangle(.05*\the\paperwidth,\the\paperheight);
|
||||
\end{tikzpicture}
|
||||
}
|
||||
|
||||
%\setbeamertemplate{footline}{
|
||||
% \begin{tikzpicture}
|
||||
% \useasboundingbox (0,0) rectangle(\th\paperwidth,.1*\the\paperheight);
|
||||
% \ifnum\thpage>1\relax%
|
||||
% \fi
|
||||
% \end{tikzpicture}
|
||||
%}
|
||||
|
||||
% Title page
|
||||
\defbeamertemplate*{title page}{th-owl}[1][]
|
||||
{
|
||||
\begin{center}
|
||||
\vspace{-.2\paperheight}
|
||||
\huge
|
||||
\textbf{\inserttitle}\\
|
||||
\vspace{.05\paperheight}
|
||||
\Large
|
||||
\insertsubtitle\\
|
||||
\vspace{.08\paperheight}
|
||||
\normalsize
|
||||
\insertauthor\\
|
||||
\vspace{.03\paperheight}
|
||||
\insertdate
|
||||
\end{center}
|
||||
}
|
||||
|
||||
\mode <all>
|
21
beamerouterthemeth-owl.sty
Normal file
21
beamerouterthemeth-owl.sty
Normal file
@ -0,0 +1,21 @@
|
||||
\mode<presentation>
|
||||
|
||||
% Frame title
|
||||
\defbeamertemplate*{frametitle}{texsx}[1][]
|
||||
{
|
||||
\vskip1cm%
|
||||
\begin{beamercolorbox}[wd=\paperwidth,ht=1cm]{frametitle}
|
||||
\begin{tikzpicture}
|
||||
\definecolor{th-gray}{HTML}{38434b};
|
||||
\useasboundingbox[fill=th-gray](0,0) rectangle(.7*\the\paperwidth,1.2);
|
||||
\ifx\insertframesubtitle\@empty%
|
||||
{\node[anchor=west, white,font=\large] at (1,0.61){\insertframetitle};}
|
||||
\else%
|
||||
{\node[anchor= west, white,font=\large] at (1,0.81){\insertframetitle};%
|
||||
\node[anchor= west, white,font=\small] at (1,0.41){\insertframesubtitle};}%
|
||||
\fi
|
||||
\end{tikzpicture}
|
||||
\end{beamercolorbox}
|
||||
}
|
||||
|
||||
\mode<all>
|
14
beamerthemeth-owl.sty
Normal file
14
beamerthemeth-owl.sty
Normal file
@ -0,0 +1,14 @@
|
||||
\mode<presentation>
|
||||
|
||||
% Requirement
|
||||
\RequirePackage{tikz}
|
||||
|
||||
% Settings
|
||||
\useinnertheme{th-owl}
|
||||
\useoutertheme{th-owl}
|
||||
\usecolortheme{th-owl}
|
||||
|
||||
\setbeamertemplate{navigation symbols}{}
|
||||
\setbeamertemplate{blocks}[rounded][shadow=true]
|
||||
|
||||
\mode<all>
|
5
frames/ExampleFrame.tex
Normal file
5
frames/ExampleFrame.tex
Normal file
@ -0,0 +1,5 @@
|
||||
\begin{frame}[t]
|
||||
\frametitle{example title}
|
||||
\framesubtitle{example subtitle}
|
||||
example text
|
||||
\end{frame}
|
58
images/TH_OWL_Logo.svg
Normal file
58
images/TH_OWL_Logo.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 33 KiB |
66
images/TH_OWL_Logo_small.svg
Normal file
66
images/TH_OWL_Logo_small.svg
Normal file
@ -0,0 +1,66 @@
|
||||
<?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"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
viewBox="0 0 869.29333 359.05334"
|
||||
height="359.05334"
|
||||
width="869.29333"
|
||||
xml:space="preserve"
|
||||
id="svg4518"
|
||||
version="1.1"
|
||||
sodipodi:docname="TH_OWL_Logo_small.svg"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1440"
|
||||
inkscape:window-height="844"
|
||||
id="namedview19"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.93950833"
|
||||
inkscape:cx="395.29134"
|
||||
inkscape:cy="149.54823"
|
||||
inkscape:window-x="2141"
|
||||
inkscape:window-y="27"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="g4526" /><metadata
|
||||
id="metadata4524"><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 /></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs4522" /><g
|
||||
transform="matrix(1.3333333,0,0,-1.3333333,0,359.05333)"
|
||||
id="g4526"><path
|
||||
d="m 78.1535,197.873 c 0,1.876 -1.0719,2.948 -2.948,2.948 H 27.5016 c -1.8762,0 -2.9481,-1.072 -2.9481,-2.948 v -8.844 c 0,-1.876 1.0719,-2.948 2.9481,-2.948 h 15.8121 v -68.072 c 0,-1.876 1.0718,-2.948 2.9476,-2.948 h 10.184 c 1.8762,0 2.9481,1.072 2.9481,2.948 v 68.072 h 15.8121 c 1.8761,0 2.948,1.072 2.948,2.948 z m 51.1875,2.948 c -1.876,0 -2.948,-1.072 -2.948,-2.948 v -31.892 h -21.44 v 31.892 c 0,1.876 -1.072,2.948 -2.948,2.948 H 91.8207 c -1.8762,0 -2.948,-1.072 -2.948,-2.948 v -79.864 c 0,-1.876 1.0718,-2.948 2.948,-2.948 h 10.1843 c 1.876,0 2.948,1.072 2.948,2.948 v 33.232 h 21.44 v -33.232 c 0,-1.876 1.072,-2.948 2.948,-2.948 h 10.184 c 1.876,0 2.948,1.072 2.948,2.948 v 79.864 c 0,1.876 -1.072,2.948 -2.948,2.948 h -10.184"
|
||||
style="fill:#ed114c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1"
|
||||
id="path4540" /><path
|
||||
d="m 115.657,101.115 c -18.2242,0 -26.8,-9.5138 -26.8,-25.4599 V 38.1352 c 0,-15.9461 8.5758,-25.4602 26.8,-25.4602 18.224,0 26.8,9.5141 26.8,25.4602 v 37.5199 c 0,15.9461 -8.576,25.4599 -26.8,25.4599 z m 0,-14.74 c 6.566,0 10.72,-2.5461 10.72,-9.3801 v -40.2 c 0,-6.834 -4.154,-9.3801 -10.72,-9.3801 -6.566,0 -10.72,2.5461 -10.72,9.3801 v 40.2 c 0,6.834 4.154,9.3801 10.72,9.3801 z m 87.234,13.4 c -1.876,0 -2.948,-0.9379 -3.082,-2.8141 l -3.618,-48.3738 -5.896,14.2039 c -0.67,1.6078 -1.742,2.2781 -3.35,2.2781 h -0.67 c -1.608,0 -2.68,-0.6703 -3.35,-2.2781 l -5.896,-13.9359 -3.484,48.1058 c -0.134,1.8762 -1.206,2.8141 -3.082,2.8141 h -9.38 c -2.01,0 -2.948,-1.0719 -2.948,-3.082 l 5.092,-79.8641 c 0.134,-1.8758 1.072,-2.8141 2.948,-2.8141 h 6.968 c 1.742,0 2.814,0.8043 3.484,2.4122 l 10.05,27.2019 10.05,-27.2019 c 0.67,-1.6079 1.742,-2.4122 3.484,-2.4122 h 6.968 c 1.876,0 2.814,0.9383 2.948,2.8141 l 5.092,79.8641 c 0,2.0101 -0.938,3.082 -2.948,3.082 z M 249.657,28.7551 V 96.827 c 0,1.8761 -1.072,2.948 -2.948,2.948 h -10.184 c -1.876,0 -2.948,-1.0719 -2.948,-2.948 V 16.9629 c 0,-1.8758 1.072,-2.9481 2.948,-2.9481 h 42.344 c 1.876,0 2.948,1.0723 2.948,2.9481 v 8.8441 c 0,1.8758 -1.072,2.9481 -2.948,2.9481 h -29.212"
|
||||
style="fill:#ed114c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1"
|
||||
id="path4542" /><path
|
||||
d="m 175.718,195.886 c -7.506,0 -14.375,5.009 -16.41,12.603 -2.43,9.07 2.952,18.391 12.021,20.822 l 93.543,25.065 c 9.067,2.429 18.39,-2.953 20.821,-12.021 2.43,-9.069 -2.952,-18.391 -12.021,-20.821 l -93.543,-25.065 c -1.473,-0.396 -2.955,-0.583 -4.411,-0.583"
|
||||
style="fill:#ed114c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1"
|
||||
id="path4544" /><path
|
||||
d="m 244.207,127.411 c -4.351,0 -8.701,1.66 -12.021,4.979 l -68.478,68.479 c -6.639,6.639 -6.639,17.402 0,24.041 6.639,6.639 17.402,6.639 24.042,0 l 68.478,-68.478 c 6.639,-6.639 6.639,-17.403 0,-24.042 -3.32,-3.319 -7.67,-4.979 -12.021,-4.979"
|
||||
style="fill:#ed114c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1"
|
||||
id="path4546" /><path
|
||||
d="m 244.218,127.407 c -1.457,0 -2.937,0.188 -4.411,0.583 -9.068,2.43 -14.45,11.752 -12.021,20.821 l 25.065,93.544 c 2.43,9.07 11.754,14.448 20.821,12.021 9.069,-2.43 14.451,-11.752 12.021,-20.821 l -25.065,-93.544 c -2.035,-7.595 -8.905,-12.604 -16.41,-12.604"
|
||||
style="fill:#38434b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1"
|
||||
id="path4548" /><path
|
||||
d="m 281.301,249.972 c -4.155,4.147 -10.346,6.026 -16.423,4.399 0.058,0.014 0.116,0.021 0.174,0.036 -5.744,-1.481 -10.549,-5.919 -12.196,-12.058 l -7.62,-28.442 28.442,7.621 c 6.138,1.647 10.577,6.451 12.058,12.195 -0.016,-0.058 -0.023,-0.116 -0.037,-0.174 1.628,6.077 -0.251,12.269 -4.398,16.423"
|
||||
style="fill:#272d33;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1"
|
||||
id="path4550" /><path
|
||||
d="m 159.306,217.29 c -1.514,-5.672 -0.046,-11.973 4.402,-16.422 -0.041,0.043 -0.076,0.089 -0.119,0.132 4.155,-4.233 10.401,-6.175 16.541,-4.533 l 28.442,7.622 -20.821,20.821 c -4.496,4.493 -10.876,5.935 -16.591,4.345 0.058,0.016 0.113,0.039 0.169,0.056 -6.077,-1.629 -10.499,-6.353 -12.023,-12.021"
|
||||
style="fill:#a20936;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1"
|
||||
id="path4552" /><path
|
||||
d="m 248.608,127.988 c 5.669,1.525 10.392,5.947 12.021,12.024 -0.017,-0.057 -0.039,-0.111 -0.055,-0.169 1.588,5.715 0.148,12.095 -4.345,16.591 l -20.822,20.82 -7.62,-28.441 c -1.644,-6.14 0.298,-12.387 4.532,-16.541 -0.043,0.042 -0.09,0.078 -0.133,0.118 4.449,-4.448 10.751,-5.916 16.422,-4.402"
|
||||
style="fill:#272d33;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1"
|
||||
id="path4554" /></g></svg>
|
After Width: | Height: | Size: 6.1 KiB |
61
images/TH_OWL_Logo_tiny.svg
Normal file
61
images/TH_OWL_Logo_tiny.svg
Normal file
@ -0,0 +1,61 @@
|
||||
<?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"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
viewBox="0 0 869.29333 359.05334"
|
||||
height="359.05334"
|
||||
width="869.29333"
|
||||
xml:space="preserve"
|
||||
id="svg4518"
|
||||
version="1.1"
|
||||
sodipodi:docname="TH_OWL_Logo_tiny.svg"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1440"
|
||||
inkscape:window-height="844"
|
||||
id="namedview19"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.93950833"
|
||||
inkscape:cx="395.29134"
|
||||
inkscape:cy="149.54823"
|
||||
inkscape:window-x="2141"
|
||||
inkscape:window-y="27"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="g4526"
|
||||
inkscape:document-rotation="0" /><metadata
|
||||
id="metadata4524"><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 /></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs4522" /><g
|
||||
transform="matrix(1.3333333,0,0,-1.3333333,0,359.05333)"
|
||||
id="g4526"><path
|
||||
d="m 175.718,195.886 c -7.506,0 -14.375,5.009 -16.41,12.603 -2.43,9.07 2.952,18.391 12.021,20.822 l 93.543,25.065 c 9.067,2.429 18.39,-2.953 20.821,-12.021 2.43,-9.069 -2.952,-18.391 -12.021,-20.821 l -93.543,-25.065 c -1.473,-0.396 -2.955,-0.583 -4.411,-0.583"
|
||||
style="fill:#ed114c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1"
|
||||
id="path4544" /><path
|
||||
d="m 244.207,127.411 c -4.351,0 -8.701,1.66 -12.021,4.979 l -68.478,68.479 c -6.639,6.639 -6.639,17.402 0,24.041 6.639,6.639 17.402,6.639 24.042,0 l 68.478,-68.478 c 6.639,-6.639 6.639,-17.403 0,-24.042 -3.32,-3.319 -7.67,-4.979 -12.021,-4.979"
|
||||
style="fill:#ed114c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1"
|
||||
id="path4546" /><path
|
||||
d="m 244.218,127.407 c -1.457,0 -2.937,0.188 -4.411,0.583 -9.068,2.43 -14.45,11.752 -12.021,20.821 l 25.065,93.544 c 2.43,9.07 11.754,14.448 20.821,12.021 9.069,-2.43 14.451,-11.752 12.021,-20.821 l -25.065,-93.544 c -2.035,-7.595 -8.905,-12.604 -16.41,-12.604"
|
||||
style="fill:#38434b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1"
|
||||
id="path4548" /><path
|
||||
d="m 281.301,249.972 c -4.155,4.147 -10.346,6.026 -16.423,4.399 0.058,0.014 0.116,0.021 0.174,0.036 -5.744,-1.481 -10.549,-5.919 -12.196,-12.058 l -7.62,-28.442 28.442,7.621 c 6.138,1.647 10.577,6.451 12.058,12.195 -0.016,-0.058 -0.023,-0.116 -0.037,-0.174 1.628,6.077 -0.251,12.269 -4.398,16.423"
|
||||
style="fill:#272d33;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1"
|
||||
id="path4550" /><path
|
||||
d="m 159.306,217.29 c -1.514,-5.672 -0.046,-11.973 4.402,-16.422 -0.041,0.043 -0.076,0.089 -0.119,0.132 4.155,-4.233 10.401,-6.175 16.541,-4.533 l 28.442,7.622 -20.821,20.821 c -4.496,4.493 -10.876,5.935 -16.591,4.345 0.058,0.016 0.113,0.039 0.169,0.056 -6.077,-1.629 -10.499,-6.353 -12.023,-12.021"
|
||||
style="fill:#a20936;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1"
|
||||
id="path4552" /><path
|
||||
d="m 248.608,127.988 c 5.669,1.525 10.392,5.947 12.021,12.024 -0.017,-0.057 -0.039,-0.111 -0.055,-0.169 1.588,5.715 0.148,12.095 -4.345,16.591 l -20.822,20.82 -7.62,-28.441 c -1.644,-6.14 0.298,-12.387 4.532,-16.541 -0.043,0.042 -0.09,0.078 -0.133,0.118 4.449,-4.448 10.751,-5.916 16.422,-4.402"
|
||||
style="fill:#272d33;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1"
|
||||
id="path4554" /></g></svg>
|
After Width: | Height: | Size: 3.9 KiB |
Loading…
x
Reference in New Issue
Block a user