How do you force a section to begin on an odd-numbered page?

I would like to be able to format sections in my Pages document to automatically begin on odd-numbered pages.
In this manner, each chapter of my document will begin on a right-hand page regardless of where the previous chapter ended.
Yes, this has the possibility of having blank pages in the final document, but this is a common practice in many publications.
Yes, I can insert additional page breaks to get the sections to begin on odd-numbered pages, but this technique requires that the document be checked and double-checked to be certain that each section begins on an odd-numbered page. Further, each time any editing is done, the document must be rechecked to assure that the correct number of page breaks have been inserted between each section.
The goal is to have this done automatically so that each section begins on an odd-numbered page without any further intervention on my part.
I'm trying to make the shift from MicroSucks Word to Pages and am struggling with some of the finer details. I have used MicroSucks Office products since version 1 and know them inside and out. As a dedicated Mac user, I figured it was about time I made the switch.

From the Layout inspector, at the bottom of the Section tab choose
Section starts on: Right Page

Similar Messages

  • How do I insert a blank page if my group ends on an odd-numbered page

    I have a report that prints out information for 10 regions. We print this report double-sided and put it into a 3-ring binder with 10 divider tabs, one for each region. If the last page for a particular region is an even-numbered page, then everything is OK since the next region begins on an odd-numbered page (the right-hand side of the open 3-ring binder). However, if the last page is an odd-numbered page, this causes the next region to begin on what would be the left-hand side of the open 3-ring binder which is not acceptable. I have considered printing each of the 10 regions separately (a seemingly easy solution, but our pages are required to be numbered consecutively through the regions - and are also of the type Page &Page of &Total_Pages).
    How do I create a BLANK PAGE at the end of a region if it ends on an odd-numbered page?
    I am using reports version 6i with 9i as my backend database. It just occurred to me that occasionally in printed material, one sees "This page intentionally left blank", usually on the last page of a chapter to permit the following chapter to begin on the right-hand side. If anyone has created a solution to get this "..intentionally left blank" page to print, this seems to be a close fit to what I am trying to do.

    I am also trying to do this same thing.
    I have followed the text as it is stated in
    http://otn.oracle.com/products/reports/htdocs/faq9i.htm#43
    but it still does not work.
    My invisible line prints on every other page, however
    my repeating frame prints on every page with no page breaks.
    Do you have any suggestions?
    Thanks in advance,
    Vicki

  • How do you force itunes comments to ID3 tags in MP3 files?

    I have comments all throughout itunes. The mp3 files do not have those comments in the ID3 info.
    How do you force itunes comments to write out to ID3 tags in MP3 files?
    The folder and files all have write permission.

    Yeah, don't do that, you probably also degrade the sound quality... If you've confirmed it is something odd with multiple tags try this.
    Select a group of mp3 files (You might want to start with a smart playlist so you don't mess with any other format)
    Right-click and use Convert ID3 Tags > None (may need to repeat this step if multiple tags)
    Then right-click and use Convert ID3 Tags > v2.3 (v2.4 support still patchy from various accounts)
    Downside is that it will lose any embedded artwork, but it should preserve all other meta-data, both tag-based and stored within the library itself.
    In fact, if you use my CreateFolderArt script before and after updating the tags it should archive any artwork as a local Folder.jpg image for each album and then reinsert that image on the subsequent run... Check it out on a single album first. If it doesn't work as expected let me know and I'll tweak the script to achieve this end.
    tt2

  • HT3458 How do you go back to the beginning of playlist

    How do you go back to the beginning of playlist on ipod shuffle

    The device only displays the last portion of a large text message. I'm not aware of any other method to access the beginning of the conversation except to scroll and keep loading the older part of the message. I would imagine to help with RAM management, the device does not load entire conversations.
    You can provide feedback to Apple HERE, if you would like to see a change in the way the device displays messages.

  • How do you force LR to start in 64 bit?

    How do you force LR to start in 64 bit?
    I have Windows 7 64-bit and also downloaded LR 64 bit. But I don't see "x64" in the LR title bar. http://helpx.adobe.com/lightroom/kb/optimize-performance-lightroom.html
    Can you force LR to start in 64 bit mode?

    The Lightroom Installer has both 64bit and 32bit included and should automatically install the correct version. I can think of two ways to see which one is installed on your system. a. Click on the Start button and look under All Programs and it should show what version is installed. b. From the Lightroom main menu bar click Help > System Info and the dialog box that pops will display the details of your system and the software running i.e Lightroom.

  • HT4641 How do you copy and paste text from a website to a pages document please. I could do this on my old ipad but not with ipad air  thank you

    How do you copy and paste text from a website to a Pages document please. I could do this from my old ipad but not from ipad air. Thank you

    Welcome to the Apple Community.
    Why what happens when you try.

  • How do you force DAQmx output to 0 at the end of program execution?

    I am using a 6713 to generate an arbitrary analog waveform on its output. However, once the labview vi has finished execution, the output voltage from the 6713 does not go back to 0 V. I have tried to force it back to 0 V by appending a 0 V amplitude waveform to the end of the analog waveform to mixed results (if I give it thousands of points, it goes to 0, but if I make it a more reasonable 100 points, it doesn't). How can I force the output back to 0 V. I tried stopping the task, clearing it, and stopping it and then clearing it. None of those worked.
    Any help would be greatly appreciated.
    Attachments:
    6713 Interface.vi ‏144 KB

    First, I have to ask, did you write this VI?
    It is very hard to follow and has a lot of confusing structures in it.  IN the middle area where a lot of the DAQmx functions are, the error wire loops around so much it is hard to tell what is happening in what order.  To the lower left, an array is converted to a cluster, the cluster is unbundled, the individual elements are fed to a compound addition to get a single value.  Why not just use a sum array function on the original array?
    The stop button is fed to the Stop Sign function.  This is Abort execution which is the same as hitting the red stop button at the top of the VI.  It ends the execution of the VI right then and there and doesn't allow anything else to happen.  Read the context help for that function.  As someone else has said on the forum,  "Using the Abort button is like using a tree to stop your car.  It will stop it, but there might be consequences."
    How is this VI being run?  Is the Run Continuous button being used?  My guess is yes because I don't see any While loops and the only thing the stop button does is end the program abruptly.
    You will need to rethink your whole architecture.  Stuff that needs to happen once should be set up before a while loop that has wires leading to the while loop or uses a flat sequence to make sure that it happens first.  This is you program initialization.
    Everything that happens repeatedly would be in the while loop.  The front panel Stop button is what ends this loop.
    Anything that has to happen before the program ends like closing out tasks happens after the while loop (either by wires for dataflow or in 3rd frame of a flat sequence structure.  With this, you should be able to reset your tasks so they output a zero voltage from the analog outputs before the tasks are closed and the program ends naturally.
    Appending a zero to the end of the waveform won't help because if the waveforms run continuously, it will restart back at the beginning.
    I would highly recommend looking at the example VI's for DAQmx functions and taking the tutorials for Labview that are available on the NI website.
    Message Edited by Ravens Fan on 02-23-2008 10:45 PM

  • How do you FORCE FCPx to re-render a clip?

    here's the problem.
    Final Cut Pro X FREQUENTLY screws up transition renders. Did I say FREQUENTLY? It CANNOT be stressed enough, that FCPx DOES SOMETHING BAD to its transition renders Quite Often.
    ok, until Apple fixes that nightmare, I want a workaround. I thought I had it:
    if you hit control+r you tell FCPx to 'render selection.'  its right there in the menu.
    but its a lie. what it SHOULD read in the menu is: 'render selection, if it is not already marked as having been rendered.'  This is a problem for me, because FCPx FREQUENTLY SCREWS UP TRANSITION RENDERS*.
    *ok, I think I've said it enough, time for an example:
    imagine a crossfade, standard, stock crossfade, using the standard timing... EVERYTHING is standard. Well, How would you feel if you were scrubbing an otherwise perfect edit... to find that your crossfades... ALL OF THEM... pop the resulting image, into the first frame of the transition? I bet you'd be mad.
    How would you feel if you HAD NO RELIABLE WAY TO FORCE FCPx TO RE-RENDER THOSE TRANSITIONS?  You'd be livid. Lets put some more firewood on here... How would you feel if this happened randomly, all the time?  I really do mean ALL THE TIME. I can scarcely look at FCPx without it screwing up the transitions of my edit.
    point is. FCPx has a wonderful editor. its a joy to use. But its chock FULL of bugs, and its so SMUG that it doesn't provide ANY workarounds. The Documentation is a joke. So I'm here... trying to find a way To FORCE FCPx to re-render something IT thinks is already rendered. the smug jerk.

    OP here.
    I'd like to make a few comments.
    Apple has been slowly fixing critical bugs in FCPx, I'm happy with the direction things are headed. But we still have a long way to go.
    the "delete Project Render Files" option is a late edition, and I "think" it is meant to address this specific issue. I find however that in practice, it introduces as many problems as it solves. deleting the project render files forces a re-render on the entire timeline, and as stated way back in the OP, FCPX screws up transition renders. 
    Let me dig into that a little bit. Randomly, FCPx will cut out the first frame of a transiton, creating a jarring full frame jump (as it skips to the second frame) just at the front of a transition, and fill the last frame with black. All I want to do at this maddening point is force FCPX to re-render specific parts of the show, one at a time, because if I ask it to render the other stuff, invariably I will be subjected to the same amount of render bugs I am trying to eliminate. (or more) FCPX does this randomly, so if I can force it to re-render only a specific segment, there's a chance it won't render that bit incorrectly. And with finite control, I can step through and fix each transition, forcing as many re-renders as necessary, always getting closer to done, rather than starting from scratch at every step.
    so, the tip is appreciated, it just doesn't answer my needs. I like FCPX, and sometimes its a dream but it is still riddled with critical bugs and the lack of percision control over the system is a design flaw, IMHO.

  • HT5902 How do you force "my photo stream" on a pc to update with an iPad or iPhone?

    How does one force photostream on a pc to update with an iPad or iPhone photostream? All devices are on the same wifi network.

    Hey BDHProjects!
    Here is an article that will help you troubleshoot this issue with iCloud:
    iCloud: My Photo Stream troubleshooting
    http://support.apple.com/kb/ts3989
    Thanks for coming to the Apple Support Communities!
    Regards,
    Braden

  • Wireless Mesh topology parent child optimization. How do you force a reconfig?

    Release 6 controller
    9 Mesh APs. 1524 (2x 5G radios, 1x 2.4G)  and 1522 (1x 5G radios, 1x 2.4G)
    Designed for 3 linear hops and then a split to the rest.
    AP1 = Root AP
    linear to
    AP2
    Linear to
    AP3
    Linear to
    AP4
    equidistant to
    AP5 and AP6
    The rest are further away from AP4, but have visibility back to AP 4
    The issue is after an event (say a power outage) at AP4.
    AP5 uses AP3 as it's parent.
    That's okay during the power failure, but when AP4 comes back up, I want to force AP5 to switch it's parent to AP4.
    You may ask why, if AP5 can reach AP3 okay, it's okay to leave it that way.
    Well, doing link tests...
    test   --------packet loss %-----
    speed  AP3toAP5 AP3toAP4  AP5-AP4
    =====  =======  =======   =======
    54M     100        0         0
    48M     100        0         0
    36M      52.6      0         0
    24M       1.44     0         0
    18M       0.89     0         0
    So you can see it's desireable now that AP5 uses AP4 as it's parent.
    Over time, the system might figure it out, but our limited experience shows it seems to stick to the way it is.
    To complicate matters, sometimes we've found that it doesn't seem to reconfigure when the channel number has changed so AP5 can reach AP3, but AP4 (1524) comes up with a different channel on it's downlink radio.
    So, how can we force a mesh topology reevaluation/change for either 1 AP or the whole bridge group?
    I thought changing the bridge speed from "auto" to 54M (on AP3 above, for example) might force the attached children to rethink it, but it didn't seem to work (maybe I needed to wait an hour?).
    I also thought tweaks to "Radio Performance Profile" for radio might help. (not sure what to change, or how long to wait for a result)
    suggestions on how to quickly reconverge?
    reseting APs and hoping they come back in a better topology is painful and slow.
    Thanks - Glen

    Glen, I know this is a very old topic but we are suffering from similar conditions on our end.  Even using directional antennas we are having a difficult time having the Mesh network consistently optimize itself.  Did you guys ever find a tweak that worked for you to have the system re-evaluate the connection by packet loss on speed?
    Thanks!

  • How do you force quit an import

    My IPhoto will not quit because it says it is importing from a no name device that is not connected to the computer.  How do I force quit an import?

    Option-command-Esc ... brings up a list of aplications that you can force quit.
    Some tell you to hold the power button for a few seconds, but force-quits even the OS which can leave the OS in an incpmplete state, and should only be used when really required.

  • When slides are updated within a MS Sharepoint slide library, how can you force an alert with the updated slide version going to users who have previous slide versions on their hard drive?

     How can you hardcode/force that when a slide within a slide library (in Sharepoint 2010) is updated, that an alert is sent to the user who downloaded the slide to their hard drive so that they may replace the outdated slide with the recently
    updated slide. There is a tic box option to set when downloading slides from a sharepoint slide library into power point that ensures alerts are sent when the presentation is opened allowing for replacement of the slide. But, it is an option. How can that
    be hardcoded are forced on all slide library users who download slides from the shrepoint library into power point? Is there a workflow that can be written in Sharepoint or an option in power point to do this? Please advise. Thanks.

    Two things to check:
    Add the network folder location as a trusted location in your Flash Global Security settings and then see if the videos will play.
    If the first suggestion doesn't work, get in touch with your network admin dudes and find out if FLV files are disabled from working over the network from that location.  Many times unless a given file format is enabled on a network, the server assumes it's not desirable and won't serve it.

  • How do you document specific sections of a VI?

    Once in a while I'll use a VI (perhaps one of mine or one from vi.lib) to do something in an unusual way.  How would you document this usage so that when you go back to it some weeks later you don't have to scratch your head wondering why you did it that way?  A free label near that VI (or wire) clutters the diagram and gets lost when doing a diagram cleanup (ctrl-U).
    I can think of a couple of ways that NI could help us out.  One would be to allow me to attach a documentation property to an instance of a VI or wire.  This documentation would show up as either a tool tip when you hover the mouse over the object, or in the Context Help window.  An indicator would be needed on the VI or wire to let me know that there is documentation available.  The indicator may be something that resembles a coersion dot though in a different location so it won't be confused as a coersion dot.
    On a related note, I've seen a few diagrams that have transparent labels on top of a wire indicating what that wire does.  This is a pretty good kludge to document a wire.  Perhaps a label property can be attached to the wire in much the same way as the documentation property I describe above.  The label would be visible and automatically displayed on top of the wire.  The key difference is that the label would be owned by the wire and could not get misplaced.
     - les

    I like the way NI documents code in some of their examples.  They use small labels with a number or letter in it.  Then below is a huge label with explanations of each numer of letter.  See the picture:
    Message Edited by tbob on 09-23-2008 12:27 PM
    - tbob
    Inventor of the WORM Global
    Attachments:
    Dynamic Generation and Acquisition-Source Synchronous_BD.png ‏18 KB

  • How do you force quit an application

    my mail is frozen and now so is safari what's going on and how do i force quit the apps

    COMMAND-OPTION-ESC will bring up a Task Manager. Select the item and click on the Force Quit button.
    CTRL- or RIGHT-click on the application's Dock icon and select Force Quit from the contextual menu.
    Open Activity Monitor in your Utilities folder. Locate the application in the list, select it, click on the Quit icon in the toolbar. Then click on the Force Quit button.

  • How do you create a short cut to insert date in Numbers 3.1

    Hi,
    Does any one know how to create a keyboard shortcut for inserting the date in Numbers 3.1

    The install-by-doubleclicking Automator Service (where it becomes a menu pick if you use it often and find that more convenient than a formula in a spreadhseet) is here (Dropbox download). Depending on your settings you may need to go to System Preferences > Privacy & Security and click the 'Open Anyway' button. If you want you can assign it a keyboard shortcut in System Preference > Keyboard > Shortcuts.  If you don't like it or find you the formula is just as easy for you, then in Finder hold down the option key, choose Go in the menu and navigate to Library > Services, where you can trash it the way you would any file or package.
    SG

Maybe you are looking for

  • Script for folder or file that always has a name that is the CURRENT DATE

    hi all, i tried to get this done a couple times and i either misunderstood how to use the script or there was some complication so i am returning to it. i would like to have a FILE or a FOLDER on my desktop that has a name which is TODAYS DATE. the r

  • Get parent databank in a child scipt

    Hi All, Is there any method to get parent databank in a child script. Currently I'm using variables to pass data from parent script to child script. Appreciate if anyone helps me to solve this scenario. Regards, Deepu M

  • Savepoint in a transaction.

    Hi everyone, I passed last week the SQL Fundamentals and now I'm studying for the SQL Expert exam (1Z0-047). I knew about SAVEPOINT and today I was testing something on transactions. I never needed SAVEPOINT in a real situation. So I don't understand

  • Server Farm load balance

    Is it possible to load balance servers that reside from the server side and the request comes from the server farm?? Sent from Cisco Technical Support iPad App

  • Can't send Word or Excel Documents from my mail account.

    Hi I'm running on OSX( 10,4,3) and I can't send any Word or Excel documents. Well what I mean is the person at the receiving end can't open them. They just come up as corrupted documents. I can send RTF. Windows friendly is turned on. If I send a doc