This file contains hidden or 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
| \documentclass[10pt]{article} | |
| \usepackage{amsmath,amssymb,amscd} | |
| \usepackage{geometry} | |
| \usepackage{setspace} | |
| \usepackage{ulem} | |
| \usepackage[T1]{fontenc} | |
| \usepackage{garamond} | |
| \geometry{letterpaper,tmargin=1in,bmargin=1in,lmargin=1.2in,rmargin=1.2in} | |
| \doublespacing | |
| \title{Monotone Convergence Theorem\\{\small MAT.487: Measure/Integration Theory}} |
This file contains hidden or 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
| /** | |
| * @author Joseph Gallagher | |
| * This class defines a LaTeX block type node for use in a linked list | |
| */ | |
| public class LatexNode | |
| { | |
| private String block; | |
| private LatexNode nextNode; |
This file contains hidden or 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
| /** | |
| * @author Joseph Gallagher,joseph.gallagher@stonybrook.edu | |
| * | |
| **/ | |
| public class BlankNameException extends Exception | |
| { | |
| public BlankNameException() | |
| { | |
| super("\nERROR:\n*****Blank Name*****\n"); | |
| } |
This file contains hidden or 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
| #COMPILER | |
| CC = gcc | |
| #FLAGS AND OPTIONS | |
| CFLAGS = -g -Wall | |
| polygon : polygon.c polygon.h | |
| $(CC) $(CFLAGS) -o polygon polygon.c polygon.h |