Extreme Right Bibliography Updated

After a lengthy hiatus, I’ve found the time to update my online bibliography on the Extreme (or Radical/Populist/Anti-Immigrant) Right in Western Europe. According to my latest count, it lists now 400 articles, books, chapters, and working papers, complete with doi- and/or http-links where available. Enjoy!

Extreme Right Bibliography Online

Over the last two decades I have accumulated thousands of references that have travelled with me all the way from bibtex-mode through Endnote, Citavi and some more obscure packages until we finally came full circle and ended up in bibtex-mode again. To my mild surprise, my use of (some) keywords has been fairly consistent so that it was relatively easy (using make, bibtool and bibtex2html) to create a 380+ entries strong online bibliography on the Extreme Right in Western Europe. Enjoy.

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” »

How Stata and a Makefile can make your day

By relying on scripts (do-files), Stata encourages you to work in a structured, efficient and reproducible way. This text-based approach is familiar and attractive to anyone who has ever used a unix shell and the standard utilities. Actually, unix-flavoured utilities can make your stata experience even better. One non-obvious candidate is make, which is usually used for programming projects that require some sort of compilation.

Consider the following scenario. You have two ascii files of raw data, micro.raw and macro.raw. You want to read in both files, correct some errors, convert them to stata’s .dta format, merge them, apply some recodes, do a lot of preliminary analyses, and finally produce a postscript file and a table for inclusion in LaTeX. Of course, you could write one large do-File that does the job. But then, changing a tiny detail of the final graph would require you to repeat the whole procedure, which is time-consuming (especially when you work with very large datasets). Moreover, you often want to perform some interactive checks at an intermediate stage. So breaking down the large job in a number of smaller jobs that are much easier to maintain and produce a set of intermediate files seems like a good idea.

Continue reading “How Stata and a Makefile can make your day” »