Headers, Sections Breaks and Layout Breaks

I need to be able to turn Headers on and off in different places in the documents.  In Appleworks I would make a section break, tell it not to carry over the headers and footers from the previous section, and that was it.  In Pages 09, Section breaks start a new page, which I don't want.  Layout breaks don't start a new page, but I don't see I can tell it to NOT carry over the headers and footers from the previous Layout.  Is there no way to do this?
Frustrated in MO

I really don't understand where is the problem with the need to insert a section break to ask the app to use a different page header.
The headers appear on top of pages which means that they appear after pages or section breaks.
It seems that you did something wrong. When I insert a section break the app doesn't create a new page, it insert a forced separation between two existing pages.
Are you sure that you used the menu "Insert a section break" ?
My guess is that you used "Insert a Section".
Yvan KOENIG (VALLAURIS, France) samedi 11 juin 2011 11:10:20
iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.7
Please : Search for questions similar to your own before submitting them to the community
To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

Similar Messages

  • Table on Page One Blocking Layout/Section Break & Distinct Headers/Footers

    Is there any way to start a new Header/Footer on page 2, after a page one table that fills the page?
    I've created my first page as a Table (entire page) in order to recreate the front page of my newsletter, as used by a previous editor. Works great, and has been the only way I've found to mimic the old front page. Problem is, I can't get the document to accept setting up a different header and footer for subsequent pages, and when I try to do so, I end up with a header on page 1 above my banner Headline. Yech.
    I can't put a section break inside the Page 1 Table - Pages Won't allow (option is greyed out). I tried to put a layout break at the top of page 2, which is supposed to allow a new Header/Footer for subsequent pages, but when i insert the cursor on page 2 and attempt to create a distinct Header/Footer for the document after the layout break, there is a check mark, greyed out, in the Section part of the Layout Inspector, for the line: Use previous Headers and Footers. That is, it's locked and can't be unchecked.
    If I do try to set up a header/footer field linked to the doc page after the layout break, it also creates the same layout and fields as for the first page.
    Am I stuck here because I started out my doc with a table?
    G-5   Mac OS X (10.4.8)  

    Welcome to the forums, OwlRemembers.
    You should be OK with using the table as you are. The problem is probably arising because you aren't inserting the section break into the default text box on the page. This may be because the cursor is being inserted into the header, or that the table is covering the entire default text box, and so clicking in the main part of the page selects a table cell.
    There are two things I would suggest. The first is to use the Layout View (under View menu, choose Show Layout) -- this will ensure that you can see the default text box (the big box that covers most of the page. The second would be to click on the table you have created and, in the Wrap Inspector palette, choose "Fixed on page". Once this is done, you should be able to grab the table, move is slightly aside, insert a section break on the page, and move the table back.

  • How to change the header and footer in the Section Breaks Next Page using OpenXML?

    I have a word document file in which I added a Section Break of Next Page, now I want to change the header and footer of that page.
    Scenario of example, I have a doc file which has four pages with headers and footers and added fifth page in the section break next page, I want to change the header and footer of the fifth page only. This is achievable manually by deselecting the Link to Previous
    button in the Word Application but I don't know how to change it using XML?
    My code that adds the new page in the section breaks is:
    class Program
    static void Main(string[] args)
    string path = @"C:\Riyaz\sample.docx";
    string strtxt = "Hello This is done by programmatically";
    OpenAndAddTextToWordDocument(path,strtxt);
    public static void OpenAndAddTextToWordDocument(string filepath, string txt)
    using (DocX document = DocX.Load(@"C:\Riyaz\sample.docx"))
    document.InsertSectionPageBreak();
    Paragraph p1 = document.InsertParagraph();
    p1.Append("This is new section");
    document.Save();
    Please help.

    Here is the sample for your reference:
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using DocumentFormat.OpenXml;
    using DocumentFormat.OpenXml.Packaging;
    using DocumentFormat.OpenXml.Wordprocessing;
    namespace WordAddNewFooterHeader
    class Program
    static void Main(string[] args)
    string path = @"E:\Document\TestHeaderandfooter-Copy.docx";
    string strtxt = "OpenXML SDK";
    OpenAndAddTextToWordDocument(path, strtxt);
    public static void OpenAndAddTextToWordDocument(string filepath, string txt)
    // Open a WordprocessingDocument for editing using the filepath.
    WordprocessingDocument wordprocessingDocument = WordprocessingDocument.Open(filepath, true);
    MainDocumentPart part = wordprocessingDocument.MainDocumentPart;
    Body body = part.Document.Body;
    //create a new footer Id=rIdf2
    FooterPart footerPart2 = part.AddNewPart<FooterPart>("rIdf2");
    GenerateFooterPartContent(footerPart2);
    //create a new header Id=rIdh2
    HeaderPart headerPart2 = part.AddNewPart<HeaderPart>("rIdh2");
    GenerateHeaderPartContent(headerPart2);
    //replace the attribute of SectionProperties to add new footer and header
    SectionProperties lxml = body.GetFirstChild<SectionProperties>();
    lxml.GetFirstChild<HeaderReference>().Remove();
    lxml.GetFirstChild<FooterReference>().Remove();
    HeaderReference headerReference1 = new HeaderReference() { Type = HeaderFooterValues.Default, Id = "rIdh2" };
    FooterReference footerReference1 = new FooterReference() { Type = HeaderFooterValues.Default, Id = "rIdf2" };
    lxml.Append(headerReference1);
    lxml.Append(footerReference1);
    //add the correlation of last Paragraph
    OpenXmlElement oxl = body.ChildElements.GetItem(body.ChildElements.Count - 2);
    ParagraphProperties paragraphProperties1 = new ParagraphProperties();
    SectionProperties sectionProperties1 = new SectionProperties() { RsidR = oxl.GetAttribute("rsidR", oxl.NamespaceUri).Value };
    HeaderReference headerReference2 = new HeaderReference() { Type = HeaderFooterValues.Default, Id = part.GetIdOfPart(part.HeaderParts.FirstOrDefault()) };
    FooterReference footerReference2 = new FooterReference() { Type = HeaderFooterValues.Default, Id = part.GetIdOfPart(part.FooterParts.FirstOrDefault()) };
    PageSize pageSize1 = new PageSize() { Width = (UInt32Value)12240U, Height = (UInt32Value)15840U };
    PageMargin pageMargin1 = new PageMargin() { Top = 1440, Right = (UInt32Value)1440U, Bottom = 1440, Left = (UInt32Value)1440U, Header = (UInt32Value)720U, Footer = (UInt32Value)720U, Gutter = (UInt32Value)0U };
    Columns columns1 = new Columns() { Space = "720" };
    DocGrid docGrid1 = new DocGrid() { LinePitch = 360 };
    sectionProperties1.Append(headerReference2);
    sectionProperties1.Append(footerReference2);
    sectionProperties1.Append(pageSize1);
    sectionProperties1.Append(pageMargin1);
    sectionProperties1.Append(columns1);
    sectionProperties1.Append(docGrid1);
    paragraphProperties1.Append(sectionProperties1);
    oxl.InsertAt<ParagraphProperties>(paragraphProperties1, 0);
    body.InsertBefore<Paragraph>(GenerateParagraph(txt, oxl.GetAttribute("rsidRDefault", oxl.NamespaceUri).Value), body.GetFirstChild<SectionProperties>());
    part.Document.Save();
    wordprocessingDocument.Close();
    //Generate new Paragraph
    public static Paragraph GenerateParagraph(string text, string rsidR)
    Paragraph paragraph1 = new Paragraph() { RsidParagraphAddition = rsidR };
    ParagraphProperties paragraphProperties1 = new ParagraphProperties();
    Tabs tabs1 = new Tabs();
    TabStop tabStop1 = new TabStop() { Val = TabStopValues.Left, Position = 5583 };
    tabs1.Append(tabStop1);
    paragraphProperties1.Append(tabs1);
    Run run1 = new Run();
    Text text1 = new Text();
    text1.Text = text;
    run1.Append(text1);
    Run run2 = new Run();
    TabChar tabChar1 = new TabChar();
    run2.Append(tabChar1);
    paragraph1.Append(paragraphProperties1);
    paragraph1.Append(run1);
    paragraph1.Append(run2);
    return paragraph1;
    static void GenerateHeaderPartContent(HeaderPart hpart)
    Header header1 = new Header();
    Paragraph paragraph1 = new Paragraph();
    ParagraphProperties paragraphProperties1 = new ParagraphProperties();
    ParagraphStyleId paragraphStyleId1 = new ParagraphStyleId() { Val = "Header" };
    paragraphProperties1.Append(paragraphStyleId1);
    Run run1 = new Run();
    Text text1 = new Text();
    text1.Text = "";
    run1.Append(text1);
    paragraph1.Append(paragraphProperties1);
    paragraph1.Append(run1);
    header1.Append(paragraph1);
    hpart.Header = header1;
    static void GenerateFooterPartContent(FooterPart fpart)
    Footer footer1 = new Footer();
    Paragraph paragraph1 = new Paragraph();
    ParagraphProperties paragraphProperties1 = new ParagraphProperties();
    ParagraphStyleId paragraphStyleId1 = new ParagraphStyleId() { Val = "Footer" };
    paragraphProperties1.Append(paragraphStyleId1);
    Run run1 = new Run();
    Text text1 = new Text();
    text1.Text = "";
    run1.Append(text1);
    paragraph1.Append(paragraphProperties1);
    paragraph1.Append(run1);
    footer1.Append(paragraph1);
    fpart.Footer = footer1;
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Using iWork 09 Pages I need the first six pages of a document to not be counted as page numbers. I need the seventh page to be numbered as page one. I already know to have a section break between pages 6 and 7 and to use inspector "start at." Not working

    In the book I'm formatting, the first page is the title page, the second page is the copyright page, the third through fifth pages are the table of contents, the sixth page is blank, then the text (which I want to number as page one) is the introduction. I have section breaks between the title page, the copyright page, the table of contents, and the introduction. Using the Inspector, Layout, Section, and selecting "Start at" 7 doesn't do anything!

    Is is a bit tricky, but it works. On your 6th page (the blank one) go to Insert > Section Break. This will give you a 7th page. Then go to Inspector (blue circle with a white letter i in it) and go to Layout Inspector (2nd tab). Once in thee, go to Section. Check "Start at" and enter the number 1. Then ensure all other toons I there are unchecked.
    Then go to Insert, and select Auto Page Numbers. You will find that your 7th page is numbered 1 as you want, but the first six pages will be numbered 1 to 6, which you don't want. But you can then delete the page numbering in that 1st section, leaving your 2nd section, beginning at page 7, numbered as page 1. You'll need to play around a bit as I did, and I would suggest using a test document to play with so you can undo any unwanted actions etc, but with tweaking around, it's doable. This took me ages to sort, so if it works for you, please give me the points :-)

  • No PDF created when section break used and no data in XML group

    I have this issue that Tim Dexter documented on a few years back...
    http://blogs.oracle.com/xmlpublisher/output_formats/
    "When you are using @section in your template for the commands, 'for-each' or 'for-each-group' (e.g. <?for-each@section: ...?>), then an empty/invalid PDF can be generated if XML data file has no data for that for-each loop."
    This is my exact issue. Yet the instructions do not solve my problem completely. I add another section break at the end of my RTF and it gets the page to show...but I get an extra page at the end of all the populated xmls
    Is there a way to supress this page?

    Hi Jason,
    I would like to see your template and data.
    You have use @section and add condition to make the no-data page.

  • How do I adjust the page orientation in Pages?  I want to keep the pages above the section break as portrait, and the ones below I want to change into landscape.  Is this possible?  I can only get it to be one or the other but not both.

    I want to keep the pages above the section break as portrait, and the ones below I want to change into landscape.  Is this possible?  I can only get it to be one or the other but not both.

    The work around is to do two documents, one in portrait format and one in landscape format. When finished export to Pdf. open in Preview by select both files and use Cmd + O or doubleclick. You can now in Previews thumbnail column the pages from one document into the other and then save.
    If you have created only one with i.e. all pages in portrait format but with the content for the landscape pages rotated on the pages, you can rotate the pages in Preview. Two ways to get the same result.

  • Really having problems with organising documents in pages. For example, deleting pages deletes the whole section and I cannot insert a section break as its greyed out & sending an object to background deletes several pages - what the **** is going on???

    Really having problems with organising documents in pages. For example, deleting pages deletes the whole section and I cannot insert a section break as its greyed out & sending an object to background deletes several pages and trying to insert a text box autmatically creates new pages- what the **** is going on??? Is this programme really this badly thought out? I thought everything apple was supposed to be intuitive!?!?!? Help.

    You can not insert a section break into a textbox.
    You appear to have a lot of objects with wrap set, that once you take them out of the flow of text (by sending them to the background) causes the text to reflow and contract into fewer pages. Pages is almost unique in the way it forms up pages in Word Processing mode only so long as there is text on them.
    I suspect you probably have hammered away at returns, spaces and tabs as well to position things, which only works to add to the mess.
    Download the Pages09_UserGuide.pdf available under the Help menu and swot up a bit on how it works.
    You may find this a usueful resource as well:
    http://www.freeforum101.com/iworktipsntrick/
    Peter
    PS There is quite a lot of programming in OSX that is far from "intuitive". Pages is easy at one level, when using the templates, otherwise it can be quite frustrating.

  • Changing footnotes and pagination location in section breaks

    I need to be able to change the location of my page numbers on the first and second pages of a new chapter. In addition, to be able to restart footnote numbering at "1" at the beginning of each new chapter. Each new chapter requires pagination at the bottom center of page, and the second page of the new chapter at the top right hand section of page. So, a section break is required for the first page of the new chapter, and a section break is required for the second page of the new chapter. The problem is, how do you co-ordinate this with footnote numbering? Each new section break restarts the footnotes at "1" rather than continuing from preceding page of the new chapter.

    Check "More Like This" to the right , maybe some help there>>>>>>>>>>>>>>>>>>>>>>>

  • Large Word document imported into Pages with "Section Break Problems"

    Hi there,
    I am importing a large Word document with many photos (>250 pages) into Pages. Now, the problem is that when using the "page thumbnail" window to the left it marks all my windows with a yellow border.
    This means that I can't duplicate single pages - it will duplicate the whole stuff. Same thing for delete.
    I can go to the last character of each page and insert a "section break". This creates single pages. But it seems a bit odd to me, and with >250 pages, this is quite some work too.
    Any idea what I can do to solve quickly the issue?
    Thanks for any hints!

    Sections are what they say they are natural breaks in the document.
    Each section usually having headers footers and other basic content in common.
    Effectively just like chapters in a book or specifically designed pages in a magazine or report.
    If your text naturally flows from one page to the next then they should stick together.
    If on the other hand you are treating them all like single leaves of paper to be shuffled around, then you need a section break at the end of each page.
    3 ways you can quickly do this:
    1. There is a unique start to each page such as a return followed by a particular word. You can search on this combination replacing it with a section break followed by the word.
    2. You can make a short cut to do this from the keyboard
    3. You can copy a section break and paste it at the end of each preceding page.
    4. You can transfer by copying and pasting the content into a Layout mode document where every page is its own section.
    As with most work, planning, organisation and thinking before you leap, pays off in the long run.
    Peter

  • Section break not breaking in the correct place??

    I'm in the process of creating an eBook.
    There is a cover page, then the rest of the book.
    I would like to:
    1) have no headers or footers on the cover page.
    2) have page numbering start on the page after the cover page.
    I would think that this would be simply done by putting a section break on the first page. When I do that, the page numbering is correct.
    But!! When I modify the header/footer on the cover page, the header/footer on the second page changes too! (the third page stays in its original format)
    I only have a cover image on the first page.But it doesn't make any difference whether the image is floating or inline.
    Invisibles are on and viewable, showing me clearly that the section break is on the first page, yet the headers and footers on the first and second pages appear to be tied together????
    What am I doing wrong??

    Doug
    Read the Pages09_UserGuide.pdf downloadable from under the Help menu.
    +Inspector > Layout > Section > Page Nubers > Start at: > Configuration > First page is different/uncheck Use previous Headers & Footers+
    Peter

  • How do I get a section break/page break when the item is greyed out?

    I've created an A4 document in word processing mode, with four identical A6 text boxes covering the entire page. Then I've created a second page with four more A6 text boxes so I can print a postcard on both sides of the card. Trouble is, Pages has made two extra text pages that I don't want, the first is linked to Pages 1 and 2, and the second is separate. I can't create a section break or page break because the command is greyed out, so I can't delete page 3. When I try and delete page 4, which is a stand alone page, it also deletes pages 2,3 and 4, leaving me with just page 1!
    I don't have any problem with page breaks or section breaks in an ordinary A4 document with just one text box on a page, but I often want to create multiple text boxes and when I do I have always had this problem, ever since Pages was first introduced. Can anyone tell me what I'm doing wrong, please?

    Thank you, Yvan, but I've tried that. Firstly, I unchecked the headers and footers tick box in the Inspector because I want the postcards to be exactly A6 size, that is, one quarter of A4. I've tried making the lower two text boxes slightly smaller (which I don't really want to do, because I want them A6 size) but I still can't get the insertion point to appear below the text box – it stays resolutely in the next page and won't go back up to the previous page. Any further ideas? Thank you.

  • How to create a document with sections that differ in margin and layout

    I'm trying to add a pages document 'B' into my new pages document 'A'.
    A and B have two entirely different layouts and different document margins. So whenever i copy B into A, B's margins become A's margins and thus B's layout turns into a mess.
    I tried adding a section break, column break, layout break.. None resolves the issues.
    All ideas on this are appreciated.
    Thank you.

    A document has the same size, orientation and margins throughout.
    You can however set the minimum margins and use Layout breaks to position text and images within that.
    In practice it is best to keep the two separate and combine the finished sets as .pdfs.
    Peter

  • How to insert a section break without a page break on Pages 5? Is it possible?

    I would like to begin a page with a page-wide paragraph, then continue with multiple columns. Can I insert a section break and stay on the same page, making the second section three columns? I haven't found a way to do that, and it seems it's not that unusual a format? It was easy with Pages 4.

    You mean a Layout Break.
    This is one simplification in Pages 5.
    Just select the paragraphs and change the number of columns in the Format sidebar.
    The only problem is vertical and horizontal indents, there are none.
    Peter

  • Cannot copy a 2 column pages document with section breaks

    I have created a 5 page document with 2 columns on each page, section breaks dividing 3 sections so that I have a different header on each section. When I go to the edit menu, I cannot select "select all" and consequently, cannot copy and paste that whole document.
    Where did I go wrong?

    This should be asked in the iWebs forum.
    iWeb has set layouts. Choose the one you want say with 2 columns and then add your text/images to it.
    There are also iWeb video tutorials under the iWeb Help menu.
    Unfortunately Apple has chosen not to supply User Guides for iWeb, because it is "so obvious".
    Peter

  • Spacing & Section Breaks

    Hi,
    My first day using the iPad with Pages. Documents imported from Pages '09 desktop mostly look different, for instance:
    text starting at the top of a column 2 might shift to the bottom of column 1;
    text above a tables might shift to below the table.
    I was expecting more similarity between Desktop and iPad versions but perhaps the warning about removing section breaks has quite an effect on layout. What else do you find displays differently?

    Goto http://www.apple.com/feedback and let them know you would like to keep section breaks to help preserve the look and feel of your original documents. If you do not let them know, they will never know to fix it.
    Jason

Maybe you are looking for

  • Parallel currency in company code require material ledger activation

    Hello, I have a requirement where the company is using parallel currency in NEWGL concept with two different currencies INR and USD. I want to have a clarification whether I Need to activate Material ledger with parallel currency. 1. Company is using

  • PowerBook G4 867 Success

    A note of hope to those considering installing Leopard on the minimum hardware: I have had virtually no problems at all with it on my pokey G4. It did take up a big chunk of my available harddrive - 8 GB! I had cloned my drive to an external and perf

  • Same select statement taking more time

    Hello all, I have two select statements. only the name of table from where it is fetching records are different. 1) select belnr posnr etenr into corresponding fields of table it_cdtemp2 from j_3avasso for all entries in it_cdtemp1 where belnr = it_c

  • EDI transaction code

    Can you tell me some important EDI related transaction codes and why they are used? Also can you brief me about the important EDI examples that are generally used ? (Links are not necessary, if you can give me good brief idea for the above questions,

  • Q10 not showing my facebook updates

    Someone please help! I was prompted to load a more recent version of FB, which i did. However now it doesn't show my status updates on my wall that i posted over the last couple of weeks. Nor any of my friends when i go into their walls. But I am get