Thursday, July 8, 2010

Swedish Names

Got a giggle out of these two sentences from The Girl Who Played With Fire:
"He was pleased to have Jerker Holmberg on his team. Holmberg was fifty-five and originally from Angermanland."

Saturday, June 5, 2010

How I Lost Your Mother

Brothers from another mother?


Ted Mosby vs Sayid Jarrah.





Daniel Faraday vs Barney Stinson.

Tuesday, March 9, 2010

Defended.

For those who missed it:


I Leave UCSD :(

Saturday, February 20, 2010

Yahoo Sports Having Some Fun Again

Oh, those jokesters.



They also honored Robert Horry a while back.

Thursday, February 18, 2010

Latex include vs input

In the process of putting together my dissertation, I found that if I write sections in different files and combine the results in the main tex file using \include{file}, I would end up with wasteful whitespace due to pagebreaks between sections. Apparently, \include did a bit more than I wanted for Sections, but did the right thing for Chapters:

http://www.tac.dk/cgi-bin/info2www?(latex)\include

What does the trick is to use \input and manually place \clearpage between chapters. Another bonus of using \input is that it can be nested -- files that are \input can have \input as well.