Initial commit

This commit is contained in:
Kenneth John Odle 2024-04-02 20:09:39 -04:00
parent a38d0574ef
commit 39ea40dca8
2 changed files with 46 additions and 0 deletions

2
.gitignore vendored
View File

@ -284,3 +284,5 @@ TSWLatexianTemp*
# Uncomment the next line to have this generated file ignored.
#*Notes.bib
# Mine
/build/*

44
cornell-right.tex Normal file
View File

@ -0,0 +1,44 @@
\documentclass[twoside]{article}
\usepackage{showframe}
\renewcommand*\ShowFrameColor{\color{red}}
\usepackage{lmodern}
% Let's set up our page size
\usepackage[
letterpaper,
% A4,
bindingoffset=15mm,
textheight=250mm,
textwidth=175mm,
top=14mm,
footskip=5mm,
marginparwidth=0mm,
marginparsep=0mm
]{geometry}
\usepackage{tcolorbox}
\usepackage{forloop}
\newcounter{ct} % Create a counter for our loop
\def\lfct{5} % Set this value to the number of pages you want
\begin{document}
% Begin our loop
\forloop{ct}{0}{\value{ct}<\lfct{}}{
\begin{tcolorbox}
The heading information should go here.
\end{tcolorbox}
\newpage
% End our loop
}
\end{document}