.rem example macros for DEC printers, LA50 and/or LA100 .rem RNF treats the escape sequences as words and expects them to .rem take up space on the line. Thus, if you right-justify, the .rem lines will be too short. A kludge solution is to use .NOJ .rem Also, underlining or overstrikes on these lines may not be correct. .macro Graph = .fmt 1 27 .x (0 .x .fmt 1 15 .x .rem VT100 line drawing .macro NoGraph = .fmt 1 27 .x (B .x .macro Italic = .fmt 1 27 .x [11m .x .rem only with LA100 ROM option .macro NoItalic = .fmt 1 27 .x [10m .x .macro pitch5 = .fmt 1 27 .x [5w .x .rem 5 pitch is 5 char/inch .macro pitch6 = .fmt 1 27 .x [6w .x .macro pitch8 = .fmt 1 27 .x [8w .x .macro pitch10 = .fmt 1 27 .x [1w .x .macro pitch12 = .fmt 1 27 .x [2w .x .macro pitch16 = .fmt 1 27 .x [4w .x .rem Superscript and Subscript work better on LA50 .macro Super 1 = .x .fmt 1 27 .x L .x .Super1 .x .fmt 1 27 .x K .macro Sub 1 = .x .fmt 1 27 .x K .x .Sub1 .x .fmt 1 27 .x L .macro Draft = .fmt 1 27 .x [1"z .x .macro Enhanced = .fmt 1 27 .x [2"z .x