Best way to lay out this scrapbook

I need some advice about the best way to go about this. I have a client who basically want me to publish her scrapbook. It's full of all sorts of color and b/w photos, drawings, newspaper clippings, you name it. I was thinking I should scan each page (8 1/2 x 11) as a separate pdf, then place each pdf as a separate page in the ID document. After about 10 pages or so the ID document is so bogged down that it takes half a minute just to nudge a frame. I hate to think of what things would be at 200 pages. Even if I divided the book up into 20 or 40 separate documents then reassembled them as a book, it would probably be so unwieldy that I wouldn't even be able to scroll the pages. Once this is done it has to be submitted to the printer as a pdf.

What the client has done is lay out her original photos on a piece of 8 1/2 x 11, xerox it, then type captions next to the xeroxed photos, then attach the original photos over the top of the xeroxes. Two pages are then placed back to back in a clear plastic sleeve, which, along with another 199 sleeves, goes into a ring binder. I’m laying the book in ID (CS3, btw) because I want to add page numbers and some of the pages need to be centered or otherwise moved around so that I can maintain the printer’s minimal margins (the typing and placement of the illustrations on the original page sometimes goes to the very edge). Also, as I scan I'm trying to cut out toner shadows and other blemishes on the original pages. I’ve been scanning using my scanner’s software (Epson Perfection V200). The setting for the image quality of the outputted scan is 24-bit color at 300 dpi (pages with just text are scanned as black & white, 300 dpi, pages with only black & white photos are scanned as grayscale). If I want to do more editing (like cleaning up more blemishes) I open the pdfs in Photoshop. That way I can also change the color mode to CMYK before I save the file. Should I be scanning directly into Photoshop, then? I don’t scale the pdfs in ID because I know that can affect the resolution. I’ll try making tifs instead of pdfs.

