tikzdraw/astronomy/fasi_lunari.tex

53 lines
2.4 KiB
TeX
Raw Normal View History

2021-12-20 23:14:57 +01:00
\documentclass{standalone}
%
\usepackage{tikz}
\usetikzlibrary{backgrounds}
\usepackage{xcolor}
%
\definecolor{space}{HTML}{1F2C4E}
\definecolor{moon}{HTML}{AFAFAF}
%
\usepackage{fontspec}
\setmainfont{Open Dyslexic}
%
\title{Fasi lunari}
\begin{document}
\tikzset{
partial ellipse/.style args = {#1:#2:#3}{insert path={+ (#1:#3) arc (#1:#2:#3)}},
}
\begin{tikzpicture}[background rectangle/.style={fill=white},show background rectangle,]
\begin{scope}
2022-03-25 16:55:43 +01:00
%\draw [fill=space,ultra thick] (3.8,8) rectangle (30,1);
\draw [fill=space,ultra thick] (3.8,8) rectangle (37,1);%per mese con cinque fasi
2021-12-20 23:14:57 +01:00
%
2022-03-25 16:55:43 +01:00
\foreach \c in {1,3,...,7,9}
2021-12-20 23:14:57 +01:00
{
\draw [fill=moon] (2.7 + \c*3.5,5) circle (1.5cm);
}
\draw [fill=black, opacity=0.5] (2.7 + 3.5,5) circle (1.5cm);
\draw [fill=black, opacity=0.5] (2.7 + 3*3.5,5) [partial ellipse=90:270:1.5 and 1.5];
\draw [fill=black, opacity=0.5] (2.7 + 7*3.5,5) [partial ellipse=-90:90:1.5 and 1.5];
2022-03-25 16:55:43 +01:00
\draw [fill=black, opacity=0.5] (2.7 + 9*3.5,5) circle (1.5cm);%quinta fase
2021-12-20 23:14:57 +01:00
%
\node at (2.7 + 3.5,7) {\textcolor{white}{\fontsize{17}{18}\selectfont Luna Nuova}};
2022-03-25 16:55:43 +01:00
\node at (2.7 + 3.5,3) {\textcolor{white}{\fontsize{17}{18}\selectfont 1 aprile}};
\node at (2.7 + 3.5,2) {\textcolor{white}{\fontsize{17}{18}\selectfont 08:24}};
2021-12-20 23:14:57 +01:00
%
\node at (2.7 + 3*3.5,7) {\textcolor{white}{\fontsize{17}{18}\selectfont Primo Quarto}};
2022-03-25 16:55:43 +01:00
\node at (2.7 + 3*3.5,3) {\textcolor{white}{\fontsize{17}{18}\selectfont 9 aprile}};
\node at (2.7 + 3*3.5,2) {\textcolor{white}{\fontsize{17}{18}\selectfont 08:47}};
2021-12-20 23:14:57 +01:00
%
\node at (2.7 + 5*3.5,7) {\textcolor{white}{\fontsize{17}{18}\selectfont Luna Piena}};
2022-03-25 16:55:43 +01:00
\node at (2.7 + 5*3.5,3) {\textcolor{white}{\fontsize{17}{18}\selectfont 16 aprile}};
\node at (2.7 + 5*3.5,2) {\textcolor{white}{\fontsize{17}{18}\selectfont 13:56}};
2021-12-20 23:14:57 +01:00
%
\node at (2.7 + 7*3.5,7) {\textcolor{white}{\fontsize{17}{18}\selectfont Terzo Quarto}};
2022-03-25 16:55:43 +01:00
\node at (2.7 + 7*3.5,3) {\textcolor{white}{\fontsize{17}{18}\selectfont 23 aprile}};
\node at (2.7 + 7*3.5,2) {\textcolor{white}{\fontsize{17}{18}\selectfont 13:56}};
% quinta fase
\node at (2.7 + 9*3.5,7) {\textcolor{white}{\fontsize{17}{18}\selectfont Luna Nuova}};
\node at (2.7 + 9*3.5,3) {\textcolor{white}{\fontsize{17}{18}\selectfont 30 aprile}};
\node at (2.7 + 9*3.5,2) {\textcolor{white}{\fontsize{17}{18}\selectfont 22:28}};
2021-12-20 23:14:57 +01:00
\end{scope}
\end{tikzpicture}
\end{document}