Compare commits

...

2 Commits

Author SHA1 Message Date
robin
e4c331c0c8 Merge remote-tracking branch 'refs/remotes/origin/master' 2026-01-31 12:54:46 +00:00
robin
eb6b458fb7 mad world 2026-01-31 12:53:40 +00:00

168
lyrics/mad_world_lyrics.tex Normal file
View File

@ -0,0 +1,168 @@
\documentclass[a4paper,14pt]{article}
\usepackage{tikz}
\usetikzlibrary{arrows.meta,calc}
\usepackage[T1]{fontenc} % good PDF font encoding
\usepackage[utf8]{inputenc} % pdflatex UTF-8 support (OK with TL2023)
\usepackage[margin=1.8cm]{geometry}
\usepackage{multicol}
\usepackage{parskip}
\usetikzlibrary{calc}
\setlength{\parindent}{0pt}
% Chords above lyrics (simple + robust)
\newcommand{\ch}[1]{\textsuperscript{\textbf{#1}}}
% Title + section helpers (names chosen to avoid clashes)
\newcommand{\SongTitle}[1]{%
\begin{center}
\LARGE\bfseries #1
\end{center}
\vspace{0.4em}
}
\newcommand{\Verse}[1]{\textbf{Verse #1}\par}
\newcommand{\Chorus}[1]{\textbf{Chorus #1}\par}
\newcommand{\Bridge}[1]{\textbf{Bridge #1}\par}
\newcommand{\Outro}[1]{\textbf{Outro #1} \par}
\begin{document}
%\vspace*{2cm}
\SongTitle{Mad World --- Michael Andrews (c) 2001}
%\vspace*{2cm}
\begin{multicols}{2}
\large
\vspace*{1cm}
\Verse{$ | \mathbf{F} | $}
All around me are familiar faces
Worn out places, worn out faces
Bright and early for the daily races
Going nowhere, going nowhere
Their tears are filling up their glasses
No expression, no expression
Hide my head, I wanna drown my sorrow
No tomorrow, no tomorrow
\Chorus{$\nabla \mathbf{F}$}
And I find it kind of funny
I find it kind of sad
The dreams in which I'm dying
Are the best I've ever had
I find it hard to tell you
I find it hard to take
When people run in circles, it's a very, very
Mad world, mad world
\Verse{$\nabla \times \mathbf{F}$}
Children waiting for the day they feel good
Happy birthday, happy birthday
And I feel the way that every child should
Sit and listen, sit and listen
Went to school and I was very nervous
No one knew me, no one knew me
"Hello, teacher! Tell me, what's my lesson?"
Look right through me, look right through me
\Chorus{$\nabla \cdot \mathbf{N} $}
And I find it kind of funny
I find it kind of sad
The dreams in which I'm dying
Are the best I've ever had
I find it hard to tell you
I find it hard to take
When people run in circles, it's a very, very
Mad world, mad world
\Outro{$\nabla^2$}
Enlarging your world
Mad world
\end{multicols}
%\centering
% centre
\begin{figure}[h]
\center
\begin{tikzpicture}[
x=1cm, y=1cm,
font=\scriptsize,
]
% --- Fixed 6cm x 6cm drawing area ---
\path[use as bounding box] (0,0) rectangle (6,6);
% -------------------------------------------------
% Very dense warped grid
% -------------------------------------------------
% Vertical grid lines
\foreach \i in {0,0.15,...,6} {
\draw[gray!30, line width=0.2pt,
domain=0:6, samples=160, variable=\t]
plot ({\i + 0.45*(\i-3)/( ((\i-3)*(\i-3) + (\t-3)*(\t-3) + 0.30) )},
{\t + 0.45*(\t-3)/( ((\i-3)*(\i-3) + (\t-3)*(\t-3) + 0.30) )});
}
% Horizontal grid lines
\foreach \j in {0,0.15,...,6} {
\draw[gray!30, line width=0.2pt,
domain=0:6, samples=160, variable=\t]
plot ({\t + 0.45*(\t-3)/( ((\t-3)*(\t-3) + (\j-3)*(\j-3) + 0.30) )},
{\j + 0.45*(\j-3)/( ((\t-3)*(\t-3) + (\j-3)*(\j-3) + 0.30) )});
}
% -------------------------------------------------
% Central mass (sphere)
% -------------------------------------------------
\shade[ball color=black!65] (3,3) circle (0.42);
\draw[black!35] (3,3) circle (0.80);
\end{tikzpicture}
\end{figure}
%\end{centre}
% $$ Pierrie LaPalce \; \int_0^\infty f(t) e^{-st} $$
% $$ Gradient \; \nabla \mathbf{F} $$
% $$ CurlyWhirly \;\nabla \times \mathbf{F} $$
%$$ DiververgeFromThe Normies \; \nabla \cdot \mathbf{N} $$
\end{document}