Similar Messages

  • What is the best way to lay out color-coded Excel data in InDesign?

    I’ve been away from layout for some time. I now need to lay out color-coded Excel data (3 columns, 200 rows) in InDesign 5.5. The data will need to be in alpha order and each row will be color coded, with a color key at the top of the page. What is the best way to lay this out? Should I use the table tool and create a new style for each color that I need to use?
    Thanks for your help.

    I think this will work in CS3.
    Start off by inserting Styles of WEEK, Mon to Friday (as per left)
    Set the Week No. to Bullets and Numbering and insert as per screen shot
    Do the same for Days Monday through to Sunday
    Also set up Monday style NEXT STYLE to be Tuesday
    When you get to Sunday - loop the Styles back to WEEK style.
    Then as per first screen shot you just have to insert RETURNS all the way down to initiate the style.

  • Best way to flatten out this table?

    Lets say you're dealing with these two tables:
    CREATE TABLE VEHICLES
    VEHICLE_ID NUMBER,
    VEHICLE_NAME VARCHAR2(100 BYTE),
    MILES NUMBER
    CREATE TABLE VEHICLE_PARTS
    PART_ID NUMBER,
    VEHICLE_ID NUMBER NOT NULL,
    PART_TYPE NUMBER NOT NULL,
    PART_DESCRIPTION VARCHAR2(1000 BYTE) NOT NULL,
    START_SERVICE_DATE DATE NOT NULL,
    END_SERVICE_DATE DATE,
    PART_TYPE_NAME VARCHAR2(100 BYTE)
    And some example data as follows:
    Insert into VEHICLES (VEHICLE_ID, VEHICLE_NAME, MILES) Values (1, 'Honda Civic', 75500);
    Insert into VEHICLES (VEHICLE_ID, VEHICLE_NAME, MILES) Values (2, 'Ford Taurus', 156000);
    Insert into VEHICLE_PARTS
    (PART_ID, VEHICLE_ID, PART_TYPE, PART_DESCRIPTION, START_SERVICE_DATE, END_SERVICE_DATE, PART_TYPE_NAME)
    Values
    (1, 1, 1, '1.4 VTEC',
    TO_DATE('07/07/2009 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), TO_DATE('05/03/2010 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), 'ENGINE');
    Insert into VEHICLE_PARTS
    (PART_ID, VEHICLE_ID, PART_TYPE, PART_DESCRIPTION, START_SERVICE_DATE, PART_TYPE_NAME)
    Values
    (2, 1, 1, '1.6 VTEC',
    TO_DATE('05/03/2010 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), 'ENGINE');
    Insert into VEHICLE_PARTS
    (PART_ID, VEHICLE_ID, PART_TYPE, PART_DESCRIPTION, START_SERVICE_DATE, END_SERVICE_DATE, PART_TYPE_NAME)
    Values
    (3, 1, 2, 'Good Year All-Season',
    TO_DATE('07/07/2009 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), TO_DATE('08/10/2010 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), 'TIRES');
    Insert into VEHICLE_PARTS
    (PART_ID, VEHICLE_ID, PART_TYPE, PART_DESCRIPTION, START_SERVICE_DATE, PART_TYPE_NAME)
    Values
    (4, 1, 2, 'Bridgestone Blizzaks',
    TO_DATE('08/10/2010 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), 'TIRES');
    Insert into VEHICLE_PARTS
    (PART_ID, VEHICLE_ID, PART_TYPE, PART_DESCRIPTION, START_SERVICE_DATE, PART_TYPE_NAME)
    Values
    (5, 2, 1, '3.5 L Duratec',
    TO_DATE('06/01/2008 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), 'ENGINE');
    Insert into VEHICLE_PARTS
    (PART_ID, VEHICLE_ID, PART_TYPE, PART_DESCRIPTION, START_SERVICE_DATE, END_SERVICE_DATE, PART_TYPE_NAME)
    Values
    (6, 2, 2, 'Good Year All-Season',
    TO_DATE('06/01/2008 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), TO_DATE('03/15/2009 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), 'TIRES');
    Insert into VEHICLE_PARTS
    (PART_ID, VEHICLE_ID, PART_TYPE, PART_DESCRIPTION, START_SERVICE_DATE, END_SERVICE_DATE, PART_TYPE_NAME)
    Values
    (7, 2, 2, 'Michelin All-Seaon',
    TO_DATE('03/15/2009 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), TO_DATE('01/12/2011 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), 'TIRES');
    Insert into VEHICLE_PARTS
    (PART_ID, VEHICLE_ID, PART_TYPE, PART_DESCRIPTION, START_SERVICE_DATE, PART_TYPE_NAME)
    Values
    (8, 2, 2, 'Nokian',
    TO_DATE('01/12/2011 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), 'TIRES');
    And you need to produce a view which displays the joined data flattened out where each vehicle has one row with columns representing their most current part (by what has a service start date with null end date).
    Like this:
    Vehicle: Engine: Tires:
    Honda Civic 1.6 VTEC Bridgestone Blizzaks
    Ford Taurus 3.5 L Duratec Nokian
    Is there a fast/efficient way to do this?
    My current approach which is the brute force method is to have a separate outer join for each column I need to pull with condition of max(START_SERVICE_DATE) to get the current part for each type (Engine, Tires, etc...).
    but its so slow and painful code.
    i thought about Pivot but I dont think Pivot would help here since there is no aggregation going on, right?
    Could anything with partition over help? Im not familiar with that syntax

    Hi,
    trant wrote:
    Your query does work great I just ran it - but by your last note about wanting to use SELECT...PIVOT - would you please elaborate on that?If you're used to doing pivots with CASE (or DECODE) and GROUP BY, then you may require some practice before the new way seems better. I beliieve it is, and I think you'll find whatever effort you have to spend in learning to use the new PIVOT feature is time well invested. I find this code:
    WITH     got_r_num     AS
         SELECT     v.vehicle_name
         ,     vp.part_description
         ,     vp.part_type_name
         ,     ROW_NUMBER () OVER ( PARTITION BY  vp.vehicle_id
                             ,             vp.part_type_name
                             ORDER BY        start_service_date
                           )     AS r_num
         FROM     vehicle_parts     vp
         JOIN     vehicles     v     ON     v.vehicle_id     = vp.vehicle_id
         WHERE     vp.end_service_date     IS NULL
    SELECT       vehicle_name, engine, tires
    FROM       got_r_num
    PIVOT       (     MIN (part_description)
           FOR     part_type_name  IN ( 'ENGINE'     AS engine
                             , 'TIRES'     AS tires
    WHERE       r_num     = 1
    ORDER BY  vehicle_name
    ;easier to understand and maintain, and this is a more complicated than average example. Often, when using SELECT ... PIVOT, the main SELECT clause is juSt "SELECT *", and adding more columns is even easier. For eaxample:
    WITH     got_r_num     AS
         SELECT     v.vehicle_name
         ,     vp.part_description
         ,     vp.part_type_name
         ,     ROW_NUMBER () OVER ( PARTITION BY  vp.vehicle_id
                             ,             vp.part_type_name
                             ORDER BY        start_service_date
                           )     AS r_num
         FROM     vehicle_parts     vp
         JOIN     vehicles     v     ON     v.vehicle_id     = vp.vehicle_id
         WHERE     vp.end_service_date     IS NULL
    ,     top_1_only     AS
         SELECT     vehicle_name
         ,     part_description
         ,     part_type_name
         FROM     got_r_num
         WHERE     r_num     = 1
    SELECT       *
    FROM       top_1_only
    PIVOT       (     MIN (part_description)
           FOR     part_type_name  IN ( 'ENGINE'
                             , 'TIRES'
    ORDER BY  vehicle_name
    ;If you want to include BRAKES and STEERING columns, all you have to do is change
    FOR     part_type_name  IN ( 'ENGINE', 'TIRES')to
    FOR     part_type_name  IN ( 'ENGINE', 'TIRES', 'BRAKES', 'STEERING')The only way it could be any easier is if it were automatic! (That's another subject entirely.)

  • Best way to process out-of-gamut colors

    Hi,
    My usual colorspace whilst processing RAW images is Srgb, mainly because I print most shots & my printer requires Srgb for this.
    The problem is that I experience "out-of-gamut" warnings within ACR and would appreciate some advice on the best way to deal with this - my options seem to be:
    continue in Srgb & allow color to be clipped
    swap to a wider colorspace (lab/Argb), process the image & tthen convert to Srgb for print
    Ultimately though I need to output in Srgb so does it make any difference processing in the wider space as I guess the out-of-gamut color is going to be clipped at some stage anyway ?
    thanks for any advice
    Simon

    simonkit wrote:
    My usual colorspace whilst processing RAW images is Srgb, mainly because I print most shots & my printer requires Srgb for this.
    The problem is that I experience "out-of-gamut" warnings within ACR and would appreciate some advice on the best way to deal with this - my options seem to be:
    What printer are you using? Printers are nonlinear devices and as far as I know, no printer has sRGB as its native color space. Some printing services such as those offered by Walgreen and Walmart expect the image to be in sRGB and then convert behind the scenes to the native printer space. Walgreen often uses the Fuji Frontier and expects sRGB input. Some labs that cater to serious users will give you profiles for the Frontier. Some Costco stores use the Frontier and profiles are available on DryCreek.com. As Mylenium has pointed out in general for printers, the gamut of the Frontier is smaller than sRGB. However, their shapes are different and many colors in the sRGB gamut are not in the Frontier gamut. Conversely, a few colors in the printer gamut are outside of the Frontier gamut.
    Here is a 3D gamut plot of sRGB in solid color and a Fuji Frontier printer from a lab in my area shown as a wireframe. The gamut of sRGB is wider in the blues and magentas and these colors that fit in sRGB would be clipped on output to this printer and you would have no way of knowing that in the absence of a profile for the printer. A few yellows in the gamut of the printer are outside the gamut of sRGB, and these could have been saved if you had used a wider space such as aRGB or ProPhotoRGB.
    My suggestion is that you find a printer for which a profile is available. Costco uses Frontiers and Noritsus and makes profiles available. Most high end labs will give you a profile (otherwise, you are being ripped off). Then you can use soft proofing to detect and map out of gamut colors. If you are in aRGB and soft proof to see what colors are clipped in sRGB, you still do not know what colors that fit in sRGB would be clipped in printing. Also, if you have a profile with perceptual rendering (such rendering is not available for matrix profiles such as sRGB, aRGB, and ProPhotoRGB) you could try that to map the out of gamut colors.
    The most recent inkjets have a considerably wider gamut than photo paper, and the use of ProPhotoRGB is recommended for use with these.

  • We have always used one iTunes account and I want to crate a new account for my daughter.  What is the best way to go about this and will she need to download free apps again?

    We have always used one iTunes account and I want to crate a new account for my daughter.  What is the best way to go about this and will she need to download free apps again?

    Not going to happen the way you want it to.
    When you add a gift card balance to the Apple ID, it's available for the Apple ID.
    Probably best to create unique Apple ID's for each... this will also make things easier in the future as purchases are eternally tied to the Apple ID they were purchased with.

  • I am giving away a computer, what is the best way to wipe out data prior to depature

    i am giving away a computer, what is the best way to wipe out data prior to depature

    Did the Mac come with two grey disks when new? If so, use disk one to erase the drive using Disk Utility and then re-install the OS from the same disk. Once installed, quit and when the new owner boots they can set it up as a new out-of-the-box Mac when they boot it up. The grey disks need to be passed on with the computer.
    If you need detailed instructions on how to erase and re-install please post back.
    If the Mac came with Lion or Mountain Lion installed the above process can be done using the Recovery HD as since Lion no restore disks are supplied with the Mac.
    The terms of the licence state that a Mac should be sold/passed on with the OS installed that was on the machine when new (or words to that effect).

  • Best way to fade out multiple tracks at the same level

    Is there a best way to fade out multiple tracks at the end of a song? I have read the manual and understand fading "A" track, but not if my song is ending and I want to fade out all tracks equally.
    I thought I could export the file as a wav or MP3 (like I would do if I was fading out an Apple loop), then bring it back in and fade the track I import it to, but wanted to know if anyone else had any tips or tricks they use.
    Thanks
    RH

    sigh...don't people search forums anymore?
    http://discussions.apple.com/thread.jspa?messageID=7042093&#7042093

  • Best way to lay this out?

    I have a component that will hold a Tree. In that tree are
    certain types of Objects, called 'JReport' objects. Whenever a
    JReport Object is clicked, i want to notify a bunch of different
    components. Some of these have the same parent as the Tree, but
    most do not.
    What is the best way to design this? I want it to be as
    'black-box' as possible, so no passing objects around if i can help
    it. Any suggestions? thanks!

    "peteandrus" <[email protected]> wrote in
    message
    news:ggfvkj$sje$[email protected]..
    >I have a component that will hold a Tree. In that tree
    are certain types of
    > Objects, called 'JReport' objects. Whenever a JReport
    Object is clicked, i
    > want
    > to notify a bunch of different components. Some of these
    have the same
    > parent
    > as the Tree, but most do not.
    >
    > What is the best way to design this? I want it to be as
    'black-box' as
    > possible, so no passing objects around if i can help it.
    Any suggestions?
    > thanks!
    The Observer pattern is a good one for this. Luckily, Flex's
    binding
    architecture already implements this pattern. Create a model
    object that
    you change a property of based on what object has been
    clicked, then bind
    all the views to that property.
    HTH;
    Amy

  • Best way to clean out Mac

    I am getting a new MacBook Pro this week and I wanted to give my old one to my son. Once I transfer all of my data to the new computer, I would like to clean everything but the programs out of the old Mac before I give it to him. The old one has been a bit buggy of late. What is the best way to do this so that he can start over with a clean slate?

    Hi DKK,
    John gives some great advice, however you'll lose the installed programs. There's a good chance, though that you'll resolve the sluggishness. You can always reinstall the programs afterwards.
    If you do go the route of an Archive & Install (assuming you're reinstall Leopard and not Snow Leopard) while you won't lose the installed programs there's a good chance that they may not work properly and you'll need to reinstall them anyways.

  • What's the best way to pull off this guitar trick?

    I have a funky wah-wah guitar riff (about 5 seconds in length)and would like to have part of the riff play on the left speaker and the second half play on the right speaker—kind of flow between the two speakers organically. The riff was originally recorded in mono.
    What would be the best way to accomplish this effect? Automation and pan the signal in real time? Or double the recording on two different tracks and the cut it up and pan so one half plays on the each speaker for half of the time? Any other ideas or tricks?
    Basically, I’m just trying to get it to sound as “natural” as possible, if this makes any sense. I’m just curious how you guys would pull this off. Thanks for any tips.

    hi
    personally i'd do what you suggest: automate the pan of the gtr region/track.
    i'd either use one of my midi controller knobs - assign it to pan and then do it in realtime... or just draw in the pan automation and play around with the nodes of the automation and smooth them out with the curve tool...
    you could also use something like the stereo spread plugin and the tremolo and automate the later (depends on the rate of panning you want and the effect)
    or use a pan plugin....i think destroyfx had one - but i can't find it now - something like autopan....which you can sync to the bpm.
    hope that helps
    rounik

  • What is the best way to send out mass emails on an iMac?

    We have been using a different system and sending out emails on a PC.  I now need to send out a newsletter to our database and, having used one of the templates on the iMac need to send it out on my system.  Can anyone advise on the best way to do this?  I have updated the iMac to OS Yosemite 10.10.1 version

    Create a group contact in Apple Contacts.
    For examples, you create a group called business with as many email addresses inside. On your Apple Mail, you just type business, you will be able to send out the group emails out!!!
    Images below for your reference.

  • Best way to back out data changes after a release

    Hi,
    I'm trying to decide on the best way to backup some production data in case a release fails and we need to roll back the changes. This would be for data updates only, not schema changes. We have extremely limited access to production, and another team handles all the RMAN backups. The people who actually implement our releases are also pretty prone to mistakes.
    I have thought of two options. The tables we want to backup are about 9 MB total in size (it's about 10 codes tables).
    1. Create a bu table for each of the tables before the release. So for JENNSTABLE, we would create a JENNSTABLE_BU using CTAS. If we need to revert, we can drop JENNSTABLE and rename the JENNSTABLE_BU accordingly. The bu table would remain in production until the next release, where it would be reused again. This would be really easy to script and therefore avoid any mistakes by the production support team who implements our instructions. We would also be able to determine what values changed by querying the bu table at any time (currently old values are not retained anywhere).
    2. Use datapump to export the 10 tables, then truncate the tables and import the previously created files to restore the original data. I'm hesitant to use this method because I've never used datapump before, and as we don't have access to the servers, creating file system files makes me a little nervous. If I used a bu table, I can logon to the database and at least tell if it exists.
    Are there any preferred methods for doing this (besides restoring a table w/ RMAN)? Is there a best practice? Any advice is appreciated!
    -Jenn
    Oracle 10g
    UNIX Solaris

    Hi sb92075,
    That's a good suggestion. FLASHBACK_ON is set to no on my database, but if I understand correctly, I can still do a FLASHBACK TABLE and the undo data would be used. Is that correct?
    My concerns w/ using Flashback are ..
    1) The client might decide to rollback the changes a week after they've been executed. The undo data might not be available and the flashback would fail.
    2) If any of the following processes are part of the release, the flashback wouldn't work:
    "The following DDL operations change the structure of a table, so that you cannot subsequently use the TO SCN or TO TIMESTAMP clause to flash the table back to a time preceding the operation: upgrading, moving, or truncating a table; adding a constraint to a table, adding a table to a cluster; modifying or dropping a column; adding, dropping, merging, splitting, coalescing, or truncating a partition or subpartition (with the exception of adding a range partition)."
    Can you address those two issues? Thanks so much for taking the time to respond! This forum has helped me immensely with my work.
    -Jenn

  • Best way to clean out a hard drive.

    I have a A505 S605 Satelite laptop with a hard drive full of junk. I would  like to start over by cleaning out the hard drive completely. After the hard drive is cleaned out, I will install everything using the recovery disks that I got from the Geek Squad when I bought the computer.
    What is the best way to get the hard drive wiped out? Thank you for your help.

    Just back up the data you need to keep onto a usb thumb drive or usb external hard drive then run the Recovery Disk to restore the system to it's factory out of box state.   IT will wipe the drive as part of the process leaving your system exactly as it came to from the factory.  You don't need to delete anything first. 
    If you don't post your COMPLETE model number it's very difficult to assist you. Please try to post in complete sentences with punctuation, capitals, and correct spelling. Toshiba does NOT provide any direct support in these forums. All support is User to User in their spare time.

  • Best way to deal with this color issue?

    Hi,
    I exported an hour long sequence from ppro to blu-ray though media encoder and it took a few hours.
    Now I discovered one of my clips (3 seconds long) in my original PPro sequence, has a color imbalance and
    naturally that has been carried over into my file for encore.
    Since I didn't use dynamic link, what is the most efficient way to fix this?
    Is there a way to edit in encore?
    Is there a  way to just export that one clip from ppro and combine it into the original file on the encore timeline?
    Is it possible to an additional video track in encore and place that clip above the 1st video track? 
    If the above is not possible, than the best way might be to export just that chapter from ppro, then in Encore, make it a new timeline, trim original timeline to that chapter containing the fix clip point, then make end action from original timeline to new timeline. Finally, make a third timeline with the original sequence that starts after the fixed chapter point, and link to it.   
    I'm trying to avoid having to re-export the entire hour long sequence again.

    The only way to do this is to correct the problem in Premiere & re-encode the whole thing, making sure you use a different name.
    Sorry to be the bearer of bad news, but you have no other choice.

  • PE 13: What is the best way to cut out an unwanted segment and leave a fade-out/fade-in overlap?  Without multi-track overlaps?

    I have a long video segment and want to remove unwanted segments and replace them with fade-in/fade-out transitions.  I know that I can do this between two separate video tracks by fading out Video 1 and fading in Video 2 and having the two tracks overlap during the transition.  Is there an easy way to do this on the same track?  The way I've done this before is to cut out the unwanted segment, then move the two segments to separate tracks and overlap them.
    To compound the problem, I have a separate audio track for the wireless microphone I'm wearing. I need to pull that into the fade transitions.  So that's Video 1 and Audio 1 with Narration, all cut at the same time with overlapping fade-out/fade-in in the fewest steps.  Can Premiere Elements 13 handle that?

    billsbayou
    Add On...I am weighing the merits of applying an audio transition directly below the video transition. Considering Crossfade's  Constant Gain or Constant Power with a forced alignment of Between Clips. According to Adobe documentation
    Adobe Premiere Elements Help | Applying transitions to clips
    Adobe Premiere Elements includes two audio transitions in the Crossfade category: Constant Power and Constant Gain. Though both provide fades, they differ slightly. Constant Power creates a smoother-sounding fade, while Constant Gain, though mathematically linear, often sounds abrupt.
    ATR

Maybe you are looking for

  • EMOD HELP- analytics on campaign recipient metrics

    Hi, I have sent a Campaign out to 27k customers on the 19th January (first time EMOD user). I need to create reports and analyses based on recipient metrics. So far, I have loaded a report using the Campaign Response History in CRM Reports and downlo

  • Quicktime file to be rendered

    Whenever i capture Dv footage and transfer it to the timeline it works fine. But every time i import a Quicktime file & transfer it to the timeline it needs to be rendered & every time i do anything to it, even just moving it along the timeline a lit

  • Need to include stock from a Z table during ATP call

    Hi All,   Is there any place where I can "increase" the avaibale quantity by adding in stock from a Z table? I did see some user exits in the documentation but could really find one that will help me. Thanks in advance...

  • Acrobat Bookmarks Display Improperly in Mavericks

    After installing OS X Mavericks, the bookmarks in my Adobe Acrobat documents began displaying with enormous distances between each bookmark, and with strange pixellated symbols next to master bookmarks.  Does anyone else have this problem?

  • Nickname is already taken

    I'm new to Mac and am already frustrated. I just wanted to play a game to kill some time. When I go into the game center, it asks for my apple id and password. No problem there. But then it wants my age. What if I don't want to give it?  It also asks