tikzdraw/astronomy/fasi_lunari.tex

60 lines
2.3 KiB
TeX
Raw Permalink 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)}},
2023-04-28 21:00:20 +02:00
newmoon/.pic = {
\draw [fill=moon] (0,0) circle (1.5cm);
\draw [fill=black, opacity=0.5] (0,0) circle (1.5cm);
},
firstmoon/.pic = {
\draw [fill=moon] (0,0) circle (1.5cm);
\draw [fill=black, opacity=0.5] (0,0) [partial ellipse=90:270:1.5 and 1.5];
},
fullmoon/.pic = {
\draw [fill=moon] (0,0) circle (1.5cm);
},
thirdmoon/.pic = {
\draw [fill=moon] (0,0) circle (1.5cm);
\draw [fill=black, opacity=0.5] (0,0) [partial ellipse=-90:90:1.5 and 1.5];
},
2021-12-20 23:14:57 +01:00
}
\begin{tikzpicture}[background rectangle/.style={fill=white},show background rectangle,]
\begin{scope}
2023-04-28 21:00:20 +02:00
\draw [fill=space,ultra thick] (1.5,8) rectangle (28,1);
2024-02-01 01:15:08 +01:00
%\draw [fill=space,ultra thick] (1.5,8) rectangle (30,1);
2022-06-05 10:50:31 +02:00
%
2024-02-01 01:15:08 +01:00
\pic at (4.2,5) {newmoon};
\pic at (11.2,5) {firstmoon};
\pic at (18.2,5) {fullmoon};
\pic at (25.2,5) {thirdmoon};
2021-12-20 23:14:57 +01:00
%
2024-02-01 01:15:08 +01:00
\node at (0.7 + 3.5,7) {\textcolor{white}{\fontsize{17}{18}\selectfont Terzo quarto}};
\node at (0.7 + 3.5,3) {\textcolor{white}{\fontsize{17}{18}\selectfont 4 gennaio}};
\node at (0.7 + 3.5,2) {\textcolor{white}{\fontsize{17}{18}\selectfont 04:30}};
2021-12-20 23:14:57 +01:00
%
2024-02-01 01:15:08 +01:00
\node at (0.7 + 3*3.5,7) {\textcolor{white}{\fontsize{17}{18}\selectfont Luna Nuova}};
\node at (0.7 + 3*3.5,3) {\textcolor{white}{\fontsize{17}{18}\selectfont 11 gennaio}};
\node at (0.7 + 3*3.5,2) {\textcolor{white}{\fontsize{17}{18}\selectfont 12:57}};
2022-12-01 11:22:05 +01:00
%
2024-02-01 01:15:08 +01:00
\node at (0.7 + 5*3.5,7) {\textcolor{white}{\fontsize{17}{18}\selectfont Primo quarto}};
\node at (0.7 + 5*3.5,3) {\textcolor{white}{\fontsize{17}{18}\selectfont 18 gennaio}};
\node at (0.7 + 5*3.5,2) {\textcolor{white}{\fontsize{17}{18}\selectfont 04:53}};
%
\node at (0.7 + 7*3.5,7) {\textcolor{white}{\fontsize{17}{18}\selectfont Luna piena}};
\node at (0.7 + 7*3.5,3) {\textcolor{white}{\fontsize{17}{18}\selectfont 25 gennaio}};
\node at (0.7 + 7*3.5,2) {\textcolor{white}{\fontsize{17}{18}\selectfont 18:54}};
2021-12-20 23:14:57 +01:00
\end{scope}
\end{tikzpicture}
\end{document}