Friday, January 22, 2010

Bill Joy: What I'm worried about, what I'm excited about




if you wonder who he is....

link


more information for him from viswiki

Monday, January 18, 2010

Makefile in order to converting tex to pdf file



















.SUFFIXES : .tex .dvi
TEX = latex

FNAME = mydoc
OBJ1 = $(FNAME).dvi
OBJ2 = $(FNAME).ps
SRC = $(FNAME).tex

TARGET = $(FNAME)

all : $(TARGET)
$(TARGET) : $(OBJ1)
dvips $(OBJ1) -o
ps2pdf $(OBJ2)

new : touch $(SRC) ; $(MAKE)

# dissertation.tex : coverletter.tex conclusion.tex <---- dependence
# to combine a few tex files