Quick and Fancy Conference Posters with beamer/beamerposter

My default for writing anything that is longer than a page is LaTeX  (possibly via org-mode, if it is short and simple). In fact, the bond that ties me to the LaTeX/Emacs combo is so strong that I want to use it even for texts that are exactly one page long, i.e. conference posters.

CTAN lists a lot of packages and frameworks for posters, but I found most of them too heavy/compl

Continue reading “Quick and Fancy Conference Posters with beamer/beamerposter” »

All singing, all dancing 3d function plots with beamer, pgfplots and animate.sty

latent 1 150x150 All singing, all dancing 3d function plots with beamer, pgfplots and animate.sty

Source: Long/Freese, Regression Models for Categorical Dependent Variables Using Stata

I use emacs/ All singing, all dancing 3d function plots with beamer, pgfplots and animate.sty for all my textprocessing needs, and for the last four or five years, I have created all my slides with Till Tantaus excellent “beamer” class. At the moment, I’m teaching a 2nd year stats course (imagine doing this with PowerPoint – the horror! the horror!), so I sometimes use graphs from the assigned text like this one from Long&Freese that illustrates the latent variable/threshold interpretation of the binary logit model. The message should be fairly clear:  All singing, all dancing 3d function plots with beamer, pgfplots and animate.sty depends on  All singing, all dancing 3d function plots with beamer, pgfplots and animate.sty andfollows a standard logistic distribution around its conditional mean.

Continue reading “All singing, all dancing 3d function plots with beamer, pgfplots and animate.sty” »

Makefile helps with latex, too

A couple of weeks ago, I posted an article on how make and Makefiles can help you to organise your Stata projects. If you are working in a unix environnment, you’ll already have make installed. If you work under Windows, install GNU make – it’s free, and it can make your Stata day. Rather unsurprisingly, make is also extremely useful if you have large or medium-sized latex project (or if you want to include tables and/or graphs produced by Stata) in a latex document. For instance, this comes handy if you have eps-Figures and use pdflatex. pdflatex produces pdf files instead of dvi files. If you produces slides with, this can save you a lot of time because you don’t have to go through the latex – dvips – ps2pdf cycle. However, pdflatex cannot read eps files: you have to convert your eps files with pstoedit to the meta post format, then use meta post to convert them to mps (which can be read by pdflatex). With this Makefile snippet, everything happens automagically:


#New implicit rules for conversion of eps->mp->mps
#Change path if you have installed pstoedit in some other place
%.mp : %.eps
c:\pstoedit/pstoedit.exe -f mpost $*.eps $*.mp

Continue reading “Makefile helps with latex, too” »