Created
August 15, 2017 15:12
-
-
Save binshengliu/f0d6e97b17cc80b8deb1f719916ff493 to your computer and use it in GitHub Desktop.
Cornell-note latex template
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
% https://tex.stackexchange.com/a/273223/124998 | |
\documentclass[a4paper]{article} | |
\usepackage{tcolorbox} | |
\tcbuselibrary{skins} | |
\title{ | |
\vspace{-3em} | |
\begin{tcolorbox}[colframe=white,opacityback=0] | |
\begin{tcolorbox} | |
\Huge\sffamily Cornell Notes on Something | |
\end{tcolorbox} | |
\end{tcolorbox} | |
\vspace{-3em} | |
} | |
\date{} | |
\usepackage{background} | |
\SetBgScale{1} | |
\SetBgAngle{0} | |
\SetBgColor{red} | |
\SetBgContents{\rule[0em]{4pt}{\textheight}} | |
\SetBgHshift{-2.3cm} | |
\SetBgVshift{0cm} | |
\usepackage{lipsum}% just to generate filler text for the example | |
\usepackage[margin=2cm]{geometry} | |
\usepackage{tikz} | |
\usepackage{tikzpagenodes} | |
\parindent=0pt | |
\usepackage{xparse} | |
\DeclareDocumentCommand\topic{ m m g g g g g} | |
{ | |
\begin{tcolorbox}[sidebyside,sidebyside align=top,opacityframe=0,opacityback=0,opacitybacktitle=0, opacitytext=1,lefthand width=.3\textwidth] | |
\begin{tcolorbox}[colback=red!05,colframe=red!25,sidebyside align=top,width=\textwidth,before skip=0pt] | |
#1.\end{tcolorbox}% | |
\tcblower | |
\begin{tcolorbox}[colback=blue!05,colframe=blue!10,width=\textwidth,before skip=0pt] | |
#2 | |
\end{tcolorbox} | |
\IfNoValueF {#3}{ | |
\begin{tcolorbox}[colback=blue!05,colframe=blue!10,width=\textwidth] | |
#3 | |
\end{tcolorbox} | |
} | |
\IfNoValueF {#4}{ | |
\begin{tcolorbox}[colback=blue!05,colframe=blue!10,width=\textwidth] | |
#4 | |
\end{tcolorbox} | |
} | |
\IfNoValueF {#5}{ | |
\begin{tcolorbox}[colback=blue!05,colframe=blue!10,width=\textwidth] | |
#5 | |
\end{tcolorbox} | |
} | |
\IfNoValueF {#6}{ | |
\begin{tcolorbox}[colback=blue!05,colframe=blue!10,width=\textwidth] | |
#6 | |
\end{tcolorbox} | |
} | |
\IfNoValueF {#7}{ | |
\begin{tcolorbox}[colback=blue!05,colframe=blue!10,width=\textwidth] | |
#7 | |
\end{tcolorbox} | |
} | |
\end{tcolorbox} | |
} | |
\def\summary#1{ | |
\begin{tikzpicture}[overlay,remember picture,inner sep=0pt, outer sep=0pt] | |
\node[anchor=south,yshift=-1ex] at (current page text area.south) {% | |
\begin{minipage}{\textwidth}%%%% | |
\begin{tcolorbox}[colframe=white,opacityback=0] | |
\begin{tcolorbox}[enhanced,colframe=black,fonttitle=\large\bfseries\sffamily,sidebyside=true, nobeforeafter,before=\vfil,after=\vfil,colupper=black,sidebyside align=top, lefthand width=.95\textwidth,opacitybacktitle=1, opacitytext=1, | |
segmentation style={black!55,solid,opacity=0,line width=3pt}, | |
title=Summary | |
] | |
#1 | |
\end{tcolorbox} | |
\end{tcolorbox} | |
\end{minipage} | |
}; | |
\end{tikzpicture} | |
} | |
\begin{document} | |
\maketitle | |
\topic{This is a question}% | |
{The first piece of evidence is mandatory}% | |
{Now add up to five\ldots}% | |
{\ldots additional pieces of evidence.} | |
\topic{Here's another question.}{\lipsum[1]}% | |
{\lipsum[2]}% | |
\summary{This is a longer box that floats to the bottom of the page.} | |
\topic{Here's another question to begin the new page.}{\lipsum[3]}% | |
{\lipsum[4]}% | |
{\lipsum[5]}% | |
\summary{And another summary that will float to the bottom of the next page.} | |
\end{document} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment