Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Posting-Version: version B 2.10.2 (Tek) 9/28/84 based on 9/17/84; site tekred.UUCP Path: utzoo!watmath!clyde!burl!ulysses!mhuxr!mhuxt!houxm!vax135!cornell!uw-beaver!tektronix!tekred!billr From: billr@tekred.UUCP (Bill Randle) Newsgroups: net.cooks Subject: Re: How to make the net cookbook Message-ID: <405@tekred.UUCP> Date: Fri, 18-Oct-85 16:30:47 EDT Article-I.D.: tekred.405 Posted: Fri Oct 18 16:30:47 1985 Date-Received: Sun, 20-Oct-85 05:09:13 EDT References: <13185@Glacier.ARPA> Reply-To: billr@tekred.UUCP (Bill Randle) Organization: Tektronix, Redmond OR Lines: 96 Summary: As a start on the macros, here's a set of macros that were posted to the net a long time ago. It may be a useful starting place for somewon interested in fine tuning them. (This uses the mm macro package, I believe.) -Bill Randle Tektronix, Inc. tektronix!tekred!billr (uucp) tekred!billr@tektronix.csnet (CSnet) tekred!billr%tektronix@csnet-relay.ARPA (ARPA) ------------ .\" These macros are used to build RECIPES. .\" .\" Macro ST takes as argument a section title and skips to a new page .\" for that section. .\" .de ST .\" .1C .SK .sp 8 .nr Hu 1 .nr Hc 1 .ps 18 .HU "\\$1" .ps 10 .sp 3 .\" .2C .. .\" .\" Macro RT takes as its single argument the title of a recipe .\" enclosed in double quote marks ("). This macro should always .\" be invoked at the beginning of a recipe. .\" .de RT .ne 8 .nr Hu 1 .nr Hc 1 .sp 1 .ps 14 .HU "\\$1" .ps 10 .. .\" .\" Macro IB should always be used to begin a list of ingredients. .\" There may be more than one such list in a recipe. .\" The optional argument gives a subhead for the list of ingredients, .\" for example Ingredients For Gravy. .\" .de IB .ne 4 .nr Hu 2 .HU "Ingredients \\$1" .VL 12 "" 1 .. .\" .\" Macro IE should always be used to end a list of ingredients. .\" .de IE .LE 1 .. .\" .\" Macro IN takes as arguments a quantity of some ingredient, .\" a measure for the ingredient (e.g., tsp, Tbl, cup), and .\" a description of the ingredient. If any of the arguments includes .\" a space, the argument should appear in quotes. .\" .de IN .LI "\\$1 \\$2" \\$3 .. .\" Macro CM should be used to begin a section of cooking .\" instructions. There may be more than one such section. .\" .de CM .ne 4 .nr Hu 2 .HU "Method" .. .\" .\" Macro RN should be used to begin a section of notes on .\" the recipe (e.g., serving suggestions, wine notes). .\" There may be more than one such section. .\" .de RN .ne 3 .nr Hu 2 .HU "Notes" .. .\" .\" Global settings .\" .PH .PF "''-\\\\nP-''" .\"---------end of macros-----------