/* * RUN latex on the .tex file */ indy12 > latex sample.tex This is TeX, C Version 3.14t3 (sample.tex LaTeX2e <1995/06/01> patch level 3 (/usr/monash/tex/lib/tex/inputs/article.cls Document Class: article 1995/06/26 v1.3g Standard LaTeX document class (/usr/monash/tex/lib/tex/inputs/size10.clo)) (acse.sty) /* * if the acse.sty wasn't in this directory, or in the library dir, * there would be an error */ No file sample.aux. LaTeX Warning: Citation `Hoare73' on page 1 undefined on input line 65. LaTeX Warning: Citation `GanapathiFischer82' on page 1 undefined on input line 65. LaTeX Warning: Citation `Barnes80' on page 1 undefined on input line 66. LaTeX Warning: Citation `Barnes89' on page 1 undefined on input line 66. No file sample.bbl. [1] [2] (sample.aux) LaTeX Warning: There were undefined references. ) Output written on sample.dvi (2 pages, 5296 bytes). Transcript written on sample.log. /* * Now should have sample.aux, sample.dvi, sample.log * Note that citations are undefined cos we haven't run bibtex yet */ indy12 > bibtex sample This is BibTeX, C Version 0.99c The top-level auxiliary file: sample.aux The style file: acse.bst Database file #1: sample.bib /* * Now there should be a sample.bbl and sample.blg */ indy12 > !latex latex sample.tex This is TeX, C Version 3.14t3 (sample.tex LaTeX2e <1995/06/01> patch level 3 (/usr/monash/tex/lib/tex/inputs/article.cls Document Class: article 1995/06/26 v1.3g Standard LaTeX document class (/usr/monash/tex/lib/tex/inputs/size10.clo)) (acse.sty) (sample.aux) LaTeX Warning: Citation `Hoare73' on page 1 undefined on input line 65. LaTeX Warning: Citation `GanapathiFischer82' on page 1 undefined on input line 65. LaTeX Warning: Citation `Barnes80' on page 1 undefined on input line 66. LaTeX Warning: Citation `Barnes89' on page 1 undefined on input line 66. (sample.bbl [1]) [2] (sample.aux) LaTeX Warning: There were undefined references. LaTeX Warning: Label(s) may have changed. Rerun to get cross-references right. ) Output written on sample.dvi (2 pages, 6204 bytes). Transcript written on sample.log. /* * Citations still not right, but "bibcite" entries have been added to the * sample .aux file */ indy12 > !! latex sample.tex This is TeX, C Version 3.14t3 (sample.tex LaTeX2e <1995/06/01> patch level 3 (/usr/monash/tex/lib/tex/inputs/article.cls Document Class: article 1995/06/26 v1.3g Standard LaTeX document class (/usr/monash/tex/lib/tex/inputs/size10.clo)) (acse.sty) (sample.aux) (sample.bbl [1]) [2] (sample.aux) ) Output written on sample.dvi (2 pages, 6196 bytes). Transcript written on sample.log. /* * All ok now. Can either view sample.dvi using xdvi or run dvips */ indy12 > dvips sample.dvi Got a new papersize This is dvips 5.58 Copyright 1986, 1994 Radical Eye Software ' TeX output 1998.04.29:1328' -> sample.ps . [1] [2] /* * Can view postscript using "ghostview sample.ps" * or * print to file "lpr -PRLW sample.ps" */