> Is there a way I can mark up a certain chunk of groff code/markup so > that it's used only for a particular device but not for others?
Clarke has already mentioned the `n' and `t' conditionals. If this distinction isn't fine enough, use the \*[.T] string register which holds the name of the output device. Example: .ie '\*[.T]'ps' \{\ ... .\} .el \{\ ... .\} Werner