Upright and landscape format in one document

Hey,
today i bought pages 09. Now I'm working on a homework. Most configurations are easy to find, but I can't find the following settings
In my document I have to switch between upright format and landscape format, but I can't find the settings.
I would not believe, that MS Office and Open Office are able to do this, but an APPLE product is not... that can't be true
So.. HELP

You believe what you want but it's true.
There is no official provision to use both orientation in a single document.
This said, I'm sure that other helpers would describe workarounds.
Yvan KOENIG (VALLAURIS, France) dimanche 1 janvier 2012
iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
My iDisk is : http://public.me.com/koenigyvan
Please : Search for questions similar to your own before submitting them to the community
For iWork's applications dedicated to iOS, go to :
https://discussions.apple.com/community/app_store/iwork_for_ios

Similar Messages

  • Out Put Required in Potrait and Landscape Format

    Hi All
    I am developing one report which will print the level. As per the requirement
    i need the output of the report should come in Portrait and Landscape format as per the user's requirement. User will enter the desired format while running the report and the output should come accordingly.
    How can i achieve this. Please suggest.
    Srikant
    Edited by: user12734245 on Jul 30, 2010 12:24 AM

    Hi,
    I'm not sure that you can do that i RTF. I moved away from rtf templates to xsl due to the limitations regarding dynamic content and the fact that you quickly looses you overview over different form field codes etc. etc.
    Anyway. I have made an example for you. The example consist of two templates. A master template and a sub template.
    The Master Template:
    The master template is of the type xsl and will simply be used to define which page-layout to use (Landscape/Portrait).
    Properties:
    Name: KKR_PG_TEST
    Code: KKR_PG_TEST
    Application: BK Local FND
    Data Definition: KKR_PG_TEST
    Type: XSL-FO
    Default file: master_template.xsl
    Default File Lang.: English
    Default File Terr.:
    Subtemplate: NO
    Code:
    <?xml version = '1.0' encoding = 'utf-8'?>
    <xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                    xmlns:fo="http://www.w3.org/1999/XSL/Format"
                    xmlns:ora="http://www.oracle.com/XSL/Transform/java/"
                    xmlns:xdofo="http://xmlns.oracle.com/oxp/fo/extensions"
                    xmlns:xdoxslt="http://www.oracle.com/XSL/Transform/java/oracle.apps.xdo.template.rtf.XSLTFunctions"
                    xmlns:xdoxliff="urn:oasis:names:tc:xliff:document:1.1"
                    xmlns:xlink="http://www.w3.org/1999/xlink">
      <xsl:import href="xdo://BKFND.KKR_PG_TEST_SUB.en.00"/>
      <xsl:template name="BKPGTEST">
        <xsl:param name="P_ITEM" />
        <xsl:param name="P_PORTRAIT" select="string('Y')" />
        <fo:root>
          <!-- SET PAGE PROPERTIES & DEFINE PAGE REGIONS -->
          <fo:layout-master-set>
            <fo:simple-page-master master-name="master_portrait" page-width="21cm" page-height="29.7cm" margin-top="7mm" margin-left="12mm" margin-right="9mm" margin-bottom="6mm">
              <fo:region-before region-name="region-header" extent="17mm" />
              <fo:region-after region-name="region-footer" extent="26mm"/>
              <fo:region-body region-name="region-body" margin-top="21mm" margin-bottom="34mm"/>
            </fo:simple-page-master>
            <fo:simple-page-master master-name="master_landscape" page-width="29.7cm" page-height="21cm" margin-top="7mm" margin-left="12mm" margin-right="9mm" margin-bottom="6mm">
              <fo:region-before region-name="region-header_l" extent="17mm" />
              <fo:region-after region-name="region-footer_l" extent="26mm"/>
              <fo:region-body region-name="region-body_l" margin-top="21mm" margin-bottom="34mm"/>
            </fo:simple-page-master>
          </fo:layout-master-set>
          <xsl:if test="$P_PORTRAIT='Y'">
            <fo:page-sequence master-reference="master_portrait" initial-page-number="1">
              <!-- HEADER CONTENT -->
              <fo:static-content flow-name="region-header">
              </fo:static-content>
              <!-- FOOTER CONTENT -->
              <!-- NOTE: Footer content SHALL be initialized right after the footer.
                     If not it will only be shown on the last page
              -->
              <fo:static-content flow-name="region-footer">
              </fo:static-content>
              <!-- MAIN CONTENT -->
              <fo:flow flow-name="region-body">
                <xsl:call-template name="SUB_TEMPLATE" />
              </fo:flow>
            </fo:page-sequence>
          </xsl:if>
          <xsl:if test="$P_PORTRAIT='N'">
            <fo:page-sequence master-reference="master_landscape" initial-page-number="1">
              <!-- HEADER CONTENT -->
              <fo:static-content flow-name="region-header_l">
              </fo:static-content>
              <!-- FOOTER CONTENT -->
              <!-- NOTE: Footer content SHALL be initialized right after the footer.
                     If not it will only be shown on the last page
              -->
              <fo:static-content flow-name="region-footer_l">
              </fo:static-content>
              <!-- MAIN CONTENT -->
              <fo:flow flow-name="region-body_l">
                <xsl:call-template name="SUB_TEMPLATE" />
              </fo:flow>
            </fo:page-sequence>
          </xsl:if>
        </fo:root>
      </xsl:template>
      <!-- Initial template that is called on execution -->
      <xsl:template match="/">
        <xsl:call-template name="BKPGTEST"/>
      </xsl:template>
    </xsl:stylesheet>-----
    As you can see in the xsl code, am I using a parameter named P_PORTRAIT to see if the user wants the report in portrait or in landscape.
    After that I created the sub-template which is the RTF template with the rest of your stuff.
    Properties:
    Name: KKR_PG_TEST_SUB
    Code: KKR_PG_TEST_SUB
    Application: BK Local FND
    Data Definition: Dummy data definition
    Type: RTF
    Default file: sub_template.rtf
    Default File Lang.: English
    Default File Terr.:
    Subtemplate: Yes
    The first thing in your rtf file needs to be *<?template:SUB_TEMPLATE?>*
    And the last thing in your rtf file shall be *<?end template?>*
    I really hope this helps you. I can send you my files if you are interested.
    Best Regards
    Kenneth
    Edited by: Kenneth_ on 2010-07-30 10:56
    Edited by: Kenneth_ on 2010-07-30 13:35

  • Resizing portrait and landscape formats

    Is it possible to resize portrait and landscape format photographs in one single batch process. So that for example all portrait formats become 800 wide and all landscape formats become 800 high? Or do i have to put them in separate folders before resizing?

      Separate folders unfortunately in Elements, unless you first rotate, which is not recommended. You can do it in Lightroom by export and simply specifying the dimension of the long side.
     

  • In an upright and landscape folio Can i have multiple (custom) page sizes?

    In an upright and landscape folio Can i have multiple (custom) page sizes?
    i.e if 99% of pages are 768x1024 each with a landscape version when you rotate, can the folio also contain bespoke long pages i.e 768 x 2048.....??
    It appears not...

    *FACE PALM* YES! that works, of course it does, simple when you know how ;-)   ......  Thank you Alastair i was missing the obvious answer

  • How can I move paragraph formats from one document to a new one?

    How can I move paragraph formats from one document to a new one?

    > How can I move paragraph formats from one document to a new one?
    Have both open.
    File > Import > Formats
    Import from Document: [ nameofsource.fm ]
    [ Deselect All ]
    [*] Paragraph Formats
    [ Import ]
    Now, do the existing paras in the importing document have exactly the same names?

  • Smartfroms for portrait and landscape format

    Hi Experts,
    can we able to create a form in two different format (Portrait and landscape) in a smartform. If any one have idea, Please assist me on the issue? if we can, can we able to extend secondary window for next page or not?
    Appreciate your aid in advance.
    Ram.

    Hi Sharin,
    Thank you for your response.
    yes, you right we can use both formats (portrait and land scape) in one smartform. But, here my probelm is when i use two main windows with difrerent main window size (width), the SAP system is not accepting. and even the page break also not working in secondary window.
    I want to display some number of forms with different format (say portrait and land scape). In this case the main window size is different. so how we can achieve solution for this issue.
    if you have any idea, please share with me.
    Thanks for your reply in advance.
    Ram.

  • Portrait and landscape in the same document.

    Hi there. I'm trying to print a portfolio that has both
    portrait and landscape pages in it. I understand that I can change
    printing propoerties to print in either portrait or landscape, but
    is there any way to configure settings so that both are present in
    the same document?
    Many thanks in advance.
    Regards
    irthom

    You can't do that in Pages. You either have portrait or landscape orientation of the pages. What you can do is rotating the content of the page if it is an image, objet or table.
    If the document is for reading on the screen you can export the document to PDF and in Preview rotate the page.

  • How do I highlight and copy material from one document to another by using keyboard commands? The tool bar is not appearing as it typically does.

    How do I copy material from one document to the next by using keyboard commands.  I am copying from Word into and external database and the external system seems to be covering my tool bar from which I would typically click editing shortcut commands.

    Highlight what you want to copy, then command - C. To paste, select where you want it to go, then command - V.

  • How to add Audio Formats and Video Formats in one movie?

    Now that FCP X will not allow different settings how would I change the Audio Format and the Video Format to one movie in Compressor 4?
    When I change the Audio to ACC I have a sound file and when I change the Video Format to HD 720 I get the movie but with the original sound.
    Any help is always appreciated.

    Sorry for this one also.  Just finally searched the Inspector windoe in Compressor 4.  It is already there.

  • Both Portrait and Landscape format using SMARTFORMS

    Hi All,
    I have a requirement where i have to print few pages in Portrait and few Pages in Landscape using Smartforms.
    Now my question is wheather it is possible using smartforms and if possible how can i build the logic.
    As i have to dispaly the first page in portrait and second page in Landscape format.
    Thanks in Advance !
    Thanks
    Shashikanth

    Hi,
    You can do the portrait/Landscape settings for each page. Click on the Output option of the page and there you will find the radio button for portrait and landscape
    Thanks
    Arul

  • Is it possible to recover notes and highlights lost in one document?

    I made notes and highlights in one document and next ime I openned it everything was gone.

    It's a good idea to keep backups. You can make backups from Reader either by emailing a PDF, by copying it to a service like Dropbox or Acrobat.com, or by using iTunes.

  • How can i combine pages in potrait and layout orientations in one document in Pages '09?

    Hi all,
    I am a new user to iwork '09. Previously I had been using Microsoft office for Mac, but I recently downloaded iWork as i believe Apple designs hardware and software which has better performance.
    So far i am happy with using pages'09, but recently I have gotten frustrated. I do many project documents which have narrative sections which are usually done in portrait orientaion, but these documents also have rather wide tables which are best presented in landscape orientation. I could switch page orientation in word, but in pages, I have not been able to do so. This alone makes working with pages rather difficult and not appropriate for quite a few of my proposals.
    Would anyone be able to advise me on how I can make documents in pages which have some pages in portrait orientation and other in landscape orientations within the same document?
    Please help!
    Ayaz

    Thank you so much for your response. I appreciate the time you have taken out to attend to my query.
    The document I am working on is to be shared with a team for further inputs. Its frustrating how they can all mix page orientations as they use word and I cannot because i use pages. In essence I will also have the final input on some of these documents and then forward them to coleagues internationally, hence they must look presentable and easy to read.
    Do you have any tips I could use? I could use word, but I love the look of my documents when done in pages, its a fantastic word processor, albeit this limitation.

  • HOW DO I SCAN MULTIPLE PAGES OF A DOCUMENT AND KEEP IT IN ONE DOCUMENT ON A HP PHOTOSMART 5510

    HOW DO I SCAN MULTIPLE PAGES OF A DOCUMENT AND KEEP THAT DOCUMENT AS ONE

    Hello @MYBOU2 ,
    Welcome to the HP forum.
    What you are asking should not be too hard. The key factor right now is: what is your operating system?
    The process is different on a Mac compared to a Windows computer.
    This link explains how to do what you want with windows 7.
    Scan from Windows 7 With the Full Feature HP Software for HP Multifunction Printers
    Please let me know your OS and I will get more specific instructions.
    Aardvark1
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!

  • I just installed CS4 and can only open one document at a time. Has anyone else had this problem?

    $

    Are you sure? Do you see different document names at the top of the window, like tabs in a browser?
    PS: ALWAYS tell us the version number (you did, good) and OS (you didn't, bad).

  • Footnotes - Is there a way to define different formats on one document?

    Hi all,
    To my knowledge, footnotes options is applied to the document and not to the text.
    So, there is no option to use both numbers and stars (*).
    So if I want a footnote to be 2, than ***, than 3, I'm unable to do so.
    Is this right?
    thank you
    shlomit

    Alas -- no. InDesign is lacking all but the very basics: no re-start (other than per page or section), no start at an arbitrary number, no switching of numbering style.
    Occasionally, I have to start with a * footnote, then continue with regular numbering. If the star footnote is on a page of its own, I can 'hide' the actual footnote number by setting its color to [None] and manually insert the star in the text and in the note itself. Then I set the next page to start a new section, so the next note will be '1' again.
    If the star note and the first regular note appear on the same page, I also manually insert the star but put its text inside the first footnote above its own text.
    Both are rather dirty tricks that could well be avoided with some additions to the footnote options ...
    [Edit] Actually, the correct answer on
    Is this right?
    would be "Alas -- yes".

Maybe you are looking for