Added left-hand version of Cornell notes
This commit is contained in:
parent
c51542e4cf
commit
5337be53fa
245
cornell-left.tex
Normal file
245
cornell-left.tex
Normal file
@ -0,0 +1,245 @@
|
|||||||
|
\documentclass[twoside]{article}
|
||||||
|
|
||||||
|
% Let's set up our page size
|
||||||
|
\usepackage[
|
||||||
|
letterpaper,
|
||||||
|
% A4,
|
||||||
|
% Adjust the measurements below if necessary for A4 paper
|
||||||
|
bindingoffset=15mm,
|
||||||
|
textheight=250mm,
|
||||||
|
textwidth=175mm,
|
||||||
|
top=12mm,
|
||||||
|
bottom=10mm,
|
||||||
|
footskip=0mm,
|
||||||
|
marginparwidth=0mm,
|
||||||
|
marginparsep=0mm
|
||||||
|
]{geometry}
|
||||||
|
|
||||||
|
% Select an appropriate monotype font
|
||||||
|
\usepackage[varqu]{inconsolata}
|
||||||
|
|
||||||
|
% Make nice boxes for our notes
|
||||||
|
\usepackage[most]{tcolorbox}
|
||||||
|
|
||||||
|
% Gain control over our numbered lists
|
||||||
|
\usepackage[shortlabels]{enumitem}
|
||||||
|
|
||||||
|
% Make more than one page % NO TOUCHY!
|
||||||
|
\usepackage{forloop}
|
||||||
|
\newcounter{ct} % Create a counter for our loop
|
||||||
|
\newcounter{pgct} % Create a counter for our pages
|
||||||
|
\setcounter{pgct}{1}
|
||||||
|
|
||||||
|
% Set this value to the number of pages you want
|
||||||
|
\def\lfct{10}
|
||||||
|
|
||||||
|
% Define color variables so that it is easy to change colors consistently
|
||||||
|
\def\bordercolor{cyan!50!white}
|
||||||
|
\def\titlebg{cyan!10!white}
|
||||||
|
\def\titletxt{cyan!75!white}
|
||||||
|
\def\linecolor{cyan!25!white}
|
||||||
|
\def\numbercolor{cyan!50!white}
|
||||||
|
|
||||||
|
\def\infoframe{red!25}
|
||||||
|
\def\infotxt{red!70}
|
||||||
|
|
||||||
|
% Let's make lines easier
|
||||||
|
\def\kline{{\color{\linecolor}\hrulefill}}
|
||||||
|
|
||||||
|
\begin{document}
|
||||||
|
\ttfamily
|
||||||
|
|
||||||
|
% Begin our loop
|
||||||
|
\forloop{ct}{0}{\value{ct}<\lfct{}}{
|
||||||
|
|
||||||
|
\thispagestyle{empty}
|
||||||
|
|
||||||
|
%%%%% Information Box %%%%%
|
||||||
|
\begin{tcolorbox}[
|
||||||
|
title=\hphantom{wwn}Information,
|
||||||
|
colback=white,
|
||||||
|
colbacktitle=\titlebg,
|
||||||
|
coltitle=\titletxt,
|
||||||
|
colframe=\bordercolor,
|
||||||
|
boxrule=0.3mm,
|
||||||
|
left=-1mm,
|
||||||
|
right=-1mm,
|
||||||
|
top=-1mm,
|
||||||
|
bottom=-1mm,
|
||||||
|
]
|
||||||
|
\begin{tcbraster}[
|
||||||
|
raster columns=6,
|
||||||
|
colbacktitle=\titlebg,
|
||||||
|
raster column skip=0mm,
|
||||||
|
raster row skip=0mm,
|
||||||
|
left=0mm
|
||||||
|
]
|
||||||
|
\begin{tcolorbox}[
|
||||||
|
height=10mm,
|
||||||
|
colframe=\infoframe,
|
||||||
|
colback=white,
|
||||||
|
beforeafter skip=-1mm,
|
||||||
|
raster multicolumn=4,
|
||||||
|
sharp corners=all,
|
||||||
|
colupper=\infotxt,
|
||||||
|
boxrule=0.3mm,
|
||||||
|
toprule=0mm,
|
||||||
|
leftrule=0mm,
|
||||||
|
]
|
||||||
|
Name:
|
||||||
|
\end{tcolorbox}
|
||||||
|
\begin{tcolorbox}[height=10mm,
|
||||||
|
colframe=\infoframe,
|
||||||
|
colback=white,
|
||||||
|
beforeafter skip=-1mm,
|
||||||
|
raster multicolumn=2,
|
||||||
|
sharp corners=all,
|
||||||
|
colupper=\infotxt,
|
||||||
|
boxrule=0.3mm,
|
||||||
|
toprule=0mm,
|
||||||
|
rightrule=0mm,
|
||||||
|
leftrule=0mm,
|
||||||
|
]
|
||||||
|
Class:
|
||||||
|
\end{tcolorbox}
|
||||||
|
\begin{tcolorbox}[
|
||||||
|
height=10mm,
|
||||||
|
colframe=\infoframe,
|
||||||
|
colback=white,
|
||||||
|
beforeafter skip=-1mm,
|
||||||
|
raster multicolumn=4,
|
||||||
|
sharp corners=all,
|
||||||
|
rounded corners=southwest,
|
||||||
|
colupper=\infotxt,
|
||||||
|
boxrule=0.3mm,
|
||||||
|
leftrule=0mm,
|
||||||
|
bottomrule=0mm,
|
||||||
|
toprule=0mm,
|
||||||
|
]
|
||||||
|
Topic:
|
||||||
|
\end{tcolorbox}
|
||||||
|
\begin{tcolorbox}[
|
||||||
|
height=10mm,
|
||||||
|
colframe=\infoframe,
|
||||||
|
colback=white,
|
||||||
|
beforeafter skip=-1mm,
|
||||||
|
raster multicolumn=2,
|
||||||
|
sharp corners=all,
|
||||||
|
rounded corners=southeast,
|
||||||
|
colupper=\infotxt,
|
||||||
|
boxrule=0.0mm,
|
||||||
|
]
|
||||||
|
Date:\hphantom{XXLXXLXXXXXXXX} Page: {\Large \arabic{pgct}}
|
||||||
|
\end{tcolorbox}
|
||||||
|
\end{tcbraster}
|
||||||
|
\end{tcolorbox}
|
||||||
|
|
||||||
|
% Adjust spacing
|
||||||
|
\vspace{-2mm}
|
||||||
|
|
||||||
|
%%%%% Notes and Cues Boxes %%%%%
|
||||||
|
\begin{tcbraster}[
|
||||||
|
raster columns=4,
|
||||||
|
raster column skip=1mm,
|
||||||
|
colbacktitle=\titlebg
|
||||||
|
]
|
||||||
|
\begin{tcolorbox}[
|
||||||
|
equal height group=A,
|
||||||
|
title=Cues,
|
||||||
|
raster multicolumn=1,
|
||||||
|
colback=white,
|
||||||
|
colbacktitle=\titlebg,
|
||||||
|
coltitle=\titletxt,
|
||||||
|
colframe=\bordercolor,
|
||||||
|
boxrule=0.3mm,
|
||||||
|
]
|
||||||
|
\end{tcolorbox}
|
||||||
|
\begin{tcolorbox}[
|
||||||
|
equal height group=A,
|
||||||
|
title=Notes,
|
||||||
|
raster multicolumn=3,
|
||||||
|
colback=white,
|
||||||
|
colbacktitle=\titlebg,
|
||||||
|
coltitle=\titletxt,
|
||||||
|
colframe=\bordercolor,
|
||||||
|
boxrule=0.3mm,
|
||||||
|
]
|
||||||
|
\begin{enumerate}[
|
||||||
|
leftmargin=1mm,
|
||||||
|
rightmargin=-4mm,
|
||||||
|
labelsep=1mm,
|
||||||
|
label=\color{\numbercolor}\theenumi,
|
||||||
|
parsep=0mm,
|
||||||
|
]
|
||||||
|
\item \kline
|
||||||
|
\item \kline
|
||||||
|
\item \kline
|
||||||
|
\item \kline
|
||||||
|
\item \kline
|
||||||
|
\item \kline
|
||||||
|
\item \kline
|
||||||
|
\item \kline
|
||||||
|
\item \kline
|
||||||
|
\item \kline
|
||||||
|
\item \kline
|
||||||
|
\item \kline
|
||||||
|
\item \kline
|
||||||
|
\item \kline
|
||||||
|
\item \kline
|
||||||
|
\item \kline
|
||||||
|
\item \kline
|
||||||
|
\item \kline
|
||||||
|
\item \kline
|
||||||
|
\item \kline
|
||||||
|
\item \kline
|
||||||
|
\item \kline
|
||||||
|
\item \kline
|
||||||
|
\item \kline
|
||||||
|
\item \kline
|
||||||
|
\item \kline
|
||||||
|
\item \kline
|
||||||
|
\item \kline
|
||||||
|
\item \kline
|
||||||
|
\item \kline
|
||||||
|
\item \kline
|
||||||
|
\item \kline
|
||||||
|
\end{enumerate}
|
||||||
|
\end{tcolorbox}
|
||||||
|
\end{tcbraster}
|
||||||
|
|
||||||
|
% Adjust spacing
|
||||||
|
\vspace{-2mm}
|
||||||
|
|
||||||
|
%%%%% Summary Box %%%%%
|
||||||
|
\begin{tcolorbox}[
|
||||||
|
title=Summary,
|
||||||
|
colback=white,
|
||||||
|
colbacktitle=\titlebg,
|
||||||
|
coltitle=\titletxt,
|
||||||
|
colframe=\bordercolor,
|
||||||
|
boxrule=0.3mm,
|
||||||
|
]
|
||||||
|
|
||||||
|
\begin{enumerate}[
|
||||||
|
leftmargin=0.3mm,
|
||||||
|
rightmargin=-4mm,
|
||||||
|
labelsep=1mm,
|
||||||
|
label=\color{\numbercolor}\theenumi,
|
||||||
|
parsep=0mm]
|
||||||
|
\item \kline
|
||||||
|
\item \kline
|
||||||
|
\item \kline
|
||||||
|
\item \kline
|
||||||
|
\item \kline
|
||||||
|
\end{enumerate}
|
||||||
|
|
||||||
|
\end{tcolorbox}
|
||||||
|
|
||||||
|
% Step our counter and move on to the next page
|
||||||
|
\stepcounter{pgct}
|
||||||
|
\newpage
|
||||||
|
|
||||||
|
% End our loop
|
||||||
|
}
|
||||||
|
|
||||||
|
\end{document}
|
Loading…
Reference in New Issue
Block a user