Skip to content

Commit b7a26c7

Browse files
author
Jake Hofman
committed
template
1 parent 860fc2e commit b7a26c7

File tree

6 files changed

+88
-0
lines changed

6 files changed

+88
-0
lines changed

README.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# msd2019-notes
2+
This repository is for students to create and submit scribe notes for Modeling Social Data, Columbia University (Spring 2019)
3+
4+
Follow these steps to add your notes:
5+
6+
1. Create your notes using the LaTeX files in `template.zip`. You can do this directly on your machine, or you can [click here](https://www.overleaf.com/docs?snip_uri=http://jakehofman.com/tmp/template.zip) to use Overleaf to edit everything in your browser. See the template README for more details.
7+
2. [Fork](https://guides.github.com/activities/forking/) and [clone](https://help.github.com/articles/cloning-a-repository/) this repository.
8+
3. Add your notes to a subdirectory under the lecture number and your uni (e.g., `lecture_1/jmh2045/`).
9+
4. [Commit and push](https://help.github.com/articles/adding-a-file-to-a-repository-using-the-command-line/) your changes to your fork of the Github repository.
10+
5. Issue a [pull request](https://help.github.com/articles/about-pull-requests/) to have your notes added to the main course repository.

lecture_1/jmh2045/README.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
This is just so that you have an example of what the file structure should look like for submitted notes.
2+
3+
Notice that I've only added the main `template.tex` file and my `jmh2045.tex` file, along with any figures included in the document and the file rendered pdf, to the repository.
6.87 KB
Loading

lecture_1/jmh2045/jmh2045.tex

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
%----------------------------------------
2+
% Write your notes here
3+
%----------------------------------------
4+
5+
This is just so that you have an example of what the file structure should look like for submitted notes.
6+
7+
Notice that I've only added the main \texttt{template.tex} file and my \texttt{jmh2045.tex} file, along with any figures included in the document and the file rendered pdf, to the repository.
8+
9+
\begin{figure}[ht]
10+
\begin{center}
11+
\includegraphics[width=0.5\textwidth]{figures/example_figure.png}
12+
\caption{
13+
This is how to include a figure.
14+
As long as you use pdflatex most file types (e.g., jpg, png, pdf) should work.}
15+
\label{fig:example_figure}
16+
\end{center}
17+
\end{figure}
18+

lecture_1/jmh2045/template.pdf

46.7 KB
Binary file not shown.

lecture_1/jmh2045/template.tex

+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
%----------------------------------------
2+
% Preamble to set up the document
3+
%----------------------------------------
4+
\documentclass{article}
5+
6+
% set up packages (you shouldn't need to touch this)
7+
\usepackage{graphicx} % required to insert images
8+
\usepackage{hyperref} % for hyperlinks
9+
\usepackage[svgnames]{xcolor} % to change hyperlink colors
10+
\colorlet{linkcolour}{DarkBlue}
11+
\hypersetup{colorlinks=true, linkcolor=linkcolour, citecolor=linkcolour, urlcolor=linkcolour,}
12+
13+
% Margins
14+
\topmargin=-0.45in
15+
\evensidemargin=0in
16+
\oddsidemargin=0in
17+
\textwidth=6.5in
18+
\textheight=9.0in
19+
\headsep=0.25in
20+
21+
% use a sans serif font
22+
\renewcommand{\familydefault}{\sfdefault}
23+
24+
%----------------------------------------
25+
% Step 1: Edit the lecture title
26+
%----------------------------------------
27+
\title{
28+
Lecture 1: Introduction / Overview \\ % Lecture title
29+
Modeling Social Data, Spring 2019 \\ % Course title
30+
Columbia University % School
31+
}
32+
33+
%----------------------------------------
34+
% Step 2: Edit your name and the date
35+
%----------------------------------------
36+
\author{Jake Hofman} % Scribe's name
37+
\date{January 25, 2019} % Lecture date
38+
39+
\begin{document}
40+
41+
\maketitle
42+
43+
44+
%----------------------------------------
45+
% Step 3:
46+
% Rename uni.tex to match your uni,
47+
% edit the filename accordingly below,
48+
% and put your notes in this file
49+
%----------------------------------------
50+
\input{jmh2045.tex}
51+
52+
\end{document}
53+
54+
%%% Local Variables:
55+
%%% mode: latex
56+
%%% TeX-master: t
57+
%%% End:

0 commit comments

Comments
 (0)