Table of contents - title creates automatic page break

I want the title "Table of Contents" to appear above the automatically generated Table of Contents in pages.  The TOC covers 3 pages (it's a long document) and I've formatted it and am happy. However, the title for the page which reads "Table of Contents" makes the TOC jump down to another page leaving the title on an otherwise blank page.  I have tried re-typing the title, ensuring no page breaks are on the page. I've deleted the TOC and reinserted it at the appropriate place etc. But it keeps jumping down and starting on a new page.  Any advice appreciated. I want to the keep the title "Table of Contents" on the same page as the table of contents themselves.

I am having the exact same issue. Long ToC (3 pages), but cannot place a simple headline above it. It automatically breaks the pages and starts on a new page. Any ideas people?
Please see the picture below. I cannot find a way to narrow down that gap between headline and ToC.
Cheers Phil

Similar Messages

  • How to create a page break in PDF output

    Hi there
    Does anyone know how to create a page break in the PDF output when using the EXPORT TO PDF command?
    I can create a page break using the page-break-after/before HTML stylesheet command, but this is not "interpreted" when the PDF is generated, and I am required to print each table in my web template on a new page.
    Please ... been searching for ages for a solution to this and can't find anything.
    Cheers,
    Andrew

    Try posting in the iWorks forum.
    https://discussions.apple.com/community/app_store/iwork_for_ios

  • RE: How can I create a page break in a file?

    Thank you, Glen. I tried WriteText. But it didn't work.
    Tien Wang
    Indus Consultancy Services
    [email protected]
    From: Glen A. Whitbeck
    Sent: Thursday, September 11, 1997 11:59 AM
    To: Wang, Tien
    Cc: forte-users; owner-forte-users
    Subject: Re: How can I create a page break in a file?
    Instead of using "WriteLine," try using "WriteText" ("WriteLine" writes
    TextData into an open file, while "WriteText" writes data to a stream)
    like this:
    <method 1>
    myFile : file = new();
    myFile.WriteText('\f');
    Glen
    Wang, Tien wrote:
    Hi,
    I am creating a text file for a report which contains multiple pages.
    How can I create a page break in my file? I tried to use the
    following
    two methods, but neither of them works. Specifically, it seems a
    special
    character printed in the file. But when I print the file through a
    WordPad, it didn't separate pages.
    I am currently using version 3.0.C on Windows NT 4.0 with a HP Plus 4
    printer. Any help will be greatly appreciated.
    Tien Wang
    Indus Consultancy Services
    [email protected]
    >
    <method 1>
    myFile : file = new();
    file.writeLine('\f'); --- \f is the form feed in the C language
    <method 2>
    myFile : file = new();
    j : IntegerData = new( value = 14 );
    c : char = j.IntegerValue; -- c now contains ascii 14 (form feed)
    p : pointer to char = &c; -- Set a pointer to the character
    pageBreakTxt : TextData = new();
    pageBreakTxt.Concat(p);
    myfile.writeLine(pageBreakTxt);

    Tien,
    Try myFile.WriteText('\x0c'); instead of myFile.WriteText('\f');
    Regards
    Richard Stobart
    -----Original Message-----
    From: Wang, Tien [SMTP:[email protected]]
    Sent: Friday, September 12, 1997 6:09 PM
    To: Glen A. Whitbeck
    Cc: forte-users; owner-forte-users
    Subject: RE: How can I create a page break in a file?
    Thank you, Glen. I tried WriteText. But it didn't work.
    Tien Wang
    Indus Consultancy Services
    [email protected]
    From: Glen A. Whitbeck
    Sent: Thursday, September 11, 1997 11:59 AM
    To: Wang, Tien
    Cc: forte-users; owner-forte-users
    Subject: Re: How can I create a page break in a file?
    Instead of using "WriteLine," try using "WriteText" ("WriteLine" writes
    TextData into an open file, while "WriteText" writes data to a stream)
    like this:
    <method 1>
    myFile : file = new();
    myFile.WriteText('\f');
    Glen
    Wang, Tien wrote:
    Hi,
    I am creating a text file for a report which contains multiple pages.
    How can I create a page break in my file? I tried to use the
    following
    two methods, but neither of them works. Specifically, it seems a
    special
    character printed in the file. But when I print the file through a
    WordPad, it didn't separate pages.
    I am currently using version 3.0.C on Windows NT 4.0 with a HP Plus 4
    printer. Any help will be greatly appreciated.
    Tien Wang
    Indus Consultancy Services
    [email protected]
    >
    <method 1>
    myFile : file = new();
    file.writeLine('\f'); --- \f is the form feed in the C language
    <method 2>
    myFile : file = new();
    j : IntegerData = new( value = 14 );
    c : char = j.IntegerValue; -- c now contains ascii 14 (form feed)
    p : pointer to char = &c; -- Set a pointer to the character
    pageBreakTxt : TextData = new();
    pageBreakTxt.Concat(p);
    myfile.writeLine(pageBreakTxt);

  • How can I create a page break in a file?

    Hi,
    I am creating a text file for a report which contains multiple pages.
    How can I create a page break in my file? I tried to use the following
    two methods, but neither of them works. Specifically, it seems a special
    character printed in the file. But when I print the file through a
    WordPad, it didn't separate pages.
    I am currently using version 3.0.C on Windows NT 4.0 with a HP Plus 4
    printer. Any help will be greatly appreciated.
    Tien Wang
    Indus Consultancy Services
    [email protected]
    <method 1>
    myFile : file = new();
    file.writeLine('\f'); --- \f is the form feed in the C language
    <method 2>
    myFile : file = new();
    j : IntegerData = new( value = 14 );
    c : char = j.IntegerValue; -- c now contains ascii 14 (form feed)
    p : pointer to char = &c; -- Set a pointer to the character
    pageBreakTxt : TextData = new();
    pageBreakTxt.Concat(p);
    myfile.writeLine(pageBreakTxt);
    -----------------------------------

    Tien,
    Try myFile.WriteText('\x0c'); instead of myFile.WriteText('\f');
    Regards
    Richard Stobart
    -----Original Message-----
    From: Wang, Tien [SMTP:[email protected]]
    Sent: Friday, September 12, 1997 6:09 PM
    To: Glen A. Whitbeck
    Cc: forte-users; owner-forte-users
    Subject: RE: How can I create a page break in a file?
    Thank you, Glen. I tried WriteText. But it didn't work.
    Tien Wang
    Indus Consultancy Services
    [email protected]
    From: Glen A. Whitbeck
    Sent: Thursday, September 11, 1997 11:59 AM
    To: Wang, Tien
    Cc: forte-users; owner-forte-users
    Subject: Re: How can I create a page break in a file?
    Instead of using "WriteLine," try using "WriteText" ("WriteLine" writes
    TextData into an open file, while "WriteText" writes data to a stream)
    like this:
    <method 1>
    myFile : file = new();
    myFile.WriteText('\f');
    Glen
    Wang, Tien wrote:
    Hi,
    I am creating a text file for a report which contains multiple pages.
    How can I create a page break in my file? I tried to use the
    following
    two methods, but neither of them works. Specifically, it seems a
    special
    character printed in the file. But when I print the file through a
    WordPad, it didn't separate pages.
    I am currently using version 3.0.C on Windows NT 4.0 with a HP Plus 4
    printer. Any help will be greatly appreciated.
    Tien Wang
    Indus Consultancy Services
    [email protected]
    >
    <method 1>
    myFile : file = new();
    file.writeLine('\f'); --- \f is the form feed in the C language
    <method 2>
    myFile : file = new();
    j : IntegerData = new( value = 14 );
    c : char = j.IntegerValue; -- c now contains ascii 14 (form feed)
    p : pointer to char = &c; -- Set a pointer to the character
    pageBreakTxt : TextData = new();
    pageBreakTxt.Concat(p);
    myfile.writeLine(pageBreakTxt);

  • TS1424 I purchased and downloaded a book in iBooks.  I read about 16 chapters.  The next time I opened the app to read the book, no words loaded on the pages.  It would go to the table of contents, but not to pages in chapters.  Any ideas?

    I purchased and downloaded a book in iBooks.  I read about 16 chapters.  The next time I opened the app to read the book, no words loaded on the pages.  It would go to the table of contents, but not to pages in chapters.  Any ideas?

    Try to reset your phone, hold the home/sleep buttons until it reboots and the apple logo appears, don't release the buttons till apple logo appears.  If no luck there, Resync the book.  Or delete it and redownload it.  Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • Create a an Table of content or an Index page in report in Oracle BI Publisher

    I want to create an Index page for my multi page report in Oracle BI Publisher. Any help would be appreciated.
    I am using MS word 2010 for creating the template (*.rtf file). Please let me know if any more details are required.
    I am creating a rtf template for generating a report in oracle BI Publisher. The report displays the details for all the products used by the customer. Report contains 1 product per page. All the products have same template.
    What I want is to create an Index page, which displays the product name and the page number of the report in which it is generated.
    For eg. Customer Papa Johns uses 10 products. The report generated will contain below details: 1st Page -> Cover Page containing Basic details of customer.
    2nd Page -> Index page containing the product names and the page numbers 
    3rd page: Product 1 details 
    4th page: Product 2 Details .
    and so on.
    INDEX
    Product Name Page No.
    Anchovies 4
    Apple Topping 5
    Bacon 6
    Barbecue Sauce 7
    Barbecue Sauce2 8
    Chicken Topping 9
    Dough 10
    Please note that the number of product will be variable(may increase or decrease), hence there may be case when the index page takes more that 1 or 2 pages just to print the product names and their respective page numbers.
    PSB the data XML
    <?xml version="1.0" encoding="UTF-8"?>
    <!--Generated by Oracle BI Publisher 11.1.1.5.0-->
    <DATA_DS>
    <G_1>
    <PRODUCT_NAME>1234</PRODUCT_NAME>
    <PROD_CODE>1234</PROD_CODE>
    <CL_CUS_SEQ>294122</CL_CUS_SEQ>
    </G_1>
    <G_1>
    <PRODUCT_NAME>80/120 cooked and peeled prawns</PRODUCT_NAME>
    <PROD_CODE>46138</PROD_CODE>
    <PROD_TEMPERATURE>Frozen</PROD_TEMPERATURE>
    <CL_CUS_SEQ>310702</CL_CUS_SEQ>
    </G_1>
    <G_1>
    <PRODUCT_NAME>ABV Gate Gourmet</PRODUCT_NAME>
    <PROD_CODE>ABV</PROD_CODE>
    <CL_CUS_SEQ>310665</CL_CUS_SEQ>
    </G_1>
    <G_1>
    <PRODUCT_NAME>APRICOT OATMEAL COOKIE</PRODUCT_NAME>
    <PROD_CODE>11040895</PROD_CODE>
    <PROD_TEMPERATURE> - </PROD_TEMPERATURE>
    <CL_CUS_SEQ>305678</CL_CUS_SEQ>
    </G_1>
    <G_1>
    <PRODUCT_NAME>ASP PRODUCT</PRODUCT_NAME>
    <PROD_CODE>ASP_PRODUCT_2</PROD_CODE>
    <PROD_TEMPERATURE>Ambient</PROD_TEMPERATURE>
    <CL_CUS_SEQ>360128</CL_CUS_SEQ>
    </G_1>
    </DATA_DS>
    Thanks for help in advance.

    Hi Alex,
    Many thanks for replying.
    I followed the link, but unable to get correct output.. I have shared the template earlier. I can share the template once again.
    It would be grateful if you give me share the working template with table of content.

  • Which Acrobat 9 product? Table of Contents & Index "jump" to page

    I would like to create a document in Microsoft Word 2008 for Mac (version 12.1.0) that will have a table of contents as well as an index. When I convert this document into a PDF format, I would like the table of contents as well as the index to be "active", in that the user will be able to click on a topic or index reference, and then jump automatically to that page in the PDF document. The PDF document will be loaded on my website.
    Which Adobe Acrobat 9 product will provide this functionality?
    Thanks!

    Margie,
    There is not product that will do this for Microsoft word from Adobe on
    a Mac. If MS Word 2008 has its own pdf capabilities, you might see if it
    will do it on its own. BTW, there is only one Acrobat product on the
    Mac---Acrobat Pro. There are several versions for Windows.
    Mike

  • How can I create a page break on z version of HAP_PDF_OFFLINE_FORM ?

    I've created a z version of HAP_PDF_OFFLINE_FORM for different enhancements. One change that's baffling me is trying get a page break when the form reaches "2. Current Goals".
    I'm pretty sure it's a conditional page break when looping through a table of data, but which one?
    Also when setting up the when condition, is a literal suppose to be in single or double quotes? Or none at all?
    Any help on this is appreciated. Thanks

    Not a clean solution but a fast one without any special tricks:
    - create a hidden subform, go to tab Pagination and set the page break here (like Top of next page or anything you want)
    - test your condition to make the subform visible and only when visible the page break is applied
    If you don´t need a condition, skip item 2. Hope that will help fast, regards Otto

  • Do nested tables conflict with ?split-by-page-break:? -getting blank pages

    I have an RTF template with multiple levels of groupingwith sub-totals and pagebreaks at several levels. I'm using nested tables to keep the lowest level group together. The nested table works fine as far as keeping the rows together - if a group doesn't fit on a page, it is pushed to the next page; however, it has created some blank pages in the report. The first time I report the lowest level group details, if they don't fit on one page, I get a blank page followed by the data. Each time the lowest level group changes, this may or may not occur depending on the amount of data.
    If you have come across this before or have some suggestions, I would really appreciate a response. I've been working on this for quite some time and have run out of things to try.
    The template is quite complex and the XML very long, so I won't post. However I can email them to you if you'd like to take a look.
    Thank you for your help,
    Tam
    Edited by: Tam_11 on Nov 19, 2009 2:42 PM

    Thanks for replying.
    Yes, I tried removing the <?split-by-page-break:?> and using MS hard page break (ctrl-enter) and that doesn't work either. My totals moved to a separate page by themselves and I'm still getting the blank pages.
    <?split-by-page-break:?> did exactly what it was supposed to until I added in the nested tables. It's very possible that I did something wrong with my nested tables (only my second XML report). Does anyone have a sample with nested tables that they would be willing to share?

  • Table of Contents Linking in iOS Pages ?

    I'm in the process of creating a Pages file [on my MacPro], consisting of song lyrics, leadsheets, etc.
    The file will be used on my iPad2, which will be placed on a music stand for live performance.
    I've set up a table of contents [on my MacPro], and each entry links to a specific page [a song] within the document.
    I've transferred the file to my iPad2
    When I attempt to use the file in iOS Pages, the links are not present.
    The document is currently over 100 pages, so scrolling to go to another page is too time consuming and awkward for live oerformance.
    Does a linking feature in iOS Pages?  Is there a workaround?
    If not, this should be implemented.  Specifically, it makes sense as an iPad feature.
    Thanks!

    Hi,
    Something else that you can try, although it really depends on your usage of the Pages document, you can export the Pages file as an ePub and import it to your iBook app.
    The TOC should be working in the iBook, it gives you a great way to read the information although you can't edit.
    Hope that helps

  • How do I remove the "Show" (Table of Contents) link from my page?

    I am using Robohelp 7 and exporting to WebHelp to use on an internet page.  When clicking the help icon from my internet page, I am displaying a specific page within my Robohelp content, and not including the Table of Contents.  However, at the top of my rendered page, there is a "Show" link automatically being displayed.  If you click that link, you then get the full Table of Contents.  I do not want that "Show" link to be displayed at all.  But I can't figure out where it is coming from.
    This image shows the "Show" link (image also attached below):
    This image shows the code showing the Show, but we don't know where it's coming from or how to get rid of it (image also attached below):

    Hi there
    In your Single Sourc Layout properties there is an option labeled "Show Navigation Link in Topics". You need to clear that option when you generate.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7 or 8 within the day - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • How to create a page break in application designer

    Hi Folks,
    I need to create a simple page break in a PeopleSoft online page for the purpose controlling how the page prints. To achieve this, I'm using an HTML area in app designer with the following page break code:
    <p style="page-break-after:always;"></p>
    Unfortunately, with this code, and extra blank page will print out after the HTML area. It's actually breaking both before and after the HTML area. I've tried every permutation of the 'break' command with no luck. How can I stop the extra blank page from printing?
    Thanks!
    -Larry

    Try posting in the iWorks forum.
    https://discussions.apple.com/community/app_store/iwork_for_ios

  • Displaying pagenumbers in table of contents in the 2nd page of a smartform.

    We have a requirement where we need to display "Table of contents" with headings and corresponding page numbers .The page numbers for the headings need to be picked up at run time.But the "Table of contents" is in the second page whereas the headings appear in the later pages.So it is difficult to display the respective page numbers.Can anybody give me a solution for this.

    Hi.
    Perhaps you could try this.
    In the main window: When you print out the heading you can get the page number you are currently on. Save that number in a table/structure for each header.
    Then on the second page you could have a "Late processing" window and print your headers with the page numbers you have stored in your table/structure.
    I think this will work, or at least give you a clue on how to do it.
    BR
    Niklas

  • Making my table of contents link to the page within the ebook

    I have a  40+ word document that I converted to pdf format, but lost the document internal links that was set up with the table of contents in Word.  Can someone please help me figure out how to make the table of contents have the internal links again?  I need this asap!!!!
    Thank you!

    If you have Acrobat Standard or Professional installed Adobe PDFMaker is available.
    Use it to convert the Word file to PDF.
    As there are specific "bands of compatibility" vis-a-vis an Office release and an Acrobat release you do want to ensure that the version of Acrobat used is compatible with the version of Office installed.
    Properly configured (via the settings under the different tabs in the dialog) , Adobe PDFMaker will convert the Word file to a Tagged output PDF with the active links.
    Tagged output PDF is needed for PDF ebooks that are to be used on eReaders as this facility is what supports reflow (needed for the smaller screen size, eh).
    Oh yes, smaller, appropriate page size helps too (but I'd guess you've got that already).
    Regarding Acrobat (PDFMaker) compatibility ... See:
    TechNote ID 333504 –
    Acrobat PDF-capable web browsers and PDFMaker-compatible applications (Acrobat 6.x - 9.x on Windows and Mac OS)
    http://kb2.adobe.com/cps/333/333504.html
    Joel Geraci's blog article –
    Version Compatibility of Acrobat PDFMakers
    http://blogs.adobe.com/pdfitmatters/2008/12/version_compatibility_of_acrob.html
    Be well...

  • Table of Contents - Title style

    Hi there,
    some issues (for me) when I'm trying to give a paragraph style to the TITLE within a Table of Contents. This is my starting point:
    Then I select "indice_TOC" for the title style and I "save the style" (replacing previuos style):
    Then I close the panel but when I reopen the TOC I find the title style has not been saved:
    The only way to get the saved style is to manage styles from "Table of Contents Styles". Yes, I know, this is a possible workaround but the problem is that I can save any other changement in this window save (sic!) the title style. Please give a look and let me know where I'm wrong.
    Thanks, K.

    Rh is using Word's default TOC style.
    If you are generating using the project's CSS, or any other CSS, then you are stuck with fixing each document.
    If you generate to a Word template, then open the template and modify the TOC style to be left aligned. I just tried it and it works fine.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

Maybe you are looking for

  • Firewall and Internet Sharing dont mix

    After talking to AppleCare, looks like my firewall is not letting me sync to my AppleTV because I am using Internet Sharing to connect it to my Mac Mini (PPC) and get to the internet through the Mini's ethernet. I have no Airport Express or Extreme.

  • I don't know how to ask this question... Can you help?

    I'll state right from the get-go, this is NOT a Premiere problem.  This is a Windows problem, but I don't know exactly what it is. Why I'm I posting it here?  It's in Premiere that I notice it the most. I can be watching my playback in Premiere fine

  • RDWeb Server 2008 R2 and WIndows 8.1 Clients

    Hi I have an issue with RDWeb and Windows 8.1 clients. Works fine with Windows 7 and Windows 8 clients, yet 8.1 is a no go. I can log on to RDWeb, display the available apps for the logged on user, but when trying to connect to an app it never loads.

  • Is there a way to schedue scripts in Business Catalyst

    Hi, My intentions are to create few recurring jobs that whould interact with the BC Apis (from within the BC website) . I have a requirement to run few of them on weekly basis and few on monthly basis as well. Is there a way in which BC would allow m

  • Any function in jdeveloper to decode the message

    Hi, I am working on BPEL.I am sending a xml message as input which is getting encoded. Is there any function in bpel which will decode the message and assign to the output. please help me out of this problem Regards, mohamed