A personal planner which I am developing in LaTeX. You are free to download and adapt to your own purposes. This is my first project in LaTeX. Pull requests are welcome.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

185 lines
3.4 KiB

\documentclass[twoside]{book}
\usepackage[
letterpaper,
bindingoffset=15mm,
textheight=250mm,
textwidth=175mm,
top=1in,
bottom=20mm,
footskip=0.5in,
marginparwidth=0mm,
marginparsep=0mm
]{geometry}
%\usepackage{showframe}
%\renewcommand*\ShowFrameColor{\color{red}}
\author{Kenneth John Odle}
\usepackage[utf8]{inputenc}
\usepackage{kpfonts}
% Use a better tabular system
\usepackage{tabularray}
% Put page numbers in bottom center
\pagestyle{plain}
% Add our copyright image
\usepackage{graphicx}
\graphicspath{ {./images/} }
% Let's put explanatory stuff in two columns a half inch apart
\usepackage{multicol}
\setlength\columnsep{0.4in}
% https://texfaq.org/FAQ-repeat-num
% https://ctan.org/pkg/forloop
% Output a variable value: https://sodocumentation.net/latex/topic/9224/counters--if-statements-and-loops-with-latex
\usepackage{forloop}
\raggedright
\raggedbottom
\begin{document}
\chapter*{}
\thispagestyle{empty}
% \pagenumbering{gobble}
% Eliminates page number on reverse side; see https://texfaq.org/FAQ-nopageno
\begin{center}
{\Huge Annual and Monthly Goals}
\medskip
by Kenneth John Odle
\medskip
v. 2.0.0
\medskip
\today{}
\vspace*{10cm}
\includegraphics[scale=0.5]{ccancs4}
\bigskip
\begin{minipage}{14cm}
\begin{flushleft}
This work is provided under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.
\end{flushleft}
This means:
\begin{itemize}
\itemsep-0.30em
\item You are free to share this work.
\item You are free to adapt this work.
\item You are free to share your adaptation(s) of this work.
\item You are not allowed to sell this work or your adaptation(s) of this work.
\item You must attribute it to the author by providing the following link:
\end{itemize}
\texttt{https://git.kjodle.net/kjodle/planner-in-latex}
\end{minipage}
\end{center}
\chapter*{Goals}
\begin{multicols}{2}
On the following pages, we have an annual goal on the left, along with the ``who, what, when,'' with a breakdown of monthly sub-goals on the right.
\end{multicols}
\newcounter{ct}
\forloop{ct}{1}{\value{ct}<8}{
%%%%%%%%%%%%%%%%%%%%%
\newpage
\begin{center}
{\Large \textbf{Annual Goal \# \thect }}
\end{center}
\vspace{5mm}
\noindent
\begin{tblr}{
width=175mm,
colspec={ X[1,c] X[8,l] },
vlines,
hlines,
rows={7mm, m, rowsep=1.0pt}
}
\SetCell[r=4]{c} \textbf{What} & What do I want to achieve? \\
& \\
& \\
& \\
\SetCell[r=4]{c} \textbf{Who} & Who benefits? Whose help do I need? \\
& \\
& \\
& \\
\SetCell[r=4]{c} \textbf{How} & Which skills do I need? \\
& \\
& \\
& \\
\SetCell[r=4]{c} \textbf{When} & What is my timeline? \\
& \\
& \\
& \\
\SetCell[r=4]{c} \textbf{Where} & Where will I accomplish this? \\
& \\
& \\
& \\
\SetCell[r=4]{c} \textbf{Why} & Why is this goal important to me? \\
& \\
& \\
& \\
\end{tblr}
\newpage
\begin{center}
{\Large \textbf{Monthly Sub-Goals for Annual Goal \# \thect }}
\end{center}
\vspace{5mm}
\noindent
\begin{tblr}{
width=175mm,
colspec={ X[1,c] X[8,l] },
vlines,
hlines,
rows={7mm, m, rowsep=1.0pt}
}
\SetCell[r=4]{c} \textbf{Sub-Goal\\ \#1} & \\
& \\
& \\
& \\
\SetCell[r=4]{c} \textbf{Sub-Goal\\ \#2} & \\
& \\
& \\
& \\
\SetCell[r=4]{c} \textbf{Sub-Goal\\ \#3} & \\
& \\
& \\
& \\
\SetCell[r=4]{c} \textbf{Sub-Goal\\ \#4} & \\
& \\
& \\
& \\
\SetCell[r=4]{c} \textbf{Sub-Goal\\ \#4} & \\
& \\
& \\
& \\
\SetCell[r=4]{c} \textbf{Sub-Goal\\ \#6} & \\
& \\
& \\
& \\
\end{tblr}
} % End forloop
\end{document}