Skip to content

Commit 065a326

Browse files
committed
manual LaTex source
1 parent fa3359f commit 065a326

36 files changed

+2360
-0
lines changed

‎manual/Makefile‎

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
.SILENT:
2+
3+
.PHONY: all clean
4+
5+
LATEX = pdflatex
6+
PAPER = main_book
7+
OUTPUT = ece252_manual.pdf
8+
9+
main:
10+
$(LATEX) $(PAPER)
11+
bibtex $(PAPER)
12+
$(LATEX) $(PAPER)
13+
mv $(PAPER).pdf $(OUTPUT)
14+
15+
clean:
16+
rm -f *~ $(PAPER).dvi $(PAPER).log $(PAPER).pdf $(PAPER).ind $(OUTPUT)
17+
rm -f $(PAPER).bbl $(PAPER).blg $(PAPER).ps $(PAPER).aux
18+
rm -f $(PAPER).out $(PAPER).lot $(PAPER).lof $(PAPER).toc
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
\chapter{Forms}
2+
Lab administration related forms are given in this appendix.
3+
\newpage
4+
\begin{center}
5+
{\bf ECE252 Request to Leave a Project Group Form}
6+
\end{center}
7+
8+
\begin{table*}[h]
9+
\begin{center}
10+
\begin{tabular}{|p{6cm}|p{6cm}|}
11+
\hline
12+
Name: & \\ \hline
13+
Quest ID: & \\ \hline
14+
Student ID: & \\ \hline
15+
Lab Assignment ID & \\ \hline
16+
Group ID: & \\ \hline
17+
Name of Other Group Members: & \\ \hline
18+
\end{tabular}
19+
\end{center}
20+
\end{table*}
21+
22+
Provide the reason for leaving the project group here:
23+
24+
\vspace{9cm}
25+
26+
\begin{table*}
27+
\begin{center}
28+
\begin{tabular}{p{6cm} p{1cm} p{6cm}}
29+
Signature && Date \\
30+
\cline{1-1}
31+
\cline{3-3}
32+
\end{tabular}
33+
\end{center}
34+
\end{table*}
35+
%%% Local Variables:
36+
%%% mode: latex
37+
%%% TeX-master: "main_book"
38+
%%% End:

‎manual/bib/bibliography_book.tex‎

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
%==========================================================
2+
% BIBLIOGRAPHY
3+
%==========================================================
4+
5+
\bibliographystyle{plain}
6+
\bibliography{main}
7+
\renewcommand{\bibname}{References} % for the report or book class
8+
\addcontentsline{toc}{chapter}{\textbf{References}} % for book/report class
9+
%\renewcommand{\refname}{References} % for the article class
10+
%\addcontentsline{toc}{section}{\textbf{References}} % for article class
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
helloworld.out: helloworld.o
2+
gcc -o helloworld.out helloworld.o
3+
4+
helloworld.o: helloworld.c
5+
gcc -c helloworld.c
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
helloworld.out: helloworld.c
2+
gcc -o helloworld.out helloworld.c
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
helloworld.out: helloworld.c
2+
gcc -o helloworld.out helloworld.c
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
helloworld.out: helloworld.o
2+
gcc -o helloworld.out helloworld.o
3+
helloworld.o: helloworld.c
4+
gcc -c helloworld.c
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
all: app.out
2+
app.out: src1.o src2.o
3+
gcc -o app.out src1.o src2.o
4+
src1.o: src1.c
5+
gcc -c src1.c
6+
src2.o: src2.c
7+
gcc -c src2.c
8+
clean:
9+
rm *.o app.out
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Makefile to build app.out
2+
CC=gcc
3+
CFLAGS=-Wall -g
4+
LD=gcc
5+
LDFLAGS=-g
6+
7+
OBJS=src1.o src2.o
8+
9+
all: app.out
10+
app.out: $(OBJS)
11+
$(LD) $(CFLAGS) $(LDFLAGS) -o $@ $(OBJS)
12+
.c.o:
13+
$(CC) $(CFLAGS) -c $<
14+
.PHONY: clean
15+
clean:
16+
rm -f *.o *.out
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#include <stdio.h>
2+
#include <stdlib.h>
3+
4+
int main()
5+
{
6+
printf("Hello World!\n");
7+
exit(0);
8+
}

0 commit comments

Comments
 (0)