How do I break up a Section? (in Pages)

I have a Section that Pages has created as I have built a up a document (not quite sure why it's done this, but that's one of the mysteries of Pages).
As I've been moving individual pages around within the Section, it's been adding extra pages within the section.
In theory, I should be able to delete these by clearing them of content, but what happens in practice is that as I delete the last bit of content from such a page it deletes the whole Section. (Which I then have to recover by using Undo).
I think the best way to deal with this is to break up the whole Section into individual pages, but netiehr Help, nor Apple, nor the iWork '09 book has any suggestions on how best to do this.
Any clues?
Thanks
Andrew Curry

I think what you are seeking is "Section Break" (Pages > Insert > Section Break).
This thread tells you a bit more:
https://discussions.apple.com/message/15148723#15148723

Similar Messages

  • How do I break up existing sections in pages

    My entire doc is one big section and I need to be able to break them up...how can I add new section in order to delet one or two pages.  Because it is in one big section...it will delete everything.

    I think what you are seeking is "Section Break" (Pages > Insert > Section Break).
    This thread tells you a bit more:
    https://discussions.apple.com/message/15148723#15148723

  • How do I name or rename sections in Pages word processing mode?

    How do I name or rename sections in Pages word processing mode?

    Those pages/sections you see in the when clicking on the Section button are Captured pages that you can use if you like. You can read about Captured pages and all about sections in Chapter 3 of the Pages User Guide. The Guide is downloadable from your Pages Help menu.
    To delete sections you delete the section break. To see the sections break turn on the Invisible characters by going View menu > Show invisibles. Text in the section will stay if you don't delete it.
    Add sections you do by adding section breaks. To name them you have to learn about capturing pages. Read about it on page 60 and 269.

  • How do I delete a blank section of page?

    Hi,
    I've got a long scrolling page.
    I deleted a large section, which is now blank.
    There more page content afterwards.
    How can I delete a blank section in the middle of my big page?
    (Maybe I can highlight the empty section somehow and just delete it like a word processing doc?)
    Please help!
    Owen L

    Hi Aish,
    Thanks for the reply.
    Clicking didn't give me that box.
    When you say drag the content up from the bottom, is the a way I can highlight all the relevenat content?
    ...Or do I have to hold down shift and highlight everything individually?
    Thanks,
    Owen

  • How di I copy and paste sections of pages

    How di I copy and paste sections of pages

    There are extensions that can do that:
    *Abduction!: https://addons.mozilla.org/firefox/addon/3408
    *FireShot: https://addons.mozilla.org/firefox/addon/5648
    *Pixlr Grabber: https://addons.mozilla.org/firefox/addon/9924/
    *WIPS: https://addons.mozilla.org/firefox/addon/146364/
    See also http://guides.macrumors.com/Taking_Screenshots_in_Mac_OS_X

  • I have learned to love PAGES, but I can't figure out how "sections" get linked together and how to unlink them so I can move pages or delete pages with a whole bunch of pages (a section) going away.

    I have learned to love the PAGES program but I will add a new "section" or page to it and then when I look at thumbnails and try to move pages around or delete pages, it treats them as a section of many pages and will only delete several of them together or will add extra blank pages that I don't need. It is very frustrating but must be something I am doing to cause this.

    Burghmom wrote:
    It is the '09 version. I went on the boards and found out that by inserting a page break after each page as I go, I can make each page act individually instead of as a group. Then I can move pages around or delete them through thumbnails. The online manual didn't really help with how to avoid having them act as a group.
    A Page Break pushes the next text to the next page, it is still part of the same section.
    You need to insert a Section Break.
    Peter

  • How do you break a closed path?

    It's infuriating: Not only is there no indicated means of doing this in the GUI or menus, but there's no result in attempting to search the Web for it.
    Once a path is closed, how do you break it open?
    And while I'm at it: I have a vector mask.  I want to draw another vector shape and subtract it from this vector mask.  How would I do this?
    Thanks!

    Thanks, guys.  I will resist going on a tirade about how pathetic this UI is (Delete key having undocumented functionality different from Delete in the menu).
    Question about the multiple shapes, however.  I've selected the vector mask and picked the freeform pen tool to add another shape.
    The original shape is the boat outline, and everything around it was masked out.  Now I want to draw another shape at the bottom for the "waterline", also eliminating its contents from the final image.  But as you can see, the result only shows the intersection of the two shapes.  No matter what I select for "path operations" in the toolbar, the result is exactly the same.  Except "merge shape components"; then the empty outlines disappear and I'm left with just the filled section.

  • Every time I add a section break it inserts a blank page prior to the new section.

    Not sure I understand why it does this, and how do I get rid of the blank page?

    I cannot duplicate the unwanted extra blank page when adding a new section in Pages v5.5.2. Are you using a template other than blank?
    You can remove the unwanted page by choosing View > Show Invisibles. Then, scroll backwards in your document until you get to the first occurrence of the following section or page break. You can tell if it is a page break because in thumbnail view, the page icon is smaller that the section icon.
    Double-click this line to select, and then press the delete key. Your extraneous page (or section) is now gone.

  • How do I break my codes into classes??

    How do i break each tab into a class and call them inside a main program ??
    Please show me how thanks.
    import javax.swing.JTabbedPane;
    import javax.swing.ImageIcon;
    import javax.swing.JPanel;
    import javax.swing.JLabel;
    import javax.swing.JFrame;
    import javax.swing.JButton;
    import javax.swing.BorderFactory;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.print.*;
    import java.sql.*;
    import java.io.*;
    public class DatabaseApp extends JPanel {
         // declare the width and height of UI
         public static int WIDTH = 800;
         public static int HEIGHT = 600;
         // create textfield objects for user to enter the input
         TextField employeeID = new TextField(15);
         TextField name = new TextField(40);
         TextField address = new TextField(40);
         TextField suburb = new TextField(20);
         TextField state = new TextField(5);
         TextField pCode = new TextField(5);
         TextField dob = new TextField(15);
         TextField homePh = new TextField(15);
         TextField workPh = new TextField(15);
         TextField mobile = new TextField("0",15);
         TextField eMail = new TextField(30);
         TextField dbase = new TextField("employee",20);
         TextField report = new TextField(15);
         TextField query= new TextField(50);
         TextArea displayArea = new TextArea(16,80);
         TextArea helpArea = new TextArea(20,80);
         public static void main (String[] args) {
              JFrame frame = new JFrame ("S-League Management System");
              frame.addWindowListener(new WindowAdapter(){
                        public void windowClosing (WindowEvent e) {
                             System.exit(0);
              frame.getContentPane().add(new DatabaseApp(), BorderLayout.CENTER);
              frame.setSize(800,600);
              frame.setResizable(false);
              frame.setVisible(true);
              //centralise the screen
              Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
              Dimension frameSize = frame.getSize();
              frame.setLocation((screenSize.width - frameSize.width) / 2,
                   (screenSize.height - frameSize.height) / 2);
         /** add buttons to the database form
         public JButton(String text,Icon icon)
         Creates a button with initial text and an icon.
         Parameters:
         text - the text of the button.
         icon - the Icon image to display on the button
         JButton newButton = new JButton (" New ", new ImageIcon(DatabaseApp.class.getResource("img/New.gif")));
         JButton addButton = new JButton (" Add ", new ImageIcon (DatabaseApp.class.getResource("img/Add.gif")));
         JButton findButton = new JButton (" Retrieve ", new ImageIcon (DatabaseApp.class.getResource("img/Find.gif")));
         JButton updateButton = new JButton (" Update ", new ImageIcon (DatabaseApp.class.getResource("img/Refresh.gif")));
         JButton deleteButton = new JButton (" Delete ", new ImageIcon (DatabaseApp.class.getResource("img/Delete.gif")));
         JButton submitButton = new JButton (" Submit Query ", new ImageIcon (DatabaseApp.class.getResource("img/Export.gif")));
         JButton reportButton = new JButton (" Report File ", new ImageIcon (DatabaseApp.class.getResource("img/AlignLeft.gif")));
         /** create tabbed pane for form
         * public void addTab(String title,Icon icon,Component component,String tip)
         * Parameters:
         * title - the title to be displayed in this tab
         * icon - the icon to be displayed in this tab
         * component - The component to be displayed when this tab is clicked.
         * tip - the tooltip to be displayed for this tab
         public DatabaseApp() {
              // create new tabbedPane object
              JTabbedPane tabbedPane = new JTabbedPane(){
                   ImageIcon imageIcon = new ImageIcon("img/logo.jpg");
                   Image image = imageIcon.getImage();
                   public void paintComponent (Graphics g) {
                        g.setColor(new Color(220,220,220));
                        g.fillRect(0,0,643,74);
                        g.drawImage(image, 0, 4, this);
                        super.paintComponent(g);
              tabbedPane.addTab(" Team Management ",null, buildQueryPanel(), "Team Management");
              tabbedPane.addTab(" Player Registration ",null, buildGeneralPanel(), "Player Registration");
              tabbedPane.addTab(" Author ",null, buildAuthorPanel(), "Author");
              // assign layout manager
              //setLayout(new GridLayout(1,1));
              tabbedPane.setSelectedIndex(1);
              tabbedPane.setBorder(BorderFactory.createEmptyBorder(78,0,0,0));
              add(tabbedPane);
         protected JPanel buildQueryPanel() {
              JPanel mainPane = new JPanel();
              // divided into three panes. these panes will be added to mainPanel
              JPanel westPane = new JPanel();
              JPanel centrePane = new JPanel();
              JPanel southPane = new JPanel();
              // assign the layout managers
              mainPane.setLayout(new BorderLayout());
              westPane.setLayout(new GridLayout(4,1));
              centrePane.setLayout(new GridLayout(4,1));
              // create array of Panels for label textfield and buttons and make them left align
              Panel labelPane[] = new Panel[4];
              Panel buttontxtPane[] = new Panel[4];
              Panel textPane[] = new Panel[1];
              for (int i=0; i < labelPane.length; ++i) {
                   labelPane[i] = new Panel();
                   labelPane.setLayout(new FlowLayout(FlowLayout.LEFT));
              for (int i=0; i < buttontxtPane.length; ++i) {
                   buttontxtPane[i] = new Panel();
                   buttontxtPane[i].setLayout(new FlowLayout(FlowLayout.LEFT));
              for (int i=0; i < textPane.length; ++i) {
                   textPane[i] = new Panel();
                   textPane[i].setLayout(new FlowLayout(FlowLayout.LEFT));
              // add different label to the labelPane
              labelPane[0].add(new JLabel("Database:"));
              labelPane[1].add(new JLabel("Query:"));
              labelPane[2].add(new JLabel("Report File:"));
              labelPane[3].add(new Label(""));
              // textfields
              buttontxtPane[0].add(dbase);
              buttontxtPane[1].add(query);
              buttontxtPane[2].add(report);
              // buttons
              buttontxtPane[3].add(submitButton);
              submitButton.setMnemonic('s');
              buttontxtPane[3].add(reportButton);
              reportButton.setMnemonic('r');
              // text area to view the result
              textPane[0].add(displayArea);
              // add action listener to buttons
              submitButton.addActionListener(new ButtonHandler());
              reportButton.addActionListener(new ButtonHandler());
              for(int i=0; i < labelPane.length; ++i)
                   westPane.add(labelPane[i]);
              for(int i=0; i < buttontxtPane.length; ++i)
                   centrePane.add(buttontxtPane[i]);
              for(int i=0; i < textPane.length; ++i)
                   southPane.add(textPane[i]);
              mainPane.add(westPane, BorderLayout.WEST);
              mainPane.add(centrePane, BorderLayout.CENTER);
              mainPane.add(southPane,BorderLayout.SOUTH);
              return mainPane;
         /**Create a JPanel for General tab, divide it into three JPanels for label, displaytext
         * and buttons.Assign a Flowlayout manager to each panel. Add label, textfield
         * and buttons to respective panel. following constructors will be used
         * for Jlabel
         * public JLabel(String text)
         * Creates a JLabel instance with the specified text. The label is aligned against the leading edge of its display area, and centered vertically.
         * Parameters:
         * text - The text to be displayed by the label.
         protected Component buildGeneralPanel() {
              // main panel
              JPanel mainPanel = new JPanel();
              // divided into three panes. these panes will be added to mainPanel
              JPanel westPane = new JPanel();
              JPanel centrePane = new JPanel();
              JPanel southPane = new JPanel();
              // assign the layout managers
              mainPanel.setLayout(new BorderLayout());
              westPane.setLayout(new GridLayout(12,1));
              centrePane.setLayout(new GridLayout(12,1));
              // create array of Panels for label textfield and buttons and make them left align
              Panel labelPane[] = new Panel[12];
              Panel textPane[] = new Panel[12];
              Panel buttonPane[] = new Panel[2];
              for (int i=0; i < labelPane.length; ++i) {
                   labelPane[i] = new Panel();
                   labelPane[i].setLayout(new FlowLayout(FlowLayout.LEFT));
              for (int i=0; i < textPane.length; ++i) {
                   textPane[i] = new Panel();
                   textPane[i].setLayout(new FlowLayout(FlowLayout.LEFT));
              for (int i=0; i < buttonPane.length; ++i) {
                   buttonPane[i] = new Panel();
                   buttonPane[i].setLayout(new FlowLayout(FlowLayout.LEFT));
              // add different label to the labelPane
              labelPane[0].add(new JLabel("Employee No"));
              labelPane[1].add(new JLabel("Name"));
              labelPane[2].add(new JLabel("Address"));
              labelPane[3].add(new JLabel("Suburb"));
              labelPane[4].add(new JLabel("State"));
              labelPane[5].add(new JLabel("PostCode"));
              labelPane[6].add(new JLabel("Date of Birth"));
              labelPane[7].add(new JLabel("Home Phone"));
              labelPane[8].add(new JLabel("Work Phone"));
              labelPane[9].add(new JLabel("Mobile"));
              labelPane[10].add(new JLabel("E-mail"));
              // add textfield component to textPane
              textPane[0].add(employeeID);
              textPane[1].add(name);
              textPane[2].add(address);
              textPane[3].add(suburb);
              textPane[4].add(state);
              textPane[5].add(pCode);
              textPane[6].add(dob);
              textPane[7].add(homePh);
              textPane[8].add(workPh);
              textPane[9].add(mobile);
              textPane[10].add(eMail);
              // add button to buttonPane and assign keyboard key for shortcut e.g Alt + n
              buttonPane[0].add(newButton);
              newButton.setMnemonic('n');
              buttonPane[0].add(addButton);
              addButton.setMnemonic('a');
              buttonPane[0].add(findButton);
              findButton.setMnemonic('r');
              buttonPane[0].add(updateButton);
              updateButton.setMnemonic('u');
              buttonPane[0].add(deleteButton);
              deleteButton.setMnemonic('d');
              // add actionlistener to the buttons
              newButton.addActionListener(new ButtonHandler());
              addButton.addActionListener(new ButtonHandler());
              findButton.addActionListener(new ButtonHandler());
              updateButton.addActionListener(new ButtonHandler());
              deleteButton.addActionListener(new ButtonHandler());
              for (int i = 0; i < labelPane.length; ++i)
                   westPane.add(labelPane[i]);
              for (int i = 0; i < textPane.length; ++i)
                   centrePane.add(textPane[i]);
              for (int i = 0; i < buttonPane.length; ++i)
                   southPane.add(buttonPane[i]);
              mainPanel.add(westPane,BorderLayout.WEST);
              mainPanel.add(centrePane,BorderLayout.CENTER);
              mainPanel.add(southPane,BorderLayout.SOUTH);
              return mainPanel;
         protected JPanel buildAuthorPanel(){
              JPanel authorPanel = new JPanel();
              JPanel authorPane = new JPanel();
              authorPanel.setLayout(new BorderLayout());
              authorPane.setLayout(new GridLayout(9,1));
              Panel pane[] = new Panel[9];
              for (int i=0; i < pane.length; i++) {
                   pane[i] = new Panel();
                   pane[i].setLayout(new FlowLayout(FlowLayout.CENTER));
              pane[0].add(new JLabel(""));
              pane[1].add(new JLabel(""));
              pane[2].add(new JLabel(""));
              pane[3].add(new JLabel(""));
              pane[4].add(new JLabel("Name:Jasper Lim Jiqiang"));
              pane[5].add(new JLabel("Admin:992365G"));
              pane[6].add(new JLabel(""));
              pane[7].add(new JLabel(""));
              pane[8].add(new JLabel(""));
              for (int i=0; i < pane.length; i++)
                   authorPane.add(pane[i]);
              authorPanel.add(authorPane, BorderLayout.CENTER);
              return authorPanel;

    Maybe something like this:
    <code>
    JTabbedPane tabbedPane = new JTabbedPane();
              JPanel introPanel = new JPanel();
              introPanel.add(createIntroPanel());
              ImageIcon img = new ImageIcon(getResourceString("tabIconFile"));
              tabbedPane.addTab(getResourceString("introTab"), img, introPanel);
    </code>
    plus
    <code>
    protected JPanel createIntroPanel()
              JPanel pane = new IntroPanel();
              return pane;
    </code>
    Klint

  • How do I break an incorrect email thread on my iPhone?

    My iPhone has incorrectly threaded 3 emails that have no relation to each other (other than no subject in the subject line).  How do I break the thread as they are not related and from different senders?  This is not the case in my email on my MacBook Air from the same senders to the same email account.  They are all separate.  It occurs only on the iPhone.  (iPhone 5 with OS 7.0.4)

    Yes, and this is typical.  They are all messages into the same individual email account as well.  Can the thread be broken by me or will it just continue to add messages that have no subject into the thread?  Why would it do it under All Inboxes when it doesn't do it under the inbox that they are all in in the first place?

  • Hi, how can i break the value for a row and column once i have converted the image to the array?????​??

    Hi, I would like to know how can i break the value for a row and column once i have converted the image to the array. I wanted to make some modification on the element of the array at a certain position. how can i do that?
    At the moment (as per attachhment), the value of the new row and column will be inserted by the user. But now, I want to do some coding that will automatically insert the new value of the row and the column ( I will use the formula node for the programming). But the question now, I don't know how to split the row and the column. Is it the value of i in the 'for loop'? I've  tried to link the 'i' to the input of the 'replace subset array icon' , but i'm unable to do it as i got some error.
    Please help me!
    For your information, I'm using LABView 7.0.

    Hi,
    Thanks for your reply.Sorry for the confusion.
    I manage to change the array element by changing the row and column value. But, what i want is to allow the program to change the array element at a specified row and column value, where the new value is generated automatically by the program.
    Atatched is the diagram. I've detailed out the program . you may refer to the comments in the formula node. There are 2 arrays going into the loop. If a >3, then the program will switch to b, where if b =0, then the program will check on the value of the next element which is in the same row with b but in the next column. But if b =45, another set of checking will be done at a dufferent value of row and column.
    I hope that I have made the problem clear. Sorry if it is still confusing.
    Hope you can help me. Thank you!!!!
    Attachments:
    arrayrowncolumn2.JPG ‏64 KB

  • I have been taken over by a local network that has disabled my systems profiler and plug-ins.  how do I break free?

    I have been taken over by a local Network that has disabled my systems profiler and plug-ins.  How do I break free?

    If you are absolutely sure that this is the problem then you should turn the airport off.

  • How to enter Business place and section code of already posted documents

    Hello All,
    We have some posted documents from month of July, in which user has not entered business place and section code
    Please tell me how to enter business place and section code in these posted documents..
    I have already searched on other links, but were not useful..
    Thanks...

    Hi
    Can you share the screen shot and message no for the error? Also check if you have specified the actual MIRO Document No and not the FI Document No of MIRO Document.
    regards
    Sanil Bhandari

  • How to required Business Place and Section Code in FB60 screen

    Dear Guru
    Please guide me  how to required Business Place and Section Code in FB60 screen. in SAP
    Regards
    Tapan Maity

    Hi Tapan,
    Theer are various discussion over this issue . You can apply validation specific to transaction code as well as on the document type.
    Hope this would help you.
    Regards
    Pankaj P

  • How to use break point in workflow to check

    hi there,
    how to use break point to check the values in debug mode.
    if i keep one break point in method..can the conttrol will be stop there?
    when work flow triggered??

    hi nag,
    thanks for ur fast responce.
    this FM will check very begining of the work flow..then it goes to aprover..then status will be updated to active.(for first time mm01 will not allow them to create mat in active status..as i configured user exit..after approving only these mat get active status). but in the case of extending materials they can create the views in active mode itself. after they r saving the material getting inactiv status in db tables...
    if u want i can provide the code where mat status is updating to active for new materials.
    My Q: i want to exit wf from where fm finds that the material is extending
    code is:(checking for both sales and pur views--i guess!)
    SELECT * INTO  TABLE t_marc
                     FROM  marc
                     WHERE matnr EQ objkey.
            DESCRIBE TABLE t_marc LINES records.
            IF records GT 1. "CHECK FOR MATERIAL EXTENSION
              MESSAGE ID      'ZAM_MWF' TYPE    'E' NUMBER  010 RAISING
                         check_failed.
            ELSE.
              LOOP AT t_marc.
                IF t_marc-mmsta EQ 'G5'.  "CHECK PURCHASING BLOCK
                  SELECT * FROM moff INTO TABLE t_moff
                  WHERE matnr EQ objkey AND
                       ( werks EQ plant OR
                         bwkey EQ plant ).
                  DESCRIBE TABLE t_moff LINES records.
                  IF records GT 0.
                    SELECT SINGLE * FROM zam_mat_wf_conf
                                    WHERE mtart EQ t_mara-mtart.
                    IF sy-subrc EQ 0.
                      LOOP AT t_moff.
                        FIND t_moff-statm IN zam_mat_wf_conf-pstat.
                        IF sy-subrc EQ 0.
                          DELETE t_moff.
                        ENDIF.
                      ENDLOOP.
                      DESCRIBE TABLE t_moff LINES records.
                      IF records GT 0.
                        MESSAGE ID 'ZAM_MWF' TYPE 'E' NUMBER  009 RAISING
                        check_failed.
                      ENDIF.
                    ENDIF.
                  ENDIF.
                ELSE.
                  MESSAGE ID 'ZAM_MWF' TYPE 'E' NUMBER  013 RAISING
                  check_failed.
                ENDIF.
              ENDLOOP.
            ENDIF.
          ENDIF.
        ELSEIF mstatus EQ 'V'.  "FOR SALES VIEW
          SELECT SINGLE * FROM  tvko
                    WHERE vkorg EQ salesorg AND bukrs IN r_bukrs .
          IF sy-subrc NE 0.  "CHECK SALES ORG CONFIGURED FOR WORKFLOW
            MESSAGE ID      'ZAM_MWF' TYPE    'E' NUMBER  005 RAISING
                       check_failed.
          ELSE.
            SELECT * INTO  TABLE t_mvke
                     FROM  mvke
                     WHERE matnr EQ objkey.
            DESCRIBE TABLE t_mvke LINES records.
            IF records GT 1.
              MESSAGE ID 'ZAM_MWF' TYPE 'E' NUMBER  012 RAISING
              check_failed.
            ELSE.
              LOOP AT t_mvke.
                IF t_mvke-vmsta EQ '10'.
                ELSE.
                  MESSAGE ID 'ZAM_MWF' TYPE 'E' NUMBER  014 RAISING
                  check_failed.
                ENDIF.
              ENDLOOP.
            ENDIF.
          ENDIF.
        ELSE. "NO SALES or PURCHASE RELATED VIEW'S CREATED
          MESSAGE ID 'ZAM_MWF' TYPE 'E' NUMBER  003 RAISING
                 check_failed.
        ENDIF.

Maybe you are looking for