summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2022-02-27 21:29:42 +0000
committerKarl Berry <karl@freefriends.org>2022-02-27 21:29:42 +0000
commit7daa213135df698779b8a41620c31cb4af2e3a04 (patch)
tree1f984ebfa3e72f5691b99a521cbd4419496ae1cb /Master/texmf-dist/tex
parent4097b52ea86a51c6e0172880ec89ee3d09ed8d10 (diff)
book-of-common-prayer (27feb22) (branch)
git-svn-id: svn://tug.org/texlive/branches/branch2021.final@62241 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex')
-rw-r--r--Master/texmf-dist/tex/latex/book-of-common-prayer/book-of-common-prayer.sty (renamed from Master/texmf-dist/tex/xelatex/book-of-common-prayer/book-of-common-prayer.sty)33
1 files changed, 31 insertions, 2 deletions
diff --git a/Master/texmf-dist/tex/xelatex/book-of-common-prayer/book-of-common-prayer.sty b/Master/texmf-dist/tex/latex/book-of-common-prayer/book-of-common-prayer.sty
index 168e95e56ae..68189ee7dbc 100644
--- a/Master/texmf-dist/tex/xelatex/book-of-common-prayer/book-of-common-prayer.sty
+++ b/Master/texmf-dist/tex/latex/book-of-common-prayer/book-of-common-prayer.sty
@@ -1,7 +1,7 @@
% Author: Arlie Coles
% License: LaTeX Project Public License 1.3c
\NeedsTeXFormat{LaTeX2e}
-\ProvidesPackage{book-of-common-prayer}[2021/06/27 Liturgical documents in the style of the Book of Common Prayer]
+\ProvidesPackage{book-of-common-prayer}[2022/02/26 Liturgical documents in the style of the Book of Common Prayer]
\RequirePackage[no-math]{fontspec}
\RequirePackage[left=0.5in, right=0.5in, vmargin=0.5in]{geometry}
@@ -20,6 +20,7 @@
\RequirePackage{pgf}
\RequirePackage{pgfopts}
\RequirePackage{bilingualpages}
+\RequirePackage{changepage}
% The BCP font is Sabon, so allow this option
\DeclareOption{sabon}{\setmainfont[Ligatures=TeX]{Sabon LT Std}}
@@ -49,8 +50,9 @@
\newcommand{\tab}{\hspace*{1em}}
\newcommand{\blankline}{\vspace{\parskip}}
\newcommand{\deleteline}{\vspace{-\parskip}}
+\newcommand{\spacer}{\vspace{0.1cm}} % A bit of breathing room between responses
-% Cover image
+% Cover image with border around it
\usepackage{graphicx}
\newcommand{\munepsfig}[3][scale=1.0]{% <===============================
\begin{figure}[!htbp]
@@ -110,7 +112,10 @@
% Roles to go with the responses - the people are bolded
\newcommand{\priest}[1]{\textit{Priest} & #1 \\}
\newcommand{\deacon}[1]{\textit{Deacon} & #1 \\}
+\newcommand{\subdeacon}[1]{\textit{Subdeacon} & #1 \\}
\newcommand{\officiant}[1]{\textit{Officiant} & #1 \\}
+\newcommand{\lector}[1]{\textit{Lector} & #1 \\}
+\newcommand{\epistoler}[1]{\textit{Epistoler} & #1 \\}
\newcommand{\people}[1]{\textit{People} & \textbf{#1} \\}
\newcommand{\servers}[1]{\textit{Servers} & #1 \\}
\newcommand{\contd}[1]{& #1 \\}
@@ -213,3 +218,27 @@
\par\nointerlineskip \vspace{.5\baselineskip}
}
\newcommand{\sectionline}{\makesectionline{black}{88}}
+
+% PSALMS
+% Command for the two-part structure of a psalm verse
+\newcommand{\psalmverse}[2]{
+ % Adjust parskip; no blank lines in between
+ \setlength{\parskip}{0pt}
+
+ % Render the first part
+ #1 *
+ % Hang in the second part
+ \begin{adjustwidth}{2em}{0pt}
+ #2
+ \end{adjustwidth}
+
+ % Put parskip back
+ \setlength{\parskip}{12pt}
+}
+
+
+% Cont'd marker at bottom of page
+\newcommand{\continued}{
+ \vspace*{\fill}
+ \instruct{\hfill \small \textit{(cont'd)}}
+}