165 lines
2.8 KiB
TeX
165 lines
2.8 KiB
TeX
|
|
\documentclass[a4paper,16pt]{article}
|
|
|
|
\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}
|
|
\usepackage{needspace}
|
|
|
|
% Generic unbreakable lyrics block
|
|
\newcommand{\LyricsBlock}[3][8]{%
|
|
\Needspace{#1\baselineskip}%
|
|
\begin{minipage}{\columnwidth}
|
|
#2
|
|
#3
|
|
\end{minipage}\par
|
|
}
|
|
|
|
\newcommand{\VerseBlock}[2]{%
|
|
\LyricsBlock{ \Verse{#1} }{#2}
|
|
}
|
|
|
|
\newcommand{\ChorusBlock}[1]{%
|
|
\LyricsBlock{ \Chorus }{#1}
|
|
}
|
|
|
|
\newcommand{\BridgeBlock}[1]{%
|
|
\LyricsBlock{ \Bridge }{#1}
|
|
}
|
|
|
|
\newcommand{\OutroBlock}[1]{%
|
|
\LyricsBlock{ \Outro }{#1}
|
|
}
|
|
|
|
\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.2em}
|
|
}
|
|
|
|
\newcommand{\Verse}[1]{\textbf{Verse #1}\par}
|
|
\newcommand{\Chorus}[1][]{\textbf{Chorus\if\relax\detokenize{#1}\relax\else\ (#1)\fi}\par}
|
|
\newcommand{\Bridge}[1][]{\textbf{Bridge\if\relax\detokenize{#1}\relax\else\ (#1)\fi}\par}
|
|
\newcommand{\Outro}[1][]{\textbf{Outro\if\relax\detokenize{#1}\relax\else\ (#1)\fi}\par}
|
|
|
|
|
|
\begin{document}
|
|
|
|
\vspace*{.1cm}
|
|
\SongTitle{Wishing Well --- Free}
|
|
\vspace*{.1cm}
|
|
\begin{multicols}{2}
|
|
\Large
|
|
|
|
\VerseBlock{1} {
|
|
|
|
Take off your hat, kick off your shoes
|
|
|
|
I know you ain't going anywhere
|
|
|
|
Run 'round the town singing your blues
|
|
|
|
I know you ain't going anywhere
|
|
|
|
}
|
|
|
|
|
|
\ChorusBlock{ } {
|
|
|
|
You've always been a good friend of mine
|
|
|
|
But you're always saying farewell
|
|
|
|
And the only time that you're satisfied
|
|
|
|
Is with your feet in the wishing well
|
|
}
|
|
|
|
\VerseBlock{} {
|
|
|
|
Throw down your gun, you might shoot yourself
|
|
|
|
Or is that what you're trying to do?
|
|
|
|
Put up a fight you believe to be right
|
|
|
|
And someday the sun will shine through
|
|
}
|
|
|
|
|
|
\ChorusBlock{}{
|
|
|
|
You've always got something to hide
|
|
|
|
Something you just can't tell
|
|
|
|
And the only time that you're satisfied
|
|
|
|
Is with your feet in the wishing well
|
|
}
|
|
|
|
|
|
|
|
|
|
\BridgeBlock{} {
|
|
|
|
And I know what you're wishing for
|
|
|
|
Love and a peaceful world
|
|
|
|
Love and a peaceful world
|
|
|
|
Love and a peaceful world
|
|
|
|
Love and a peaceful world
|
|
}
|
|
|
|
|
|
|
|
\ChorusBlock{} {
|
|
|
|
You've always been a good friend of mine
|
|
|
|
But you're always saying farewell
|
|
|
|
And the only time that you're satisfied
|
|
|
|
Is with your feet in the wishing well
|
|
}
|
|
|
|
|
|
|
|
\Outro
|
|
|
|
I wish you well
|
|
|
|
The wishing well
|
|
|
|
Everybody has a wish
|
|
|
|
Everybody has a dream
|
|
|
|
I wish you well
|
|
|
|
You have to dream your own dream
|
|
|
|
|
|
\end{multicols}
|
|
|
|
|
|
%$$ Pierrie LaPlace \; \int_0^\infty f(t).e^{-st}.dt $$
|
|
%$$ Gradient \; \nabla \mathbf{F} $$
|
|
%$$ CurlyWhirly \;\nabla \times \mathbf{F} $$
|
|
%$$ DiververgeFromThe Normies \; \nabla \cdot \mathbf{F} $$
|
|
$$ KineticQM \; \nabla^2 \mathbf{\psi} $$
|
|
\end{document}
|