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}...