On 8-12-2009, at 09h 57'56", Angel Spassov wrote about "muttprint on PDF" > > Is it possible to produce a nicely printed, _local_PDF_file_ when pressing > 'p'. > This is the corresponding entry in my .muttrc: > > set print_command="muttprint --printer TO_FILE:$HOME/Desktop/muttprint.eps > %s" >
I was not aware of muttprint producing eps files. It produces ps file which you can convert to pdf using ps2pdf. So, what about: set print_command="muttprint --printer TO_FILE:$HOME/Desktop/muttprint.ps %s;ps2pdf $HOME/Desktop/muttprint.ps;\rm $HOME/Desktop/muttprint.ps" Ionel P.S. eps files are to be included in LaTeX (usually images).