From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,f3021d85fb0cf9a7 X-Google-Attributes: gid103376,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news2.google.com!news4.google.com!news.germany.com!aioe.org!not-for-mail From: John McCabe Newsgroups: comp.lang.ada Subject: Re: A4 formatted ARM? Date: Wed, 07 May 2008 13:19:10 +0100 Organization: Aioe.org NNTP Server Message-ID: References: NNTP-Posting-Host: 8xFrDPbGvE3CA8T+awNlRA.user.aioe.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Complaints-To: abuse@aioe.org X-Newsreader: Forte Free Agent 2.0/32.652 Xref: g2news2.google.com comp.lang.ada:5737 Date: 2008-05-07T13:19:10+01:00 List-Id: On Wed, 07 May 2008 10:38:49 +0100, John McCabe wrote: >>(6) Apply the half-dozen hand patches. Regenerate the table-of-contents. >Are the half-dozen hand patches described anywhere? This is what I've found - note that I changed copied RM.MSM to RMA4.MSM and changed: @RTFPageSize{Ada95} to @RTFPageSize{A4} Hence it may be that some paragraph numbers, such as that in item 10 below, may be different for you as it looks like that one's due to a page break. 1: Paragraph 6/2 (Introduction) - "Design Goals". Need to format the paragraph number (6/2) frame so that the horizontal distance from the text is 0cm. 2: Paragraph 61 (Introduction) - "Instructions for Comment Submission" section. Need to format the paragraph number (61) frame so that the horizontal distance from the text is 0cm. 3: Paragraph 60/2 (Introduction) - "Instructions for Comment Submission" section. Need to format the paragraph number (60/2) frame so that the horizontal distance from the text is 0cm. NOTE: Item 2 needs to be done first!!! 4: Paragraph 71.4/2 (Introduction) - Need to format the paragraph number (71.4/2) frame so that the horizontal distance from the text is 0cm. 5: "Information technology - Programming Languages - Ada". Need to format the paragraph and set the line spacing to "At Least" instead of "Exactly" (13pt). 6: Paragraph 24 (1.1.2 Structure)" - Need to format the paragraph number (24) to have spacing before of 4pt instead of 10pt (note, not the paragraph frame this time). 7: Paragraph 10 (1.1.4 Method of Description and Syntax Notation) - Need to format the paragraph number frame so that the horizontal distance from the text is 0cm. 8: Paragraph 12 (1.1.4 Method of Description and Syntax Notation) - Need to format the paragraph number frame so that the horizontal distance from the text is 0cm. 9: Paragraph 14 (1.1.4 Method of Description and Syntax Notation) - Need to format the paragraph number frame so that the horizontal distance from the text is 0cm. 10: Paragraph 8.2 (12 Normative Reference) - Need to format the paragraph number frame so that the horizontal distance from the text is 0cm (which will take it on to the page that the text is on), then put it back to 0.26cm (which will align it properly. Note this may be because of the position MS Word decides for the page break, so you may get this somewhere else. 11: Paragraph 8.2 (2.3 Identifiers) - Need to format the paragraph number frame so that the horizontal distance from the text is 0cm. Ok - any more "Need to format the paragraph number frame ... " are ignored - you'll just have to find them for yourself. Actually... I gave up on doing it by hand. The following macro in word will reformat all of the frames so that their horizontal distance from text is 0cm. Seems to look ok on both sides (the main problem was on right hand side pages!) Sub ReformatFrames() Dim nextFrame As Frame For Each nextFrame In Application.ActiveDocument.Frames nextFrame.Select nextFrame.HorizontalDistanceFromText = CentimetersToPoints(0) Next nextFrame End Sub If I find any other odd bits, I'll let you know. John