So I've got the draft of the new guide into a doctype "book" and chapters that are xincluded, but I can't get the Makefile in doc/guide to process it the way I want it. One issue is that I used <section> and the old guide uses <sect1>. Not sure which is preferred or if that is the problem. Should I check-in my new xml and see if someone else can look at the regen formatting problems? If so, can someone suggest new directory names to coexist with the old doc? The structure of the doc is like this, with each include a chapter. <book> <title>MacPorts Guide</title> <xi:include href="intro.xml" xmlns:xi="http://www.w3.org/2001/XInclude" /> <xi:include href="installing.xml" xmlns:xi="http://www.w3.org/2001/XInclude" /> <xi:include href="using.xml" xmlns:xi="http://www.w3.org/2001/XInclude" /> <xi:include href="portfiledev.xml" xmlns:xi="http://www.w3.org/2001/XInclude" /> <xi:include href="portfileref.xml" xmlns:xi="http://www.w3.org/2001/XInclude" /> <xi:include href="internals.xml" xmlns:xi="http://www.w3.org/2001/XInclude" /> <xi:include href="project.xml" xmlns:xi="http://www.w3.org/2001/XInclude" /> </book> Mark