Skip to content

Commit

Permalink
Fixed STAT-252 notes
Browse files Browse the repository at this point in the history
  • Loading branch information
jihoonog committed Jan 14, 2022
1 parent 860a1dc commit 218c3a7
Show file tree
Hide file tree
Showing 15 changed files with 34 additions and 696 deletions.
16 changes: 3 additions & 13 deletions STAT-252/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,25 +13,15 @@ SOURCE=STAT-252-Notes

# Build Section
# This will build all the latex files within the current directory
all: | print full

# This will build a print friendly version of the notes, i.e. no paper background
print:
sed -i -e 's/bg=full\|bg=none/bg=print/' ${SOURCE}.tex
${BUILDER} ${OPT} --jobname ${SOURCE}-print $(SOURCE)
sed -i -e 's/bg=print/bg=none/' ${SOURCE}.tex
all: | full


# This will build with the full background
full:
sed -i -e 's/bg=print\|bg=none/bg=full/' ${SOURCE}.tex
${BUILDER} ${OPT} --jobname ${SOURCE}-full ${SOURCE}
sed -i -e 's/bg=full/bg=none/' ${SOURCE}.tex
${BUILDER} ${OPT} --jobname ${SOURCE} ${SOURCE}


# this will clean everything except for the pdfs
clean:
$(BUILDER) --clean ${SOURCE}
${BUILDER} --jobname ${SOURCE}-print --clean $(SOURCE)
${BUILDER} --jobname ${SOURCE}-full --clean $(SOURCE)
cd chapters ; latexmk -C ; rm *.synctex.gz ; cd ..
${BUILDER} --jobname ${SOURCE} --clean $(SOURCE)
2 changes: 1 addition & 1 deletion STAT-252/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# STAT 252 Notes
This is a WIP

These are my lecture notes for STAT 252. The instructor provided fillable lecture notes that can be filled during the lecture. So these are my filled in notes from the class.
Binary file removed STAT-252/STAT-252-Notes-full.pdf
Binary file not shown.
Binary file removed STAT-252/STAT-252-Notes-print.pdf
Binary file not shown.
Binary file added STAT-252/STAT-252-Notes.pdf
Binary file not shown.
55 changes: 30 additions & 25 deletions STAT-252/STAT-252-Notes.tex
Original file line number Diff line number Diff line change
@@ -1,38 +1,43 @@
\documentclass[letterpaper,10pt,twoside,onecolumn,openany]{book}
\usepackage[bg=none,layout=true]{dnd}
\usepackage{dndnotes}
% \usepackage[bg=print,layout=true]{dnd}
% \usepackage{dndnotes}
\usepackage{wallpaper}
\usepackage{subfiles}
\usepackage[]{mathtools}
\usepackage[]{datetime}
\usepackage[]{pdfpages}
\graphicspath{{./figures/}{../figures/}}


\begin{document}
\frontmatter
\begin{titlepage}
\ThisCenterWallPaper{1}{paper.jpg}~
% \frontmatter
% \begin{titlepage}
% \ThisCenterWallPaper{1}{paper.jpg}~

\newpage
% \newpage

\begin{center}
% \begin{center}


\large
\vspace*{\fill}
Learn how statistics can be used to
\\~\\
By slaying his assignment minions, defeating his midterm champion(s) and ending the final themselves. The heroic legacy of your achievement will be remembered on your academic transcript.
\\~\\
\vspace*{\fill}

\end{center}
\let\thefootnote\relax\footnote{Disclaimer: }
\end{titlepage}
\tableofcontents
\mainmatter

\subfile{credit.tex}
% \large
% \vspace*{\fill}
% Learn how statistics can be used to
% \\~\\
% By slaying his assignment minions, defeating his midterm champion(s) and ending the final themselves. The heroic legacy of your achievement will be remembered on your academic transcript.
% \\~\\
% \vspace*{\fill}

\subfile{chapters/chapter-1.tex}
\subfile{chapters/chapter-2.tex}
\subfile{chapters/chapter-3.tex}
% \end{center}
% \let\thefootnote\relax\footnote{Disclaimer: }
% \end{titlepage}
% \tableofcontents
% \mainmatter

%\subfile{credit.tex}
\includepdf[pages=-]{pdfs/STAT_252-Notes-Section_1-Research_Design_Review_of_1st_Level_Stats.pdf}
\includepdf[pages=-]{pdfs/STAT_252-Notes-Section_2-One_or_Two_Population_Means.pdf}
\includepdf[pages=-]{pdfs/STAT_252-Notes-Section_3-Several_Population_Means.pdf}
\includepdf[pages=-]{pdfs/STAT_252-Notes-Section_4-Simple_Linear_Regression.pdf}
\includepdf[pages=-]{pdfs/STAT_252-Notes-Section_5-Multiple_Linear_Regression.pdf}
\includepdf[pages=-]{pdfs/STAT_252-Notes-Section_6-Two-Factor_ANOVA.pdf}
\end{document}
41 changes: 0 additions & 41 deletions STAT-252/chapters/chapter-1.tex

This file was deleted.

Loading

0 comments on commit 218c3a7

Please sign in to comment.