2013-06-26 23:37:45 +01:00
|
|
|
\input{docclass.tex}
|
|
|
|
|
2013-07-12 14:27:41 +01:00
|
|
|
\usepackage{array}
|
2019-08-06 23:29:51 +01:00
|
|
|
\usepackage{calc}
|
2019-03-26 11:00:35 +00:00
|
|
|
\usepackage{caption}
|
2013-07-05 18:56:34 +01:00
|
|
|
\usepackage{color}
|
2013-06-26 23:37:45 +01:00
|
|
|
\usepackage{fontspec}
|
|
|
|
\usepackage{graphicx}
|
|
|
|
\usepackage{fancyhdr}
|
2019-08-06 23:29:51 +01:00
|
|
|
\usepackage{ifthen}
|
2019-08-08 07:38:30 +01:00
|
|
|
\usepackage{metalogo}
|
2019-03-27 22:29:21 +00:00
|
|
|
\usepackage[defaultlines=4,all]{nowidow}
|
2013-08-05 18:06:00 +01:00
|
|
|
\usepackage{tabularx}
|
2013-06-26 23:37:45 +01:00
|
|
|
\usepackage{longtable}
|
2019-03-28 10:51:41 +00:00
|
|
|
\usepackage{needspace}
|
2013-07-05 18:56:34 +01:00
|
|
|
\usepackage[UKenglish]{babel}
|
2013-07-16 16:26:41 +01:00
|
|
|
\usepackage[UKenglish]{isodate}
|
2013-06-29 10:13:48 +01:00
|
|
|
|
|
|
|
% Non-indented paragraphs with space between them.
|
|
|
|
\usepackage{parskip}
|
|
|
|
|
|
|
|
% 2 column table of contents.
|
2013-06-26 23:37:45 +01:00
|
|
|
\usepackage[toc]{multitoc}
|
|
|
|
|
|
|
|
\usepackage{hyperref}
|
|
|
|
\hypersetup{
|
|
|
|
colorlinks=true,%
|
|
|
|
citecolor=black,%
|
|
|
|
filecolor=black,%
|
|
|
|
linkcolor=black,%
|
|
|
|
urlcolor=black
|
|
|
|
}
|
|
|
|
|
|
|
|
% ----- Common variables
|
|
|
|
|
2013-07-12 11:36:14 +01:00
|
|
|
\newcommand{\build}{\input{buildno.txt}}
|
|
|
|
\newcommand{\instrument}{\input{instrument.txt}}
|
2013-06-26 23:37:45 +01:00
|
|
|
|
2013-07-05 18:56:34 +01:00
|
|
|
% Havoc purple is #9900cc.
|
|
|
|
\definecolor{havocpurple}{rgb}{0.597,0,0.797}
|
|
|
|
|
2013-07-12 11:36:14 +01:00
|
|
|
% ----- Macros
|
|
|
|
|
|
|
|
\makeatletter
|
|
|
|
\def\ifemptyarg#1{%
|
|
|
|
\if\relax\detokenize{#1}\relax % H. Oberdiek
|
|
|
|
\expandafter\@firstoftwo
|
|
|
|
\else
|
|
|
|
\expandafter\@secondoftwo
|
|
|
|
\fi}
|
|
|
|
\makeatother
|
|
|
|
|
2019-08-06 22:24:02 +01:00
|
|
|
% Replace \mainmatter with one that does a \clearpage
|
|
|
|
% not a \cleardoublepage.
|
|
|
|
\makeatletter
|
|
|
|
\renewcommand\mainmatter{%
|
|
|
|
\clearpage
|
|
|
|
\@mainmattertrue
|
|
|
|
\pagenumbering{arabic}}
|
|
|
|
\makeatother
|
|
|
|
|
2013-07-12 11:36:14 +01:00
|
|
|
% Show the main tune graphic and optional change.
|
2017-10-11 18:09:51 +01:00
|
|
|
% Args are:
|
|
|
|
% 1. Tune name
|
|
|
|
% 2. Tune title
|
|
|
|
% 3. Tune subtitle
|
|
|
|
% 4. Tune full title
|
|
|
|
% 5. Tune tradition
|
|
|
|
% 6. Tune composer
|
|
|
|
% 7. Tune parts
|
|
|
|
% 8. Tune graphic filename
|
|
|
|
\newcommand{\showtune}[8]{%
|
2013-08-05 18:06:00 +01:00
|
|
|
\phantomsection
|
|
|
|
\begin{tabularx}{\textwidth}{LCR}
|
2017-10-11 18:09:51 +01:00
|
|
|
#7 & \hypertarget{#1}{\Large{#2}} & \emph{#6} \tabularnewline
|
2013-08-05 13:42:36 +01:00
|
|
|
\ifemptyarg{#3}{}{%
|
2016-11-04 23:57:05 +00:00
|
|
|
& #3 & \tabularnewline
|
2013-08-05 18:06:00 +01:00
|
|
|
}
|
|
|
|
\multicolumn{3}{c}{%
|
2017-10-11 18:09:51 +01:00
|
|
|
\includegraphics[width=\textwidth,height=0.8\textheight,keepaspectratio]{#8}%
|
2013-08-05 18:06:00 +01:00
|
|
|
}\tabularnewline
|
|
|
|
\end{tabularx}
|
2017-10-11 18:09:51 +01:00
|
|
|
\addcontentsline{toc}{section}{#4}
|
2013-07-12 11:36:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
% Show the tune first line. Generate table row.
|
2013-07-18 15:37:23 +01:00
|
|
|
% Args are the tune name, tune title and the first line graphic filename.
|
|
|
|
\newcommand{\showfirstline}[3]{%
|
|
|
|
\hyperlink{#1}{#2} & %
|
|
|
|
\raisebox{-.4\height}{\includegraphics[width=0.77\textwidth]{#3}} \\
|
2013-07-12 11:36:14 +01:00
|
|
|
}
|
|
|
|
|
2018-06-11 09:47:58 +01:00
|
|
|
% Show the section graphic.
|
|
|
|
% Args are the graphic filename.
|
2019-03-26 11:00:35 +00:00
|
|
|
\newcommand{\showsectiongraphic}[2]{%
|
|
|
|
\begin{figure}[h!]
|
|
|
|
\begin{center}
|
|
|
|
\includegraphics[height=0.60\textheight,keepaspectratio]{#1}
|
|
|
|
\end{center}
|
|
|
|
\ifemptyarg{#2}{}{\caption*{#2}}
|
|
|
|
\end{figure}
|
2018-06-11 09:47:58 +01:00
|
|
|
}
|
|
|
|
|
2019-08-06 23:29:51 +01:00
|
|
|
% Add blank pages to make total page count up to a multiple
|
|
|
|
% Args are:
|
|
|
|
% 1. Multiple desired
|
|
|
|
% 2. Pages before start of current page count
|
|
|
|
\newcounter{modpage}
|
|
|
|
\newcounter{modpageno}
|
|
|
|
\newcounter{modpagenodiv}
|
|
|
|
\newcommand{\padpages}[2]{%
|
|
|
|
\pagestyle{empty}%
|
|
|
|
\setcounter{modpageno}{\thepage + #2}%
|
|
|
|
\setcounter{modpagenodiv}{\themodpageno/#1}%
|
|
|
|
\setcounter{modpage}{\themodpageno - #1*\themodpagenodiv}%
|
|
|
|
\ifthenelse{\themodpage=0}%
|
|
|
|
{\relax}%
|
|
|
|
{\setcounter{modpage}{#1 - \themodpage}%
|
|
|
|
\whiledo{\themodpage>0}{%
|
|
|
|
\mbox{}\clearpage\mbox{}%
|
|
|
|
\setcounter{modpage}{\themodpage - 1}%
|
|
|
|
}% end whiledo
|
|
|
|
}% end ifthenelse
|
|
|
|
}% end padpages
|
|
|
|
|
2013-06-26 23:37:45 +01:00
|
|
|
% ----- Paper size document setup
|
|
|
|
|
|
|
|
\input{docsetup.tex}
|
|
|
|
|
|
|
|
% ----- Appearance
|
|
|
|
|
2013-07-20 20:40:02 +01:00
|
|
|
% Lettering in the tune images is in Times, so go with that for consistency.
|
2013-06-26 23:37:45 +01:00
|
|
|
\setmainfont{Times New Roman}
|
|
|
|
|
|
|
|
% Don't show section numbers.
|
|
|
|
\setcounter{secnumdepth}{-1}
|
|
|
|
|
|
|
|
% -----
|
|
|
|
|
|
|
|
\begin{document}
|
|
|
|
|
2013-07-20 20:40:02 +01:00
|
|
|
% ----- Headers and footers
|
|
|
|
|
|
|
|
\pagestyle{fancyplain}
|
|
|
|
\fancyhf{}
|
|
|
|
\cfoot{\thepage}
|
|
|
|
\renewcommand{\headrulewidth}{0pt}
|
|
|
|
|
2013-08-09 13:55:59 +01:00
|
|
|
\pagestylemod
|
|
|
|
|
2013-06-29 11:18:53 +01:00
|
|
|
\frontmatter
|
|
|
|
|
2013-07-20 20:40:02 +01:00
|
|
|
% No page numbering for now, thanks.
|
|
|
|
\pagenumbering{gobble}
|
|
|
|
|
2013-06-26 23:37:45 +01:00
|
|
|
% ----- Title page
|
|
|
|
|
2013-07-07 20:41:05 +01:00
|
|
|
\newgeometry{margin=0.5in}
|
2013-06-26 23:37:45 +01:00
|
|
|
\begin{titlepage}
|
|
|
|
\titleBoD
|
|
|
|
\end{titlepage}
|
2013-07-07 20:41:05 +01:00
|
|
|
\restoregeometry
|
2013-06-26 23:37:45 +01:00
|
|
|
|
2013-07-20 20:40:02 +01:00
|
|
|
% ----- First inside pages. No page numbering here, thanks.
|
2013-07-05 18:56:34 +01:00
|
|
|
|
2013-07-20 20:40:02 +01:00
|
|
|
% Publisher info page.
|
2013-07-05 18:56:34 +01:00
|
|
|
\vspace*{\fill}
|
|
|
|
|
2013-08-04 21:28:05 +01:00
|
|
|
{\small \raggedright
|
|
|
|
|
|
|
|
\textbf{Ye Crie Havoc Booke of Dottes}
|
|
|
|
|
2019-03-23 15:53:26 +00:00
|
|
|
Tune collection and presentation is copyright \copyright{} Jim Hague 2013-2019
|
2013-08-04 21:28:05 +01:00
|
|
|
and is licensed under a Creative Commons
|
|
|
|
Attribution-NonCommercial-ShareAlike 2.0 UK: England \& Wales License.
|
|
|
|
Details at \url{http://creativecommons.org/licenses/by-nc-sa/2.0/uk/}.
|
|
|
|
|
|
|
|
Some tunes are reproduced from Paul Hardy's Session Tunebook
|
|
|
|
(\url{www.paulhardy.net}).
|
|
|
|
|
|
|
|
The right of Jim Hague to be identified as the author of this work has been
|
|
|
|
asserted by him in accordance with the Copyright, Designs and Patents Act 1998.
|
|
|
|
|
2019-03-23 23:02:43 +00:00
|
|
|
First published in the UK 2013 by Jim Hague.\\
|
2019-03-23 15:53:26 +00:00
|
|
|
Second printed edition 2019.
|
2013-07-20 20:40:02 +01:00
|
|
|
|
|
|
|
The Booke of Dottes is a constant work in progress. The latest version
|
|
|
|
is always available from \url{http://dottes.cryhavoc.org.uk/}.
|
2013-08-04 21:28:05 +01:00
|
|
|
This is issue \build, generated \today.
|
2013-07-05 18:56:34 +01:00
|
|
|
|
2013-08-04 21:28:05 +01:00
|
|
|
\textbf{Technical data}
|
|
|
|
|
|
|
|
Book sources can be found at in a Mercurial
|
2019-08-08 07:06:20 +01:00
|
|
|
(\url{https://www.mercurial-scm.org/}) repository at
|
2013-08-04 21:28:05 +01:00
|
|
|
\url{http://hg.cryhavoc.org.uk/dottes/}. Tunes are
|
2019-08-08 07:38:30 +01:00
|
|
|
in Chris Walshaw's abc notation (\url{http://abcnotation.com/}).
|
2013-07-05 18:56:34 +01:00
|
|
|
|
2019-08-08 07:38:30 +01:00
|
|
|
Music typeset by Jef Moine's abcm2ps (\url{http://moinejf.free.fr/}).
|
|
|
|
Document typeset by {\LaTeX} using {\XeLaTeX} from {\TeX} Live on
|
|
|
|
a Debian Linux system.
|
2013-08-04 21:28:05 +01:00
|
|
|
Grateful thanks to all contributors to abc, {\LaTeX}, Debian,
|
|
|
|
Linux and related software.
|
|
|
|
|
|
|
|
}
|
2013-07-05 18:56:34 +01:00
|
|
|
|
2013-07-20 20:40:02 +01:00
|
|
|
\newpage
|
2013-07-07 20:38:29 +01:00
|
|
|
|
2013-07-20 20:40:02 +01:00
|
|
|
% Dedication page.
|
2013-07-05 18:56:34 +01:00
|
|
|
|
2013-07-20 20:40:02 +01:00
|
|
|
\vspace*{\fill}
|
2013-07-05 18:56:34 +01:00
|
|
|
|
2013-07-20 20:40:02 +01:00
|
|
|
\begin{center}
|
|
|
|
{\Large to Jane} \\
|
|
|
|
{\large \emph{for the music, and the dance}}
|
|
|
|
\end{center}
|
2013-07-05 18:56:34 +01:00
|
|
|
|
2013-07-20 20:40:02 +01:00
|
|
|
\vspace*{\fill}
|
2013-06-26 23:37:45 +01:00
|
|
|
|
2013-07-20 20:40:02 +01:00
|
|
|
\newpage
|
2013-06-26 23:37:45 +01:00
|
|
|
|
2013-07-20 20:40:02 +01:00
|
|
|
% ----- Here we go with numbered frontmatter pages.
|
2013-06-26 23:37:45 +01:00
|
|
|
|
2013-07-05 18:56:34 +01:00
|
|
|
\pagenumbering{roman}
|
|
|
|
|
|
|
|
\chapter{Introduction}
|
2013-06-26 23:37:45 +01:00
|
|
|
|
2013-07-08 10:35:23 +01:00
|
|
|
Music forms a core part of Cry Havoc Botley Morris. Of course, the
|
|
|
|
musicians provide the music we dance to. And after every practice or
|
|
|
|
dance-out, there is a music-playing session.
|
2013-06-29 10:14:29 +01:00
|
|
|
|
|
|
|
Havoc musicians come in all shades of experience and ability.
|
|
|
|
This collection is intended to help those like me who are inexpert with
|
|
|
|
instrument and folk music generally, but have a little musical background.
|
|
|
|
|
|
|
|
Being folk tunes, many of the tunes herein have many variations.
|
|
|
|
The music presented here is my attempt at reflecting what the musicians
|
|
|
|
of Cry Havoc play. I'm in no way suggesting that they are
|
|
|
|
in any way \emph{correct}. This is just how we go about them.
|
|
|
|
|
2013-07-05 18:56:34 +01:00
|
|
|
The majority of tunes in this book have no identifiable author, and
|
|
|
|
are unquestionably in the public domain. Rather than litter the
|
|
|
|
pages with \emph{Trad.} or \emph{Anon.}, I have left them unattributed.
|
2013-08-21 10:21:19 +01:00
|
|
|
Some, however, may have an identifiable author or arranger and copyright
|
2013-07-05 18:56:34 +01:00
|
|
|
unquestionably remains with that person. I believe these tunes to
|
|
|
|
enjoy widespread currency on the folk music scene, and therefore there
|
|
|
|
is at least tacit approval by the authors for their dissemination.
|
|
|
|
If this is not the case, please contact me at
|
2013-08-05 13:30:08 +01:00
|
|
|
\href{mailto:dottes@cryhavoc.org.uk}{\url{dottes@cryhavoc.org.uk}} and I will
|
2013-06-26 23:37:45 +01:00
|
|
|
remove the offending tune.
|
|
|
|
|
2019-08-08 22:13:09 +01:00
|
|
|
This book has an accompanying website, {\url{http://dottes.cryhavoc.org.uk}}.
|
2019-08-08 22:11:40 +01:00
|
|
|
It's updated from time to time with the latest tunes we're playing.
|
|
|
|
As well as the written music (the dots), you can listen to the computer play
|
2019-08-09 10:11:49 +01:00
|
|
|
each tune and its chords, or download the audio or the dots.
|
2019-08-08 22:11:40 +01:00
|
|
|
For those who want to learn by ear, there's
|
|
|
|
a page for each tune with the computer playing the melody only, at
|
|
|
|
four different speeds. You can also download the latest version of
|
|
|
|
the various print books, formatted for A4 or A5 size paper, to print at home.
|
|
|
|
|
2018-04-25 23:34:18 +01:00
|
|
|
Finally, many, many thanks to all who have helped me with this project,
|
2019-04-08 20:10:48 +01:00
|
|
|
in particular fellow Havocs KateK, Nerys, MickP, Susie and Ed. And most
|
2018-04-25 23:34:18 +01:00
|
|
|
especially to Jane, without whose enthusiasm, support and encouragement
|
|
|
|
this would never have been possible.
|
|
|
|
|
2013-07-20 20:40:02 +01:00
|
|
|
\section{About Cry Havoc}
|
|
|
|
|
|
|
|
Cry Havoc are a friendly mixed Cotswold Morris side based in Botley, Oxford.
|
|
|
|
We practice between September and April on Thursday evenings at the
|
|
|
|
Botley Womens' Institute Hall, North Hinksey Lane, Botley, Oxford OX2 0LT and
|
|
|
|
dance out in the summer months at locations around Oxfordshire.
|
|
|
|
|
|
|
|
Find out more at \url{http://www.cryhavoc.org.uk/}, or email
|
2013-08-05 13:30:08 +01:00
|
|
|
\href{mailto:bag@cryhavoc.org.uk}{\url{bag@cryhavoc.org.uk}} for more
|
2013-07-20 20:40:02 +01:00
|
|
|
information. Would-be dancers or musicians always welcome.
|
|
|
|
|
|
|
|
The Booke of Dottes was first produced to mark Cry Havoc's 20th
|
2017-09-14 13:14:00 +01:00
|
|
|
anniversary in 2013, and substantially updated for our 25th anniversary
|
|
|
|
in 2018.
|
2013-07-20 20:40:02 +01:00
|
|
|
|
|
|
|
% -----
|
|
|
|
|
|
|
|
\tableofcontents
|
2013-06-29 10:14:29 +01:00
|
|
|
|
2019-08-07 08:21:23 +01:00
|
|
|
\newcounter{lastfrontmatterpage}
|
|
|
|
\setcounter{lastfrontmatterpage}{\value{page}}
|
|
|
|
|
2013-06-26 23:37:45 +01:00
|
|
|
% -----
|
|
|
|
|
2013-06-29 11:18:53 +01:00
|
|
|
\mainmatter
|
2013-06-26 23:37:45 +01:00
|
|
|
|
|
|
|
\input{tunes.tex}
|
|
|
|
|
|
|
|
% -----
|
|
|
|
|
2013-07-05 18:56:34 +01:00
|
|
|
\chapter{List of tune first lines}
|
2013-06-26 23:37:45 +01:00
|
|
|
|
|
|
|
You know the feeling. Everyone has just launched into a well-loved tune.
|
|
|
|
You've heard it before, but don't remember the name. So here's a list of
|
|
|
|
tune first lines to help you figure out what it is in time to join in.
|
|
|
|
|
|
|
|
\input{firstlines.tex}
|
|
|
|
|
2019-08-08 15:30:47 +01:00
|
|
|
% ----- Back cover page, notes page etc.
|
2013-07-05 18:56:34 +01:00
|
|
|
|
2013-07-05 20:29:44 +01:00
|
|
|
\backmatter
|
2013-07-05 18:56:34 +01:00
|
|
|
|
2013-08-09 13:55:59 +01:00
|
|
|
\input{docend.tex}
|
2013-06-26 23:37:45 +01:00
|
|
|
|
|
|
|
\end{document}
|