Slide numbers for printing

When one chooses “print slide numbers“ in the print dialogue box is it possible to format the font used and the position on the page in which the page number will appear.

Hi Joe,
Numbers operates on WYSIWYG.
Go View > Show Print View to see how the document will appear on the page(s).
To see the margins and header/footer spaces, go View > Show Layout.
If you have a single table that fits on a page, you can then select and drag the table to the center of the page.
When the table is centered vertically, you'll see a vertical blue alignment guideline appear.
When it's centered horizontally, a horizontal guideline will appear.
Simulated appearance when the table is centered in the print space is as shown below:
Regards,
Barry

Similar Messages

  • Scanning Slides for Printing by 3rd Party: Maximum Print Size Wanted

    I am wanting to license a series of vintage slides via my Zazzle.com store. The images scanned from the slides would be printed on the various products that they sell. Ideally I am looking to obtain the maximum resulting image size in the hopes of offering some of the designs on smaller sized posters. Some of the images were taken with everyday cameras while others were taken with expensive cameras such as a Zeiss Contarex so am guessing the film grain quality is going to vary although all are mounted in standard slide frames.
    I wanting to scan slides, or have slides scanned, into a lossless format such as tiff for archiving purposes, which would then be copied and opened inside photoshop and illustrator. I also have negatives from box cameras and similar older materials, but want to tackle the slides first.
    From reading the posts here the two main strategies appear to be:
    1. Do it yourself:
    I've read various posts that say this may take a specialized scanner costing $2,000, while others claim a Epson V500 does just as good of job - of course I wondering if the person using the Epson is wanting to print commercial products from the designs.
    What machines are recommended for use with Lion?
    Also there appears to be a debate about the best software, such as Digital Ice or VueScan? Any suggestions?
    2. Hire a 3rd party service:
    One main concern here is the items could get lost.
    The other major concern is how good are the resulting slides going to be. I've looked at various 3rd party sites that offer scanning and each appears to offer a differing opinion as to what dpi should be used. I understand that at a certain point a higher dpi setting is not going to obtain any further helpful information from the slide, but what exactly is the maximum setting that I should be shooting for? I see services offering 4,000 dpi, yet some of the dedicated slide scanners can go much higher so I am wondering if these services are just wanting to use the lower dpi to save on the resulting image size as opposed to obtaining the maximum print size?

    Kappy, How do you do it with iPhoto?
    CMCSK, For some reason, against my expectations, iWorks or Pages was nowhere to be found. I "spotlighted" them after failing to find them in the applications folder. I did not think to look for Microsoft Word Trial Version on the Mac. I doubted it would be there because Apple has Pages and Numbers. I'll check later, but I guess I also want to know how to do it without trial software.
    Kenichi Watanabe, Scaling only allows me to change the size, but not the position of the image. Halfway there!
    RothRock, After clicking the arrow, I get many options, including scaling, but I can't find any positioning option (other than just the Centre option).
    Does anybody know how to scale and position? I'm going to try iPhoto some more. Something as simple as positioning for printing shouldn't be this hard to find.

  • Is there a way of reducing the print borders in Numbers for ipad?

    I've recently purchased Numbers for my Ipad 2 and now need to print off my spreadsheets. However when I go to preview the sheets there seems to be a massive print border around the data? I've looked all over the app for a way to reduce it but can't find anything. On searching the web for answers there only seems to be references to the Software version not the app...can the border be rediced in the app?
    Thanks

    Thanks Jason,
    Thought as much. How ridiculous though... Talk about wasting paper as you use more up because of the massive print border the app has put on?
    Spence

  • How to create an action to insert hundreds of different numbers for limited edition prints?

    Hi,
    I sell limited edition prints of a run of between 350 and 500.
    I am trying to get it set up so that my signature and the print number is included as part of the print. Here is an example:
    You'll see at bottom left there is my signature and underneath is is the print number e.g. 110/350 (this is legible when printed at 18x12" size).
    Inserting the signature and the "/350" is easy since it only needs to be done once per image.
    The difficulty comes with inserting the actual print number e.g. "110"
    At the moment I have 0 to 9 written out and scanned in as separate numbers. So to make "110" I use the "1" digit twice, plus the "0" digit. I.e. I haven't written out 1 to 500 and scanned them in all as separate numbers, I've just done the 10 digits and use those 10 digits to make all the different numbers I need.
    Is there a way to create an action that will create say 350 JPEG copies of the original file, each one with its own unique print number inserted? (And ideally automatically saved with the print number as its file name!)
    Many thanks in advance

    This Script might be able to do some of what you wanted (the startNumber and endNumber would have to be set in the Script).
    It needs a Layer Group named »numbers« to contain layers for the numbers named »0«, »1«, …
    (script edited)
    // this script saves jpg copies with numbers created from number-layers in a layer group;
    // use it at your own risk;
    #target photoshop;
    if (app.documents.length > 0) {
    // define the numbers to create;
    var startNumber = 290;
    var endNumber = 310;
    // set to pixels;
    var originalRulerUnits = app.preferences.rulerUnits;
    app.preferences.rulerUnits = Units.PIXELS;
    // get doc;
    var myDocument = app.activeDocument;
    // getting the name and location;
    var docName = myDocument.name;
    var baseName = docName.match(/(.*)\.[^\.]+$/)[1];
    //getting the location;
    var docPath = myDocument.path;
    // duplicate the image;
    var thecopy = myDocument.duplicate (thecopy, false);
    // jpg options;
    var jpgopts = new JPEGSaveOptions();
    jpgopts.embedProfile = true;
    jpgopts.formatOptions = FormatOptions.STANDARDBASELINE;
    jpgopts.matte = MatteType.NONE;
    jpgopts.quality = 9;
    // get number layers;
    var numberSet = thecopy.layers.getByName("numbers");
    // collect in an array;
    var theNumbers = [numberSet.layers.getByName("0"), numberSet.layers.getByName("1"), numberSet.layers.getByName("2"),
    numberSet.layers.getByName("3"), numberSet.layers.getByName("4"), numberSet.layers.getByName("5"),
    numberSet.layers.getByName("6"), numberSet.layers.getByName("7"), numberSet.layers.getByName("8"), numberSet.layers.getByName("9")];
    numberSet.visible = true;
    // proceed if all numbers have been found;
    if (theNumbers.length == 10) {
    // hide layers;
    for (var n = 0; n < numberSet.layers.length; n++) {
    numberSet.layers[n].visible = false
    var theState = thecopy.activeHistoryState;
    // process the numbers;
    for (var m = startNumber; m < endNumber + 1; m++) {
    // the position;
    var theHor = 500;
    // create an array for the new numbers;
    var theArray = new Array;
    // the number;
    var thisString = String(m);
    // duplicate layers to create the numbers;
    for (var o = 0; o < thisString.length; o++) {
    var theNumberLayer = theNumbers[Number(thisString[o])];
    // create copy;
    var theLayer = duplicateMoveRotateScale (theNumberLayer, theHor - Number(theNumberLayer.bounds[0]), 0, 100, 100, 0);
    theNumberLayer.visible = false;
    //alert (m+"_"+o+"\n"+theNumberLayer+"\n"+theLayer);
    // set the hor to edge of the new layer;
    var theHor = theLayer.bounds[2];
    theArray.push(theLayer);
    // get the number for the file name;
    var theNumber = bufferNumberWithZeros(m, String(endNumber).length);
    //save jpg;
    thecopy.saveAs((new File(docPath+"/"+baseName+"_"+theNumber+".jpg")),jpgopts,true);
    // remove copied layers;
    //for (var p = theArray.length - 1; p >= 0; p--) {theArray[p].remove()};
    thecopy.activeHistoryState = theState;
    // close copy;
    thecopy.close(SaveOptions.DONOTSAVECHANGES);
    // reset ruler;
    app.preferences.rulerUnits = originalRulerUnits
    //that’s it; thanks to xbytor;
    ////// buffer number with zeros //////
    function bufferNumberWithZeros (number, places) {
              var theNumberString = String(number);
              for (var o = 0; o < (places - String(number).length); o++) {
                        theNumberString = String("0" + theNumberString)
              return theNumberString
    ////// duplicate layer and move, rotate and scale it //////
    function duplicateMoveRotateScale (theLayer, theX, theY, theScaleX, theScaleY, theRotation) {
    app.activeDocument.activeLayer = theLayer;
    try{
    // =======================================================
    var idTrnf = charIDToTypeID( "Trnf" );
        var desc10 = new ActionDescriptor();
        var idnull = charIDToTypeID( "null" );
            var ref6 = new ActionReference();
            var idLyr = charIDToTypeID( "Lyr " );
            var idOrdn = charIDToTypeID( "Ordn" );
            var idTrgt = charIDToTypeID( "Trgt" );
            ref6.putEnumerated( idLyr, idOrdn, idTrgt );
        desc10.putReference( idnull, ref6 );
        var idFTcs = charIDToTypeID( "FTcs" );
        var idQCSt = charIDToTypeID( "QCSt" );
        var idQcsa = charIDToTypeID( "Qcsa" );
        desc10.putEnumerated( idFTcs, idQCSt, idQcsa );
        var idOfst = charIDToTypeID( "Ofst" );
            var desc11 = new ActionDescriptor();
            var idHrzn = charIDToTypeID( "Hrzn" );
            var idPxl = charIDToTypeID( "#Pxl" );
            desc11.putUnitDouble( idHrzn, idPxl, theX );
            var idVrtc = charIDToTypeID( "Vrtc" );
            var idPxl = charIDToTypeID( "#Pxl" );
            desc11.putUnitDouble( idVrtc, idPxl, theY );
        var idOfst = charIDToTypeID( "Ofst" );
        desc10.putObject( idOfst, idOfst, desc11 );
        var idWdth = charIDToTypeID( "Wdth" );
        var idPrc = charIDToTypeID( "#Prc" );
        desc10.putUnitDouble( idWdth, idPrc, theScaleX );
        var idHght = charIDToTypeID( "Hght" );
        var idPrc = charIDToTypeID( "#Prc" );
        desc10.putUnitDouble( idHght, idPrc, theScaleY );
        var idAngl = charIDToTypeID( "Angl" );
        var idAng = charIDToTypeID( "#Ang" );
        desc10.putUnitDouble( idAngl, idAng, theRotation );
        var idIntr = charIDToTypeID( "Intr" );
        var idIntp = charIDToTypeID( "Intp" );
        var idbicubicAutomatic = stringIDToTypeID( "bicubicAutomatic" );
        desc10.putEnumerated( idIntr, idIntp, idbicubicAutomatic );
        var idCpy = charIDToTypeID( "Cpy " );
        desc10.putBoolean( idCpy, true );
    executeAction( idTrnf, desc10, DialogModes.NO );
    return app.activeDocument.activeLayer
    } catch (e) {}
    Edit: This Script just uses the layers’ horizontal bounds for orientation, so it does not address the issue I referred to earlier reagrding aesthetically pleasing spacing of the elements.

  • Emailing or printing to pdf a single worksheet from numbers for ipad.

    I use Numbers for my estimating program for my business and would like to be able to send my proposals directly from Numbers.  Is there a way to email only one worksheet from a numbers file?  Is there a way to print to a pdf from the print screen?

    you could try the writepdf app which converts files to pdf format and prints from the ipad

  • When using a numbers spreadsheet, how do I select a specific area for printing?

    When using a numbers spreadsheet, how do I select a specific area for printing?

    Also this would be a question for the Numbers app fourm.  Not the iMac hardware fourm.

  • For Keynote: How do I start slide numbers on the third slide?

    I want the page numbers to start on the third slide, not the first. Is this possible?

    click delete. it doesn't affect the other slides' numbers.
    This doesn't achieve the original request, "page numbers to start on the third slide"
    what you suggest just deletes numbers 1 & 2.

  • How do I get multiple tiles to appear on my large piece for printing?

    Hi, I'm working in Illustrator 6. I've got a large piece that I'd like to print onto several 11x17 sheets. When I select Veiw---Show Print TIling, only one tile appears. I expect there to be enough tiles to cover the entire piece and be numbered for me? Where are they? How do I get them to appear?
    Then when I go to Print the tile option in the print dialog is greyed out.
    I know I've done this before in earlier versions.
    Can you please help me?

    You can see a tile view in the preview section of Illustrator Print dialog.
    Choose a printer of your choice and then under the Media Size select 11x17.
    Under Scaling: Tile Full pages and Scale them to any level that suits your preview and thus the output.
    Please refer the image:

  • Error message when uploading book for printing. All images are jpg and rgb. Could they be too large to upload? What size is required and how do I reduce size in Aperture?

    I receive an error message when I upload my book for printing. Not sure what the problem is. All my images are jpg and rgb. Could they be too large as it takes about 15minutes to upload to Apple. How do I reduce the size of the image in Aperture?

    Hi Leonie,
    Thanks for your reply.
    Error message below. The preview is fine . I can discount the first 2messages as its a new computer so plenty of disk space and upload doesn't seem to be interrupted. I have uploaded to iphoto before. have tried to upload 3times with the same error message. I had to photo my slides with a Kaiser Baas photo maker , which apparently doesn't scan but takes photos in megapixels of the slides. I am wondering now if the format is incompatible though they are jpg files or the colour type wrong. The image files are  around 1-3 mb each and  72 ppi. I think  I will now scan them properly with a scanner to 300dpi anyway to improve quality.
    Apple  talks about image files not being too big for uploading but gives no sizing of what too big is?
    Error message
    1. Upload Error. Loss of connection or file corruption during order upload may cause an incomplete order. Resubmitting your order usually resolves this issue.
    2. Low Disk Space. If your computer is running on low disk space, your files may be assembled incorrectly. Create more space by deleting unused files.
    3. Unreadable PDF file or image files. Files are sometimes assembled incorrectly due to CMYK or Grayscale color space. Use the RGB color space for best results.

  • In Purchase Order Line item Maintaining Serial Numbers for Material Codes

    Dear Gurus,
    We have a business process in legacy system for Purchase Order like in PO line item, Material code with description, Quantity, unit of Measurement, Serial Number Start and Serial Number End is maintained, for example for Material code when we enter the data AXMLN00001 in Serial Number Start column, if the Qty 500 is maintained, by default system will calculate AXMLN00500 in Serial Number End column. 
    We understand that in standard SAP we donu2019t have this option of maintaining Serial Number Start and End in Purchase order Line item. Please let us know how this can be mapped and is it advisable to create two Z fields in EKPO table or else can we make any development.
    Suppose if this is not possible in SAP for PO then in Banks if we want to place a order for Cheque books how we can maintain Start and End Serial Numbers to print in cheque books.
    Also client is not agreeing to maintain manually Serial numbers in item text.
    regards,
    Dhanu

    Aamir,
    When the PO Item was created say for example Material had Valuation category "Y" and latter you wanted to change the category to "Y". Now system would have check for all open PO's etc...based on this you must have set Deletion Indicator to this Line Item to allow valuation category change in material master. Now when this Item got created in the table level (EKPO), system updates the valuation category "Y". Currently this valuation category is not active so it would not allow you to perform removal of deletion indicator as program cannot automatically nor you have an option to manually update the valuation category to this Item.
    Regards,
    Prasobh

  • How do I change the default paper size for printing?

    I am running Firefox 3.6.3. Recently, the default paper size for printing unexpectedly changed to a user-defined size of 3.00" x 4.57". It used to be letter size (8.5 x 11). The default paper size is 8.5 x 11 for everything else. I have tried changing the size in the preferences dialog box and then clicking "default", but after I close Firefox or if Firefox opens a new window, the default size switches back to 3.00" x 4.57". Does anyone know how to fix this?
    == This happened ==
    Every time Firefox opened
    == About 2 weeks ago

    In "mine" dutch firefox 3.6.12 there is no option to change paper-size see
    "about:config" Promise to be careful (and be!) Enter "print.postscript.paper_size" gives a empty screen
    "paper_size" gives a few results
    What about the numbers 4259872, 4784247 and what is the meaning of
    paper_size, paper_size_type , paper_size_unit

  • Problem with getting specified pages for printing

    requested Sir,
    I am sanjeev, presently working with adobe indesign for publishing.
    i am working verious sets of master pages,
    now have a problem go gate specific pages for print in the same software.
    it shows saction name that i could not inditify
    give me the message
    (one or more of th pages specified are not valid page name)
    so how gate the valid name of pages?
    please slove my problem,
    thanks
    sanjeev

    If your document has more than one section (sections are used to restart page numbering and similar tasks) you can identify the pages using either the logical name, which uses the section prefix and the "logical' page number which is the number that appears in the page marker, or you can use the absolute page number, which is the position in the document. You can set your preferences to display section or absolute page numbering in the Pages panel, too.
    Unless you assigne some other prefix, sections are labeled as Section I, Section II and so on, and pages are designated by Section:Page# in the dialogs. If you want to use absolute page numbering in the dialog instead, you can add a + sign in front of the page number in the dialog: +6-+12 will be the sixth though twelf pages in your document, even if they are in different sections and carry the numbers vi - 4, for example.

  • Content size when creating a PDF in Numbers for iOS

    I want to create a PDF document from Numbers for iOS, but it will not allow me to center content on the page or resize it to take the whole page. I can do it if I try to print a document, I can adjust the size of my content, but if I just want to create a PDF, it makes my content small and all bunched up in the top left corner and the document does not look good.

    I suspect that even if you could find the mapping information (pass as to where) it would simply tell you that Style A in Fm was mapped to Style B in Rh but not give you any information about how Style A was defined in Fm.
    I think your only options are to create a CSS as you suggest or, as I would, create redefine the Word Style Mapping Template to suit. By going to Word first, you can edit the output for better page breaks and other tweaking you might want.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Where we maintain the CST & VAT numbers for a plant which is not a register

    Hi All,
    Where we maintain the CST & VAT numbers for a plant which is not a registered for Excise?
    we are printing it on the invoice output. on debugging it is known that it comes from the table AUSP, after checking the table CABN.
    Any body knows about these two tables? let me know the purpose of these tables
    thanks in advance,
    Venkat

    Mr Big Screams.....
                      I hope you have neigther read my reply completely nor understood correctly.
    Let me tell you, maintaining record in J1ID in Plant address details doesnt declared that plant is registered under Excise act until unless you maintain ECC details. ( ECC -Excise Control Code number which will be alloted by the Central Excise dept).
    You will find CST / VAT fields in J1ID which is actually given to maintain Plant address details for INDIA localization.
    Hope its clear.
    Regards,
    Reazuddin MD

  • Packaging .AI file to PDF ready for printer - MAC Tiger user

    Hallo, I need some help please about sending artwork to printer who is using a FUJI colour Laser printer. (like most printers who are using laser here they reply to me to simply send them PDF, when I ask about embedded profiles or not to embed they tend to look at me blankly and say just send them a proof for me to compare colours)?!?!?!?
    So, Please could someone confirm wether or not I have applied the best setting in my PDF conversions: I am running CS3 creative suite and acrobat version 8.0. thanks.
    When you get the PDF options window on the " save Adobe pdf", On the first GENERAL page I set this to PDF/x-1a, (but why is there also the standard tab where I can do the same thing? so I set this also to PDF/x-1a. The compatibility goes to acrobat 4.0.
    I now go to OUTPUT. here I set the following:
    Colour conversion -- convert to destination preserve numbers
    Destination (since this is laser I set it to -- Generic cmyk profile
    Profile inclusion policy is grayed out.
    In PDF/X box under output intent profile name is set to Generic cmyk, and that is all.
    Before i did all this my global colour settings management policy is set to FOGRA27 (iso 12647-2:2004) and adobe RGB 1998 for the photos from photoshop cs3 of course. I then convert the document to the generic cmyk profile before packaging it into PDF and assigning these settings.
    I have searched everywhere for detailed tutorials about precisely how to pakage your work for an outside printer, but the web is silent when it comes to laser printing. I would love to know if there are any resources which cover all the issues of preparing your artwork for print since this side of the job is a minefield of complicated presets and flattening and font changing techniques.
    I am a memeber of Lynda.com and while they are excellent teachings and professional, I have unfortunately not been able to learn the gritty detailsof printing from them, only the basics.
    I appreciate the person who takes the time to reply to this.
    I thank you.
    Kind regards
    Chris Watts

    Your settings should do the job adequately, but there is a much simpler and more reliable method. Get Acrobat Professional. Generate your artwork in AI and save it as an .eps file. Then use Acrobat Distiller to generate the .pdf file. The advantages are that AD produces MUCH smaller file sizes, much better .pdf files and has a number of presets from which to choose, depending on the intended purpose of the file.
    Another hint as far as quality control is concerned - you should be working in the CMYK color space in Photoshop, if you are going to produce CMYK images in the .pdf file. CMYK is a narrower color space than RGB, so there is often a color shift upon conversion. You may have the image exactly the way you want it, as an RGB, but be disappointed in the printed version because of the shift in color during conversion. If you work in CMYK, you can adjust it to get the results you want.

Maybe you are looking for