Blog
Links, documents, code, and comments about economics
-
Polya urn script
Read moreI had to present on path dependence recently. Paul David’s famous QWERTY paper (American Economic Review P&P, 1985) was covered, as was Paul Pierson’s Increasing Returns, Path Dependence, and the Study of Politics (American Political…
-
Some help with common LaTeX problems
Read moreWhat’s the easiest way to include a graphic (or graph, diagram, figure etc.) in my document? [code] \documentclass{article} \usepackage{graphicx} \begin{document} \begin{figure}[h] \centering \caption{This is my picture} \includegraphics[width=5in,height=3in]{adamsmith.jpg} \end{figure} \end{document} [/code] Then compile using pdflatex. I’m…