Path: utzoo!attcan!utgpu!jarvis.csri.toronto.edu!cs.utexas.edu!samsung!zaphod.mps.ohio-state.edu!sunybcs!boulder!skwu From: skwu@boulder.Colorado.EDU (WU SHI-KUEI) Newsgroups: comp.unix.questions Subject: Re: software tools question Keywords: software tools question macro include text processing Message-ID: <14720@boulder.Colorado.EDU> Date: 8 Dec 89 22:50:22 GMT References: <694@dgis.dtic.dla.mil> <128978@sun.Eng.Sun.COM> Sender: news@boulder.Colorado.EDU Reply-To: skwu@boulder.Colorado.EDU (WU SHI-KUEI) Organization: University of Colorado, Boulder Lines: 16 With System V by far the easiest solution to including a table in multiple documents is to process the table source with 'tbl', redirecting the output to a file which can be included anywhere. I.e.: tbl table1.src > table1.fmt tbl table2.src > table2.fmt In the text source: blah blah blah .so table1.fmt more blah blah blah .so table2.fmt There is no need for any other software tools (At least with 'mm' or any of the other System V text formatting tools).