first colophon draft
This commit is contained in:
parent
32c5988a62
commit
6388be32a4
@ -43,17 +43,18 @@ done
|
|||||||
|
|
||||||
# CREATE WRAPPER
|
# CREATE WRAPPER
|
||||||
WRAPPER="""
|
WRAPPER="""
|
||||||
%\documentclass[twoside]{$DOCCLASS}
|
|
||||||
\documentclass[twoside,${PAGESIZE}paper]{$DOCCLASS}
|
\documentclass[twoside,${PAGESIZE}paper]{$DOCCLASS}
|
||||||
\usepackage[fontsize=${FONTSIZE}pt]{fontsize}
|
\usepackage[fontsize=${FONTSIZE}pt]{fontsize}
|
||||||
%\usepackage[${PAGESIZE}paper]{geometry}
|
|
||||||
\usepackage{libertine} % also loads fontspec which is needed for ɔ and ɛ
|
\usepackage{libertine} % also loads fontspec which is needed for ɔ and ɛ
|
||||||
%\usepackage{minitoc} % make mini table of content for each chapter
|
%\usepackage{minitoc} % make mini table of content for each chapter
|
||||||
\usepackage{graphicx} % include graphics
|
\usepackage{graphicx} % include graphics
|
||||||
|
\usepackage{tcolorbox} % https://en.wikipedia.org/wiki/Colophon_(publishing)
|
||||||
\usepackage{placeins} % https://tex.stackexchange.com/a/88659/264579
|
\usepackage{placeins} % https://tex.stackexchange.com/a/88659/264579
|
||||||
\usepackage{csquotes} % \enquote
|
\usepackage{csquotes} % \enquote
|
||||||
\usepackage{reledmac} % needed for repedpar
|
\usepackage{reledmac} % needed for repedpar
|
||||||
\usepackage{reledpar} % parallel text
|
\usepackage{reledpar} % parallel text
|
||||||
|
\firstlinenum*{1000}
|
||||||
|
\linenumincrement*{1000}
|
||||||
\newcommand{\pagesinclude}[2]{
|
\newcommand{\pagesinclude}[2]{
|
||||||
\begin{pages}
|
\begin{pages}
|
||||||
\begin{Leftside}
|
\begin{Leftside}
|
||||||
@ -72,7 +73,67 @@ WRAPPER="""
|
|||||||
\title{$TITLE}
|
\title{$TITLE}
|
||||||
\author{$AUTHOR}
|
\author{$AUTHOR}
|
||||||
\begin{document}
|
\begin{document}
|
||||||
\maketitle
|
"""
|
||||||
|
TITLE_PAGE="""
|
||||||
|
%\date{}
|
||||||
|
%\maketitle
|
||||||
|
%%%
|
||||||
|
\begin{titlingpage} %This starts the title page
|
||||||
|
\begin{center}
|
||||||
|
% ~
|
||||||
|
\vspace{2cm} %put the distance you need.
|
||||||
|
% ~
|
||||||
|
\begin{HUGE}
|
||||||
|
\thetitle \\
|
||||||
|
\end{HUGE}
|
||||||
|
\vspace{3cm} %put the distance you need.
|
||||||
|
\begin{large}
|
||||||
|
\theauthor\\
|
||||||
|
\end{large}
|
||||||
|
%\thedate
|
||||||
|
\begin{figure}[hb]
|
||||||
|
\centering
|
||||||
|
% \includegraphics[width=\adinkrawidth]{img/sankofa.jpeg}
|
||||||
|
\end{figure}
|
||||||
|
% \vspace{3cm} %put the distance you need.
|
||||||
|
% \begin{figure}[hb]
|
||||||
|
% \centering
|
||||||
|
%% \includegraphics[width=.2\textwidth]{img/ghana_flag.jpeg}
|
||||||
|
% \end{figure}
|
||||||
|
\end{center}
|
||||||
|
\end{titlingpage}
|
||||||
|
%%%
|
||||||
|
"""
|
||||||
|
COLOPHON="""
|
||||||
|
\cleardoublepage
|
||||||
|
\thispagestyle{empty}
|
||||||
|
\begin{vplace}[0.7]
|
||||||
|
\begin{centering}
|
||||||
|
\begin{huge}
|
||||||
|
\thetitle
|
||||||
|
\end{huge}
|
||||||
|
\\
|
||||||
|
\vspace{3cm}
|
||||||
|
\begin{LARGE}
|
||||||
|
\begin{tcolorbox}[width=.5\textwidth]
|
||||||
|
\centering
|
||||||
|
% \texttt{AQO}\\
|
||||||
|
% \texttt{ABA}\\
|
||||||
|
% \texttt{~\newline AQO\newline ABA\newline}%\\
|
||||||
|
\texttt{$PRINTER}
|
||||||
|
\end{tcolorbox}
|
||||||
|
\end{LARGE}
|
||||||
|
% \includegraphics[width=.3\textwidth]{img/onipa_logo.png}
|
||||||
|
\vspace{2cm}
|
||||||
|
\par\noindent\rule{\textwidth}{0.4pt}
|
||||||
|
\large { \the\year{} }\\
|
||||||
|
$EDITION\\
|
||||||
|
\end{centering}
|
||||||
|
\end{vplace}
|
||||||
|
\clearpage
|
||||||
|
"""
|
||||||
|
TOC="""
|
||||||
|
\cleardoublepage
|
||||||
\tableofcontents
|
\tableofcontents
|
||||||
"""
|
"""
|
||||||
WRAPPER_END="""
|
WRAPPER_END="""
|
||||||
@ -80,6 +141,9 @@ WRAPPER_END="""
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
echo "$WRAPPER" > $PROJECT.tex
|
echo "$WRAPPER" > $PROJECT.tex
|
||||||
|
echo "$TITLE_PAGE" >> $PROJECT.tex
|
||||||
|
echo "$COLOPHON" >> $PROJECT.tex
|
||||||
|
echo "$TOC" >> $PROJECT.tex
|
||||||
# INCLUDE INDIVIDUAL TEX FILE
|
# INCLUDE INDIVIDUAL TEX FILE
|
||||||
first_lang="true"
|
first_lang="true"
|
||||||
IFS_OLD=$IFS
|
IFS_OLD=$IFS
|
||||||
|
@ -4,10 +4,12 @@ DOCCLASS_EXTRA="twoside"
|
|||||||
FONTSIZE="10"
|
FONTSIZE="10"
|
||||||
PAGESIZE="a5"
|
PAGESIZE="a5"
|
||||||
PROJECT="asem"
|
PROJECT="asem"
|
||||||
TITLE="Nsɛm wɔ Twi ne Brɔfo\\\LARGE Texts in Twi and English"
|
TITLE="Nsɛm wɔ Twi ne Brɔfo\\\\ \\LARGE Texts in Twi and English"
|
||||||
AUTHOR=""
|
AUTHOR=""
|
||||||
INFILES="""
|
INFILES="""
|
||||||
Anansesem - Ghanaian Folk Tales
|
Anansesem - Ghanaian Folk Tales
|
||||||
testfiles/parallel-ak.md
|
testfiles/parallel-ak.md
|
||||||
testfiles/parallel-en.md
|
testfiles/parallel-en.md
|
||||||
"""
|
"""
|
||||||
|
PRINTER="AQO\\\\ABA"
|
||||||
|
EDITION="First Edition"
|
||||||
|
Loading…
Reference in New Issue
Block a user