Printing from the command line
| Printing postscript on printer lw1 | lpr -Plw1 file.ps |
| Printing on Color Printer | lp -d xc filename |
| Printing Photo on Color Printer | lp -d xc -o Photo filename |
| Printing text 2-sided | enscript -Plw1 -2r file |
| Printing dvi file | dvips -Plw1 file.dvi |
| Printing PDF | "pdf2ps file.pdf file.ps; lpr -Plw1 file.ps".
|
|
File conversion DVI, PS, PDF, GIF
| DVI - PS | dvips -o file.ps file.dvi |
| DVI - PS | dvips -o file.ps -D400 file.dvi (400 DPI resolution) |
| PS-PDF | ps2pdf file.ps |
| PS-GIF | convert file.ps file.gif |
|
On Abel, a shell script
"latex2all" translates a latex document "file.tex" into "dvi,ps,pdf,gif" formats.
Use as "latex2all file". It will produces "file.ps, file.dvi, file.pdf, file.gif" and sets permissions.
|
|