From 193d7fde2f621937603ec5c85713c2452fa7a0ed Mon Sep 17 00:00:00 2001 From: Jim Hague Date: Sun, 8 Oct 2017 17:06:09 +0100 Subject: [PATCH] First attempt at adding Tradition below subtitle in web and print. --- abctemplate.py | 2 ++ dottes.html.tune | 1 + dottes.tex | 17 ++++++++++------- dottes.tex.tune | 2 +- web/css/dottes.css | 7 +++++++ 5 files changed, 21 insertions(+), 8 deletions(-) diff --git a/abctemplate.py b/abctemplate.py index 6b9d6f9..6c4e0fd 100755 --- a/abctemplate.py +++ b/abctemplate.py @@ -21,6 +21,7 @@ # * name. The file base name. Base filename without extension. # * title. The tune title. # * subtitle. The tune subtitle (second Title field), if any. +# * tradition. The Morris tradition the dance tune is from. # * composer. The tune composer. # * key. The tune key. # * changefile. The name of the 'change' file, if any. @@ -66,6 +67,7 @@ if __name__ == "__main__": vars["name"] = fname vars["title"] = getFieldDisplayText(lines, fdir, "T", latex=args.latex) vars["subtitle"] = getFieldDisplayText(lines, fdir, "T", n=2, latex=args.latex) + vars["tradition"] = getFieldDisplayText(lines, fdir, "A", latex=args.latex) vars["composer"] = getFieldDisplayText(lines, fdir, "C", latex=args.latex) vars["key"] = getFieldDisplayText(lines, fdir, "K", latex=args.latex) vars["notes"] = getFieldDisplayText(lines, fdir, "N", starts="Dottes:", latex=args.latex) diff --git a/dottes.html.tune b/dottes.html.tune index 32af4dc..c2831cd 100644 --- a/dottes.html.tune +++ b/dottes.html.tune @@ -37,6 +37,7 @@

${title}

${subtitle}

+

${tradition}

${composer} diff --git a/dottes.tex b/dottes.tex index bd53a68..25907c2 100644 --- a/dottes.tex +++ b/dottes.tex @@ -45,23 +45,26 @@ \makeatother % Show the main tune graphic and optional change. -% Args are tune name, tune title, tune subtitle, composer, tune graphic -% filename, notes, history. -\newcommand{\showtune}[7]{% +% Args are tune name, tune title, tune subtitle, tradition, composer, +% tune graphic, filename, notes, history. +\newcommand{\showtune}[8]{% \phantomsection \begin{tabularx}{\textwidth}{LCR} \addcontentsline{toc}{section}{#2} - & \hypertarget{#1}{\Large{#2}} & \emph{#4} \tabularnewline + & \hypertarget{#1}{\Large{#2}} & \emph{#5} \tabularnewline \ifemptyarg{#3}{}{% & #3 & \tabularnewline } + \ifemptyarg{#4}{}{% + & \emph{#4} & \tabularnewline + } \multicolumn{3}{c}{% - \includegraphics[width=\textwidth,height=0.8\textheight,keepaspectratio]{#5}% + \includegraphics[width=\textwidth,height=0.8\textheight,keepaspectratio]{#6}% }\tabularnewline \end{tabularx} - #6 - #7 + + #8 \vfill } diff --git a/dottes.tex.tune b/dottes.tex.tune index 5a9dce2..39b88b3 100644 --- a/dottes.tex.tune +++ b/dottes.tex.tune @@ -1 +1 @@ -\showtune{$name}{$title}{$subtitle}{$composer}{$graphicsdir/$name}{$notes}{$history} +\showtune{$name}{$title}{$subtitle}{$tradition}{$composer}{$graphicsdir/$name}{$notes}{$history} diff --git a/web/css/dottes.css b/web/css/dottes.css index de9257b..f3f7e68 100644 --- a/web/css/dottes.css +++ b/web/css/dottes.css @@ -176,6 +176,13 @@ div.dottes-tune-header-title h2 margin: 0px; } +div.dottes-tune-header-title h3 +{ + font-style: italic; + text-align: center; + margin: 0px; +} + div.dottes-tune-header-composer { display: table-cell;