Inserting a new document into an existing document

i have wrtiien several illustrated books of about 9 pages each. I now want to combine them into one continuous book but I can't seem to find a way to combine them. Any ideas gratefully received.

book,
Welcome to Apple discussions.
Although this capability is fairly easy to use, it's not particularly intuitive. Let's start with your master document (the file you want to merge everything into): click on View > Show Thumbnails and Show Invisibles.
Starting with the first doc you want to merge, click on View > Show Thumbnails. If the document doesn't have any section breaks in it, it will show only one thumbnail. Click on that one, then type cmd-C (Copy). Go back to your master doc, then put your cursor at the end of the doc. Type cmd-V (Paste).
Three things will have happened: 1) all the text from the other file will have been brought in to the master file; 2) a section break before the newly merged text will have been added; and 3) a new thumbnail icon in the master file will appear.
Repeat these steps with your other manuscript files to merge them all into your master file.
Hope this helps.
-Dennis

Similar Messages

  • Is it possible to import a new hierarchy into an existing version?

    I want to add a new hierarchy to an existing version . Is it possible to do via import process?

    The import process by definition always creates its own version. The process to incorporate a new hierarchy int an existing version is as follows:
    1. Create the IMPORT and run the import into a new version that you specify.
    2. Validate that the hierarchy in the new version is as you want it.
    3. Create a BLENDER and run the blend using the new version as the source and the version you want as the target. Make sure you blend the properties that you created during the import process as well.
    4. Validate that the BLEND was successful into the working version you wanted it to go and that the properties and structure are as you want them.
    5. Delete the new version you created in steps 1&2 above.
    Following these steps will incorporate the new hierarchy into whatever existing working version you want.

  • How to insert a templated page into an existing Pages document

    I'm sorry if this is a low level question.  I'm new to using Pages.  I have a word processing document started.   I want to add pages, or I guess they call them "sections" in this form (why?).   I have saved a page that I created as a template.  It exists in my template folder.   But when I go to add new pages to my document I am only offered the option of adding a text document or a blank page.  It doesn't give me the option of adding the template that I made.   Everything I've tried results in opening a new document or making a copy of the template.    This does not feel very intuitive to me.
    Thank you in advcance!

    You are taking about Pages '09? because this has been removed from Pages 5.
    Clunky as it may be it does have some very powerful features.
    You can capture as many pages into a Section as you want, which automatically sets up a document in depth. Once you have done the work, it is super fast to compose a new document from all the parts.
    It is a shame that Apple didn't simply fix what needed fixing with this model, instead of ditching it, because I am really stumped how to set up documents in the current version.
    Peter

  • Problem in Inserting the new values into Ztable

    Hi Techies,
    I have a requirement that when ever user enters the value in Billing Qty input which is in VF01 tcode and the table is VBRP-FKIMG, and client want billing qty and previous month reading, the fields are not in VBRP. So I have created a custom table name as YSD-EXPORT_QTY with fields of CUSTOMER, MONTH, YEAR, BILL_QTY, PREV_READING, CUMULATIVE... When ever user enter the Billing Qty I want to update database table and initally there is no data in custom table. I tried below code but i am not getting and i am getting the error as
    "The type of the database table and work area (or internal table) "WA_EXPORT" are not Unicode convertible. "
    So, How can I resolve this issue.. I am trying this since from 3 days... if u have any sample code please give me...
    MOVE WA_VBRP-FKIMG TO WA_EXPORT-BILL_QTY.
    WA_EXPORT-CUMULATIVE = WA_EXPORT-BILL_QTY + WA_EXPORT-PREV_READING.
    WA_EXPORT-PREV_READING = WA_EXPORT-CUMULATIVE.
    APPEND WA_EXPORT TO IT_EXPORT.
    INSERT INTO YSD_EXPORT_QTY VALUES WA_EXPORT.

    If it overrides existting record, you should add new key fields to your database table, there can be only one record per set of key values.
    I suppose  keys look like MANDT, KUNNR, GJAHR, MONAT or MANDT VBELN POSNR or a combination of both set of keys (not sure to understand you requirement)
    You have to first read from database if some data already exists,
    - if yes, add the new quantities and UPDATE the record
    - if no, INSERT a new record
    Remember keys define a unique record, and cannot be updated once inserted.
    If your program should never update records, add a "technical" key field, and fill it using a timestamp or a number range counter (FM NUMBER_GET_NEXT)
    Regards,
    Raymond

  • Can I insert a 3D-PDF into an existing 2D-PDF?

    I don't mean to add a page to the existing PDF (2D) but inserting it somewhere "on top" of the PDF page.
    I have a PDF file with the three orthogonal dimensioned views of a solid model. Now I want to insert on the corner of the 2D drawing the 3D-PDF file.
    Thanks.

    Hello Erich,<br /><br />Here are some tips that I have found.  Unfortunately, big assemblies will just not work yet. You are better off having multiple 3D views displaying smaller subassemblies instead of trying to view the top level assembly.<br /><br />- Greg<br /><br />- For your final PDF file, do a "Save As".  I took your file and did a save as, the file size went from 2.69M down to 1.39M.  This often occurs when you have been editting the PDF file and happens in many applications, not just Acrobat.<br />- Don't worry as much about the u3d size as the PDF size.  Acrobat will compress the u3d file when on insertion.  I saved off the assembly from 3D Toolkit as a u3d file and it came out as being 5.35M.  After inserting the u3d file into a blank PDF file and doing a save, the PDF file with u3d inserted was just 1.94M.<br />- Depending upon the CAD app, you can reduce the size of the file by turning down the surface rendering smoothness in the CAD app before converting it to a u3d file.  Since Acrobat often uses the existing display lists in the CAD file or (my guess) uses the CAD render smoothness factor on convertion, any reduction in the CAD app will help later on.<br />- Also in the CAD app, try simplifying the models.  In many cases, you do not need cosmetic features such as threads on screws or supressing fillets will dramatically reduce the file size. <br />- For faster view dynamics, you can force the render mode to just show bounding boxes.  I have some code below which you add to you default javascript file.  You may want to add a custom menu item to turn the mode on and off.  The only problem is that lag while looping through all the meshes.<br /><br />myMouseHandler = new MouseEventHandler();<br />myMouseHandler.onMouseDown = true; //this prop is true by default<br />myMouseHandler.onMouseUp = true; //this prop is true by default<br />myMouseHandler.onMouseMove = true;<br />myMouseHandler.old_mode = scene.renderMode;<br />myMouseHandler.onEvent = function(event)<br />{<br />     if ( event.isMouseDown ) {<br />          this.old_mode = scene.renderMode;<br />          for ( i=0; i<scene.meshes.count; i++ )<br />          {<br />               scene.meshes.getByIndex(i).renderMode = "bounding box";<br />          }<br />          <br />     }<br />     else {<br />          if ( event.isMouseUp ) {<br />               scene.renderMode = this.old_mode;<br />               for ( i=0; i<scene.meshes.count; i++ )<br />               {<br />                    scene.meshes.getByIndex(i).renderMode = this.old_mode;<br />               }     <br />          }<br />     }<br />}<br /><br />//Register the handler and turn the mule on<br />runtime.addEventHandler(myMouseHandler);

  • How do I insert new pages into an existing pages document

    I have been doing a newsletter for 18 months in pages. SInce the last update I have been unable to find a way to add a page to my document or change positions of pages. I have searched online for answers which did not help, and all the tutorials I found are not for the updates version.  Help, this app is useless if I can't do this!

    How could you not find the hundreds, if not thousands, of references here to the missing features in Pages 5?
    Apple removed over 100 features from Pages 5 of which these are only a few:
    http://www.freeforum101.com/iworktipsntrick/viewforum.php?f=22&mforum=iworktipsn trick
    You should still have Pages '09 in your Applications/iWork folder.
    Use that.
    Peter

  • How do you add new photos into an existing folder on iPhone 4S, without it jumbling the existing photos?

    My wife and I just got our iPhone 4S a couple weeks ago. We've experienced a problem that I hope someone might be able to help with. When she sync'd her photos originally, it had them in the folders she wanted. Now, if she wants to add new photos to one of the existing folders, will it jumble all the photos up or will it keep them in the same folder?

    drag them from an event or album to the book project under keepsakes
    You really should take the tutorial - under the help menu ==> iPhoto help ==> chapter 7 - making a book - read the help topic and watch the movie
    LN

  • I need to know how you would publish a new site into an existing site

    Okay I have a new Dreamweaver website that I just created for my brother in-laws law firm and want to publish in onto an ftp server but the sever already has the existing site published onto it and before I have it pulled down I would like to publish this new site on there to see if everything is going to work okay and if everything is displayed correctly.  Does anyone know if there is a way I can do this and how to do it?  Please help!!!
    Thanks

    I typically create a TEST folder on the remote site.  Upload new pages and dependant files there for debugging and testing purposes.  Then using a 3rd party ftp ware (filezilla, cute ftp or Ws_ftp pro), I move the new site files & folders over to the root directory.  If you have used the same filenames as were on the old site, new pages will overwrite the old ones.  If you used a different naming convention, you will need to delete old files from server.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb

  • Is there a way to add new photos into an existing collection even though they are located in a different folder in Lightroom?

    I am trying to add my favorite photos  that are currently located in multiple folders in Lightroom into a single Collection and am not able to do so. I also do not understand the concept of a Collection Set, which might be the solution here. Any assistance would be appreciated. Thanks!

    A Collection is the way to provide a quick link to any group of images you select. (Maybe ones you want to sent to a printer, or email, etc)
    A Collection does not make a second copy of your images. Collections appear like folders, but the thumbnails in a collection are only "links" to your original images.
    Any Development edits you do to images from a Collection set will show the edits in the Library grid view.
    Collections are great for any projects like a Book, or Slideshow, etc.
    To place image links in a Collection:
    Method 1)   "easy"
    First- (if you have created a collection set by the + on the Collection PANEL HEADER)- Right-click the collection NAME in the Collection Panel and choose "Set as Target Collection".
       This will place a small + sign to the right of the Collection NAME. (you only need to do this once to 'Set as Target')
    Next- (In the library grid view, this can be "All" photographs.!!))- Select one or multiple images, Press the "B" key.
        This will (Bounce, Bump, Bag, Bop) selected images into your "Target Collection"
        So if you select ALL your favourites with ALL photographs visible in grid- you can do it with ONE press of the "B" key.
    Method 2) "almost as easy"
    Select one or multiple images in the Library Grid view.
    Position your mouse cursor in the middle of one of the selected images, hold a left-click and drag your images 'onto' the collection NAME.
    (Note: this does not work if you drag from the border frame of an image.)

  • Error inserting new Document DI_API Java

    I was using DI_API of PL8 for inserting SalesOrder via JAVA. Everything worked fine until PL32 was installed. Now i get this error when i try to insert a new document, no matter what kind of:
    <b>Exception in thread "main" com.sap.smb.sbo.wrapper.com.ComFailException: A COM exception has been encountered:
    At Invoke of: GetBusinessObject</b>
    Is there a solution for this API error?
    Code:
    <i>IDocuments doc = SBOCOMUtil.newDocuments(company, SBOCOMConstants.BoObjectTypes_Document_oOrders);</i>
    Tks

    Elcio,
    Hmmm ... well I have not heard this issue, but SAP released PL39 for SAP Business One 2005A SP01 today.  You may want to download and try with the new patch.  If still you have an issue you will want to create and SAP Support message.
    Eddy

  • How do you move new photos into existing albums?

    On an iPad how do you move a new photo into an existing album?

    Or, from the camera roll:
    Tap Select (upper right hand corner)
    Tap the pictures you want to add to an album (you'll see a check mark in each selected photo)
    Tap Add To (upper left hand corner)
    Your albums will appear and touch the album you want to move the picture to and they'll go there
    Note:  They will stay in your Camera Roll as well

  • Unable to insert a word file into PDF

    Hi, I encountered a problem with Acrobat recently.
    When inserting a word file into an existing PDF file, a reminder window will show up with “MS Word has stopped working” , and then Acrobat will remind me that it’s unable to open word file (see below picture). BTW, no such problem happened when insert other files with jpg or xls format.
    How should i solve this problem?
    Thanks and best regards!

     
    The version installed in my pc was Acrobat X Pro.
    I tried doc file, problem remained. Btw, no such problem happened when inserting other format files, such as jpg, excel.
    If is a compatibility issue, how to sovle it?
     

  • Inserting blank pages into an existing document

    I'm new to Pages. I'm creating my first document, which involves text and photos. It's presently a 5 page document. I'd like to insert two new blank pages right after existing page 3 (for items that I don't have yet but will in the next day or so), but I can't figure out how to do that without messing up what I've done. "Insert page break" isn't showing up as an option when I put the cursor at the end of page 3 (which is on a photograph, immediately following a caption that's typed on the photograph). Also, I don't have any section breaks in the document.
    Any ideas? It seems like this should be something straightforward. Any guidance is appreciated. Thanks.

    chris,
    Click on View > Show Invisibles. You should see a paragraph marker at the end of page 3. Put your cursor right before that, then you should be able to click on Insert > Page Break. Do it twice and you should have two blank pages.
    -Dennis

  • How to add a new node into existing XML Document

    I have a very simple question. I use XML as input argument for PL/SQL procedure that inserts data into the corresponding table. All I have to do is to add a new tag for Primary Key column and put sequence.NEXTVAL - value into it.
    <ROWSET>
    <ROW>
    -- Add <ID_table_name> value </ID_table_name> ??????
    <FIELD1>data1</FIELD1>
    <FIELD2>data1</FIELD2>
    </ROW>
    </ROWSET>
    I've parsed XML, but I couldn't find the way how to insert the new NODE.
    If you know how to use packages XMLDOM, XMLParser for this purpose, please help me!
    Oracle version 8.1.7

    DOMParser parser=new DOMParser();
    XMLDocument xmlDocument=parser.getdocument();
    Node node=xmlDocument.selectSingleNode("/ROWSET/ROW");
    Element element=xmlDocument.createElement(String tagName)
    node.appendChild(element);

  • How do I insert a .pages file into an openoffice document

    How do I insert a Pages .pdf file into an openoffice writer document?

    Hi Jim,
    Happy to help! If you've already combined a file using Adobe PDF Pack, you can open that combined file in the free Adobe Reader (or in Acrobat, if you have that). But, it sounds like you don't have either one installed, so that would be the best place to start. You can download the free Reader from www.adobe.com/products/reader.html. Or, if you want to try Acrobat free for 30 days, you can download that from www.adobe.com/products/acrobat.html. Either one will let you view PDF files.
    Some notes:
    You'll need Acrobat if you want to have some control over where new pages are inserted into an existing file. It lets you decide whether the new pages are inserted before or after a specific page. For example, if you have a 12-page document, you could choose to insert the new pages at the beginning, the end, or anywhere in between. (CombinePDF lets you determine the order in which files are combined, but not with that granularity.)
    Reader doesn't allow you to insert one file into another, so your workflow with Reader would be to use Combine PDF on Acrobat.com. You'd select both the previously combined file and the new file, give the combined file and name, and then click Combine. Then, you could view the combined file in Reader.
    I hope this all makes sense. It's a lot to take in. Please don't  hesitate to let me know if you would like additional help.
    Best,
    Sara

Maybe you are looking for

  • .gif Picture not appearing in design panel

    I have a .gif picture not appearing in design panel but it appears in the browser preview. <div id="footerPanvalid"> <image src="images/valid-xhtml10-blue.gif" alt="Valid XHTML 1.0 Strict" height="31" width="88" /> </div> #footerPanvalid { position:

  • Advance payment Condition in PO

    Dear all, Could any body say,is there any provision to mention Advance payment condition in Purchase Order.Please advise at the earliest possible.For suitable answer points would be assigned. Regards, NSB

  • How to change line color in line graph

    Hi, I have one 'on change of' field and has  three 'show value' fields. Crystal has assigned default colors for  these 3 lines..but i want to assign my own colors..is this possible? and can we adjust the line thickness? I am using crystal 2008 comple

  • Script to change all bundle device associations

    zcm 11.3 on sles 11.2 We are migrating our desktop environment. We have hudreds of bundles assigned to the Workstation group and I need to assign all of them to a new group instead. Does anyone have experience scripting this kind of change? It looks

  • Partner functions relevant for interaction history

    Hello Experts, We want to register projects in our CRM system. One of the main requirements is that all partners involved in this project (both internal and external) and that the project is shown in all the BP's interaction history. We've copied sta