Pdf documents alway created as landscape; printed from Word; created from LaTex, everything.  How to get portrait as default?

How do I get acrobat XI to default to portrait?

Hey heritage972972,
You might need to refer the KB doc link for the same to set the portrait mode:
Print horizontal or vertical pages | Acrobat, Reader
Hope this helps.
Regards,
Anubha 

Similar Messages

  • I am having trouble printing a PDF document. Whenever I click print nothing happens but when I am printing documents from Word, Excel etc they print without a problem. I've tried printing as image but that did not work. I uninstalled Adobe Reader XI and d

    I am having trouble printing a PDF document. Whenever I click print nothing happens but when I am printing documents from Word, Excel etc they print without a problem. I've tried printing as image but that did not work. I uninstalled Adobe Reader XI and downloaded Adobe Reader X instead and that still doesn't work. I have Windows 7.

    Hello,
    Please follow the link to troubleshoot the printing issues with Adobe Reader:- Troubleshoot PDF printing | Acrobat, Reader.
    Regards,
    Nakul

  • When I try to delete page(s) from a PDF document I created, I geth the following message: "One or more pages are in use and could not be deleted." Any suggestions?

    When I try to delete page(s) from a PDF document I created, I geth the following message: "One or more pages are in use and could not be deleted." Any suggestions?

    I sent an email to TerraGo Support and they sent the following response: "This has bug has been discovered and our development team is quickly creating a patch to resolve the problem. The patch should be available within a week or two. For your reference, the bug number assigned to this case is: 3620. Check back in about two weeks and hopefully the patch will be available. Again, I apologize for the inconvenience."

  • Some PDF Documents are Missing Letters when Printing

    We use a Windows Server 2008 R2 Enterprise (64-bit) server as our print server. Ever since we moved our printers to this server, several of our existing PDF documents have missing letters when they print. If you modify your print properties and choose "Print as Image", the documents print correctly with no missing letters.
    The missing letters seem to come in specific combinations, such as ti, ft, fa, etc.
    Our previous print server was a Windows Server 2003 (32-bit) machine and these documents all printed fine on that server.
    Are there any known issues with printing PDF documents on a 64-bit print server, or with 64-bit drivers?
    Thank you for your time,
    Jason

    This response will hopefully help you towards a solution—I have not encountered the specific problem you are facing.
    The image you posted shows the fonts that are embedded in your document: both Calibri and Myriad Pro. However, the second instance of Calibri indicates that some some of the Calibri characters were encoded differently, and I suspect based on the combo characters you listed, these are glyphs and are what your printer is having trouble processing.
    The usual solution for print server issues is to make sure all drivers and firmware are updated.
    The answer to your question regarding embedding fonts completely is to change your Adobe pdf print preferences to embed all fonts, not just a subset. This must be done when the pdf is being created initially. You can change font embedding by choosing a joboption like Press Quality that includes full font embedding or by modifying the joboption you are already using. In Windows, you can do this at the time of print by selecting the Advanced button next to the printer selection dropdown and changing settings there, in advance by modifying the printing preferences from your printers menu, or by editing the joboptions in Acrobat Distiller.

  • Printing a PDF document using Java 1.4 Printing API

    Hi,
    When I tried to print a PDF document using JAVA 1.4 Printing API, I got the following exception.
    Exception in thread "main" sun.print.PrintJobFlavorException: invalid flavor
    at sun.print.Win32PrintJob.print(Win32PrintJob.java:290)
    at Printing.main(Printing.java:40)
    I am able to print the same PDF document using Acrobat reader.
    Is PDF format not supported in JAVA 1.4 printing API? or is something wrong in my code?
    here is the sample JAVA program that I was using
    import javax.print.*;
    import javax.print.attribute.*;
    import java.io.*;
    public class Printing {
    public static void main(String args[]) throws Exception {
    String filename = args[0];
    PrintRequestAttributeSet pras =
    new HashPrintRequestAttributeSet();
    DocFlavor flavor = DocFlavor.INPUT_STREAM.PDF;
    PrintService defaultService =
    PrintServiceLookup.lookupDefaultPrintService();
    DocPrintJob job = defaultService.createPrintJob();
    FileInputStream fis = new FileInputStream(filename);
    DocAttributeSet das = new HashDocAttributeSet();
    Doc doc = new SimpleDoc(fis, flavor, das);
    job.print(doc, pras);
    Thread.sleep(10000);
    System.exit(0);
    Thank you
    Sumana

    Here's a pure Java solution (that works!):
    http://www.mycgiserver.com/~zhouwu/pdf/readme.html
    The caveats are:
    - prints only to the default printer
    - requires a properties file located in the home directory
    my workaround for the last:
         * Print a PDF file to the default printer (might consume lots of memory!).
         * <p>
         * <b>Required:</b>
         * <ul>
         * <li>a file "acrobat.properties" needs to be in the working directory. The content is:
    <table align="center" bgcolor="#E0E0E0" border=1 cellpadding="10" cellspacing="0"><tr><td><pre style="margin-top:0; margin-bottom:0">
    #com.adobe.acrobat.Viewer Properties
    #Wed Oct 29 20:34:05 PST 2003
    com.adobe.acrobat.AcceptedLicAgreement=true
    com.adobe.acrobat.Fax_Fine_Mode=true
    com.adobe.acrobat.Find\:FindAll=false
    com.adobe.acrobat.Find\:FindBackwards=false
    com.adobe.acrobat.Find\:FindWholeWord=false
    com.adobe.acrobat.Find\:MatchCase=false
    com.adobe.acrobat.Open_Dialog_Directory=C\:\\temp\\
    com.adobe.acrobat.Open_Dialog_File=itext.pdf
    com.adobe.acrobat.Print_Method_Known=true
    com.adobe.acrobat.Shrink_To_Fit=false
    com.adobe.acrobat.SitePreferencesURL=file\://localhost/C\:/pdf/acrobat-site.properties
    com.adobe.acrobat.Use_Print_Server=false
    com.adobe.acrobat.util.fontDirectories=C\:\\Winnt\\Fonts
    com.adobe.acrobat.util.fontIgnoreExtensions=.fon;.pfm;.ini;.lst;.txt;.doc;.ttmap;.z;.enc;.dir;.afm;.f3b;.pfa;.spd;.ps;.bepf;.map;.alias;.scale;.all;.upr
    </pre></td></tr></table>
         * <li>The JAR files PDFPrinter.jar, acrobat.jar and MRJToolkitStubs.zip in the CLASSPATH.
         * </ul>
         * <p>
         * Note: the file "acrobat.properties" is expected to be in the user's home directory. As this is not always feasible,
         * the system property "user.home" is mapped to "user.dir" for the time of execution.
         * @param fileName Name of PDF file to print.
         * @throws Exception on error.
         * @see <a href="http://www.mycgiserver.com/~zhouwu/pdf/readme.html">PDF Server (Silent) Printing</a>
        public void printPDF(String fileName) throws Exception {
            String oldHome = System.getProperty("user.home");
            System.setProperty("user.home", System.getProperty("user.dir"));
            PDFPrinter vi = new PDFPrinter();
            vi.activate();
            vi.setDocumentInputStream(new FileInputStream(fileName));
            vi.printAll();
            System.setProperty("user.home", oldHome);
        }//printPDF()I just need the following additional files in my CLASSPATH: PDFPrinter.jar, acrobat.jar and MRJToolkitStubs.zip. Despite the note at the site above that "printing quality is not very good", i can't agree: the print quality is quite good. Not perfect, but acceptable for most uses.
    (Tested on Windows 2000 SP4, J2SE 1.4.2_03, hp laserjet 2300dn)

  • I have pages 09 0n my Mac Mini, but iCloud won't accept pdf documents not created in pages...

    I have pages 09 0n my Mac Mini, but iCloud won't accept some pdf documents not created in Pages (Its says Document format not supported).
    How do I get docs (pdf/jpg etc.), that are saved under "Documents" on my Mac Mini (Not in Pages), onto iCloud???
    I want to transfer (None Pages) documents from the Mac Mini to my iPad 3 (Which has Pages for iPad 3).
    Thanks in advance for ANY Feedback!

    You can download PDF files from iWork's page to a mac, but you can't upload from mac.  Also, you can't use iCloud like MobileMe's iDisk.  Most document formats on your mini can't be copied to iCloud.  Use Dropboc instead.

  • Is it possible to give each page within one pdf document a specific set of print settings?

    I have a complex document (catalogue) that requires printing. There are several different printer settings required and each one is specific to each page within the document. For instance pg 1 is single sided in colour, page 2-3 is duplexed in b&w, page 3-8 is duplexed in colour, etc.... Is it possible to give each page within the pdf document a given set of print settings and then print the entire document as a whole?

    Hi jennyskop
    I assume that is not feasible ...You need to give the print command again and select the respective pages and their settings !

  • HT4356 When printing from the iPad how to control how many pages of the document to print?

    When printing from the iPad, how to control how. Any pages of the document to print?

    You got me curious (even though I've never used coupons.com, and I have an AirPrint printer).  So I checked out coupons.com in the iTunes Store and found the following two reviews that I think explain everything:
    Based on the above, my conclusion is coupons.com is set up to print on wireless HP printers from an iPad.  You could print to a non-AirPrint HP printer as well using an app from the iTunes Store.  But the non-AirPrint printers do offer considerably less compatibility with Apple's iPad applications than the AirPrint ones do.  For example, in the Epson case, non-AirPrint Epsons can print from Safari but not from email.

  • HT4059 i purchased a tour guide book and would like to view and print from my PC, how can I?

    i purchased a tour guide book and would like to view and print from my PC, how can I?

    You purchased an ibook?
    Can I print my books and PDFs from iBooks?
    Yes, you can print PDFs and notes you've entered from iBooks, but the option to print ePub books is not available.2You can also email PDFs and notes you have written from iBooks."
    iBooks: Frequently Asked Questions (FAQ)

  • Hi When going from Develop module to print module a white boarder appears on screen which also prints via my epson r3000 printer. I can get round this by exporting photo to Elements and printing from there but can i get rid of the boarder and print from l

    Hi When going from Develop module to print module a white boarder appears on screen which also prints via my epson r3000 printer. I can get round this by exporting photo to Elements and printing from there but can i get rid of the boarder and print from lightroom?

    In the printer driver (accessed through the Page Setup button) set the Advanced tab to borderless. Then in the right hand panel under Layout set all the margins to zero.

  • Lightroom 4 launches to Photoshop CS5 when I try to print from Lightroom. How do I change it

    Lightroom 4 launches to Photoshop CS5 when I try to print from Lightroom. How do I change it, so the printing goes directly from Lightroom to the printer.

    MartyOretsky wrote:
    Let me try again. I am in Lightroom and click print. Then I am launched to PS.
    This is not possible.
    What you are seeing is not PS, it's your printer dialog. PS does not have an ICM button.
    And you say: " Lightroom doesn't stop working; rather CS5 stops working"
    And what does the error message say that you posted in the screen shot?  Does it not say "Adobe Photoshop Lightroom has stopped working" ?
    Do not be confused. Adobe Photoshop Lightroom is the official name of Lightroom. This is not CS5 that has stopped working. CS5 does not come on when you hit the print button in Lr.
    It is Lr that has stopped working.
    And you say: "My next step is to click on ICM so the color controls are done by the software."
    This is wrong. When you want Lr to do the color management, you select a profile in the Print Module, in the <Print Job> panel under Color Management / Profile.
    In the screen shot below I have selected a profile for my HP printer and paper. And that's where you select a profile for your printer and paper.
    You do not click on ICM in your printer dialog. You click there only when you want your printer to manage colors.
    So try to print by selecting the profile in the print Module as indicated and do not click on ICM.
    By the way: Which OS? Are you on a Mac?

  • I erased the printer from the dock, how do I get it back?

    I erassed the printer from the dock,how do I get it back?

    Hi, open System Preferences>Print & Scan, highlight that printer, click on the Open Print Queue button, it'll show in the Dock, then Right click on that icon in the Dock, choose Optios>Keep in Dock.

  • Quick doubt.. from cursor vairable how to get into page vairable

    Hello
    i am creating an apex page where i have 2 regions. From the Top region stores all fields entered into the bottom region
    Text fields like first name and last name and address fields are in region 2(bottom).After region 2, i have a add person button.
    Once i click add person, that person will get into top i.e region 1.
    Now, Region 1 got person1 first name ,last name
    person2, first name,last name
    etc..
    I am not able to display like p1_first_name,p1_laast_name as the list is not stable..it is growing and not showing the person who already got saved..I can retrieve them from DB using a cursor..But from cursor vairable how to get into page vairable..
    appreciate ur help..
    kp

    Your explanation is not good enough. You have to make a better description of your problem or create an example at apex.oracle.com.
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.apress.com/9781430235125
    http://apex.oracle.com/pls/apex/f?p=31517:1
    http://www.amazon.de/Oracle-APEX-XE-Praxis/dp/3826655494
    -------------------------------------------------------------------

  • I have canceled my account same day and joining because the convert PDF to word did not convert correctly how to get credit for cancelled membership

    I have canceled my account same day and joining because the convert PDF to word did not convert correctly how to get credit for cancelled membership

    You need to contact Adobe Customer Support :
    They will check and assist you. (Live Chat)
    Contact Customer Care

  • Itunes has disappeared from my ipad. how to get it back?

    itunes has disappeared from my ipad. how to get it back?

    You don't have iTunes (per se) on the iPad. There is a Music app which is an orange icon. Native apps cannot be deleted, but in the event that it has somehow disappeard you could go to Settings > Reset > Reset Home Screen Layout.

Maybe you are looking for