Skip to content

Instantly share code, notes, and snippets.

View VincentTam's full-sized avatar
🏀
Rolling around

Vincent Tam VincentTam

🏀
Rolling around
View GitHub Profile
@VincentTam
VincentTam / quote.markdown
Last active August 29, 2015 13:55
The TeX file is to show the difference between the quote and quotation environments for *TeX compilers, while the Markdown file is to show that such difference doesn't exist in pandoc.

% Sample Draft Paper No. 1 % Somobody Here %

Some paragraphs. After that go to a quote. Some paragraphs.[^1] After that go to a quote. Some paragraphs, after that go to a quote. Some paragraphs.[1] After that go to a quote.

Some long sentence. In a capitalist society, the separation of capital, land and property is unavoidable, but harmful to workers.

@VincentTam
VincentTam / Makefile
Created January 30, 2014 05:29
My minimun working example of a makefile.
CXX = g++
SRCS = foo.cpp
default: $(SRCS:.cpp=.out)
.cpp.out:
$(CXX) $< -o $@
clean:
rm -rf *.out