LaTeX Einführung

Im Rahmen eines Workshops der jDPG Hannover wurde der folgende Vortrag zur Einführung in LaTeX gehalten:   LaTeXIntroductionVortrag-2011-05-14.pdf (1,6 MiB)   LaTeXIntroductionHandout-2011-05-14.pdf (1,4 MiB)...

Installation of Fonts in Miktex

I have several Type1 fonts which need to be installed such that LaTeX knows about them. To achive this under Miktex you have to follow these steps: Setup you localtexmf tree with the fonts or copy your localtexmf tree from a different installation into the...

convert Images in batch process

Converting images in a batch process is not difficult in general, but approaches like this fail at filenames/directories with spaces #!/bin/sh for file in $(find -iname *.bmp); do mogrify -verbose -format png $file; done The solution is to use ‘read’ in...

Alternatives Syntaxhighlighting

Hier das neue Syntaxhighlighting von LaTeX in geshi % Beispieldokument \documentclass[a4paper, 11pt,german]{scrartcl} \usepackage{lmodern} \usepackage{textcomp} \usepackage[german]{babel} \usepackage[T1]{fontenc} \usepackage[latin1]{inputenc} \usepackage{graphicx}...

Tutorial zu \expandafter

Folgendes PDF konnten ich dazu im Internet finden: tb20bechtolsheim.pdf. Es ist zwar uralt (von 1988) aber da sich TeX nicht geändert hat sollte der Inhalt weiterhin gültig sein. Hier zwei Beispiele daraus. Dazu bezeichne ich im Folgenden die Befehle mit...