Created attachment 451782 [details] It has all the files to build the User guide for Beaker Description of problem: I am working on this book and it has a lot of sub-sections under one section. The pages get broken by chapter and sections only. I want them to be broken for sub-section as well. Version-Release number of selected component (if applicable): 1 How reproducible: Steps to Reproduce: 1. 2. 3. Actual results: subsections on one page Expected results: subsections on individual pages Additional info:
Hi Shikha, You can control how publican splits up the pages in the HTML output by adjusting the chunk_section_depth parameter in your publican.cfg. Here is an excerpt from the Publican User Guide (http://docs.fedoraproject.org/en-US/Fedora_Contributor_Documentation/1/html/Users_Guide/) that covers this parameter: """ chunk_section_depth controls the point at which Publican no longer splits sub-subsections onto a new page when rendering HTML. By default, this value is set to 4. """ Add the following line to your publican config (or tweak the existing parameter if already defined) """ chunk_section_depth: 5 """ and rebuild your book to check how changing this parameter effects your output. cheers, ryanlerch