% Opus Orchestrator - Journal/Workbook Template % Interactive journals, workbooks, planners \documentclass[10pt]{memoir} % Packages \usepackage[utf8]{inputenc} \usepackage[T1]{fontenc} \usepackage{graphicx} \usepackage{hyperref} \usepackage{geometry} \usepackage{tasks} \usepackage{xcolor} \usepackage{booktabs} \usepackage{multicol} \usepackage{enumitem} % Journal trim \geometry{ paperwidth=7in, paperheight=9in, textwidth=5.5in, textheight=7.5in, inner=0.75in, outer=0.75in, } % Hyperref \hypersetup{colorlinks=false} % Fonts \usepackage{mathptmx} % Chapter style \chapterstyle{plain} % Task lists \settasks{label=(\arabic*), label-width=1.5em} % Boxed sections \usepackage{tcolorbox} \newtcolorbox{sectionbox}[1][]{ colback=blue!5, colframe=blue!75!black, #1 } % Metadata \def\booktitle{$book_title$} \def\bookauthor{$author$} \def\bookdate{$date$} \begin{document} % Title page \thispagestyle{empty} \begin{center} \vspace*{1.5in} {\Huge\bfseries\booktitle\par} \vspace{1in} {\large by \bookauthor\par} \vfill {\large\bookdate} \end{center} % Copyright \clearpage \thispagestyle{empty} \vspace*{\fill} \begin{center} Copyright \textcopyright\ \bookdate\ \bookauthor\\ All rights reserved. \end{center} \vspace*{\fill} % Contents \clearpage \tableofcontents \mainmatter $body$ % Notes section \clearpage \section*{Notes} \vspace{1in} \begin{multicols}{2} \noindent\rule{\linewidth}{0.5pt} \vfill\columnbreak \noindent\rule{\linewidth}{0.5pt} \vfill\columnbreak \noindent\rule{\linewidth}{0.5pt} \end{multicols} \end{document}