Redimensionar pagina

Good afternoon,

I have Acrobat Pro DC estou trabalhando num maintains that a e o pagina tem o size banner (0, 80 m x 2 m). TEM como redimensionar a pagina mantendo o conteudo? Como posso passar paraA4? (21 x 30 cm)

ABS

Hi dorotheagr,

I'm sorry, there is no option in Acrobat to change the size of the page, but you can change the page while printing it scale or resize the printed pages. Acrobat, Reader or you can crop the size of the page Acrobat help. Crop pages PDF in Acrobat DC.

Kind regards

Nicos

Tags: Acrobat

Similar Questions

  • Add pagination to the top of the screen messages page - new and improved

    I have a phase beta Javascript that puts a third set of pagination and icons located at the top right of the screen CSA post web page information.

    Here is the web page with my improvement Linc Davis is not nearly enough recognition :

    If it was not easy for me to code, it must not be easy for you to install.

    Installation:

    (1) install GreaseMonkey in Firefox. GreaseMonkey does not work in other browsers like Chrome, but I have not tried.

    How to install improved pagination

    (2) add the javascript code of

    http://pastebin.com/raw/9MBCkakf

    R

    PS. Hiroto has a solution too: Hiroto, javascript fix for CSA.

    Hello

    Here's my javascript which now includes the cloning of pagination in header. The pagination_in_header() of service as well as the relevant rules of style injected by CSSStyleSheet.insertRule () does the job. You can adjust the positioning of the cloned by CSSRule element defined in javascript.

    FC.

    Document Object Model (DOM) level 2 Style specification

    https://www.w3.org/TR/DOM-level-2-style/

    // ==UserScript==
    // @name            ASC thread content view (d2)
    // @namespace       bubo-bubo/gmscripts
    // @description     ASC - disable jquery animation, initially show all replies, hide rollup solved answer in page 2 or later, clone pagination navigator in header.
    // @grant           unsafeWindow
    // @run-at          document-end
    // @include         https://discussions.apple.com/*
    // @include         https://discussionsjapan.apple.com/*
    // @include         https://discussionskorea.apple.com/*
    // @include         https://discussionschinese.apple.com/*
    // @include         https://communities.apple.com/*
    // @version         0.2.1
    // ==/UserScript==
    
    var _debug = 0;
    var $ = unsafeWindow.jQuery;
    var watchdog1, watchdog2, watchdog3;
    var watch_interval          = 300; // [ms]
    var re_thread               = new RegExp('^https://[^/]+/thread/');
    var re_thread_or_message    = new RegExp('^https://[^/]+/(thread|message)/');
    
    // disable jquery animation (globally)
    $.fx.off = true;
    
    // supplementary styles for pagination nagivator cloned in header (.thread-container-wrapper)
    // pagination navigator
    document.styleSheets[0].insertRule(
    '.thread-container-wrapper .j-pagination.top {\
        position: absolute !important;\
        top: -10px !important;\
        right: 0px !important;\
    }', 0);
    // loading gear icon
    document.styleSheets[0].insertRule(
    '.thread-container-wrapper .j-loading-big {\
        position: absolute;\
        top: -6px;\
        left: 0;\
        margin-left: -60px;\
        z-index: -1;\
    }', 0);
    
    // modify thread content view behaviour (in post-load phase)
    window.onload = function() {
        // register event listeners
        window.addEventListener('unload', function(e) {
            if (_debug) console.log('unload is observed');
            stop_watchdog(watchdog1);
            stop_watchdog(watchdog2);
            stop_watchdog(watchdog3);
            window.removeEventListener('_locationchange', _locationchange_handler, true);
            window.removeEventListener(e.type, arguments.callee, true);
        }, true);
    
        window.addEventListener('_locationchange', _locationchange_handler, true);
        function _locationchange_handler(e) {
            if (_debug) console.log('_locationchange is observed');
            var href = window.location.href;
            if ( href.match(re_thread) ) {
                setTimeout(show_all_replies, 100);
            }
            if ( href.match(re_thread_or_message) ) {
                setTimeout(hide_solved_p2, 100);
                setTimeout(pagination_in_header, 100);
            }
        }
    
        // _locationchange watch dog
        var prev_href = '';
        watchdog1 = setInterval( function() {
            // watch for location to change
            var curr_href = window.location.href;
            if (curr_href != prev_href) {
                if (_debug) console.log('_locationchange is issued');
                window.dispatchEvent(new Event('_locationchange'));
                prev_href = curr_href;
            }
        }, watch_interval);
    };
    
    function show_all_replies() {
        window.addEventListener('_helpfuldisplay', function(e) {
            if (_debug) console.log('_helpfuldisplay is observed');
            $('.helpful-all-switch li.helpful').addClass('inactive').removeClass('active').hide();
            $('.helpful-all-switch li.all-replies').addClass('active').removeClass('inactive').show();
            $('#helpful-container').hide();
            $('.all-replies-container').show();
            window.removeEventListener(e.type, arguments.callee, true);
        }, true);
    
        watchdog2 = setInterval( function() {
            // watch for helpful container to appear
            if (_debug) console.log('watchdog (for helpful container) is active : ' + watchdog2);
            if ($('#helpful-container').css('display') != 'none') {
                if (_debug) console.log('_helpfuldisplay is issued');
                window.dispatchEvent(new Event('_helpfuldisplay'));
                stop_watchdog(watchdog2);
            }
        }, watch_interval);
        setTimeout(stop_watchdog, 3000, watchdog2);
    }
    
    function hide_solved_p2() {
        var u = window.location.href;
        var re = /[?&]start=([0-9]+)/;
        var m = re.exec(u);
        var p = m ? m[1] : 0;
        if (_debug) console.log('current start post numebr = ' + p);
        var div = $('.j-answer-rollup.recommended-answers.span-full-width');
        if (!div) { return; }
        p > 0 ? div.hide() : div.show();
    }
    
    function pagination_in_header() {
        window.addEventListener('_pagereday', function(e) {
            if (_debug) console.log('_pagereday is observed');
            var pg = $('.all-replies-container .j-pagination.top');
            if (pg) {
                $('.thread-container-wrapper .j-pagination.top').remove();
                pg.clone(true).appendTo($('.thread-container-wrapper'));
            }
            window.removeEventListener(e.type, arguments.callee, true);
        }, true);
    
        watchdog3 = setInterval( function() {
            // watch for reply container opacity to be 1 (which is .5 while loading)
            if (_debug) console.log('watchdog (for page ready) is active : ' + watchdog3);
            if ($('.all-replies-container').css('opacity') == 1) {
                if (_debug) console.log('_pagereday is issued');
                window.dispatchEvent(new Event('_pagereday'));
                stop_watchdog(watchdog3);
            }
        }, watch_interval);
    //  setTimeout(stop_watchdog, 5000, watchdog3);
    }
    
    function stop_watchdog(dog) {
        clearInterval(dog);
        if (_debug) console.log('watchdog is inactive : ' + dog);
    }
    

    Tested with Greasemonkey 3.9 and Firefox 45.3.0esr OS X 10.6.8.

    All the best,

    Hiroto

  • Pagina Niet mijn PC geeft delen op internet case correct weer.

    Pagina Niet mijn PC geeft delen op internet case correct weer. Is invulvelden verschijnen niet in beeld. Teksten zijn vaak in die velden notice: "John code in" dubbel en ongelijk paper onduidelijk. Ontbreken ze Hotel soms. Het is

    bijna onmogelijk om zo'n veld te vinden of in te vullen. Soms ontbreken ook kaders rondom een tekst, die ik op mijn andere PC wel zie. Ik heb Firefox al eens opnieuw geinstalleerd maar zonder succes. Kunt U me helpen?
    Met vriendelijke groet, Jean-Pierre Knoors. [email protected]
    

    You are welcome

  • is freezer una pagina y no hay manera quitarla

    Buscando en google una pagina al ponerse in the pantalla is freezer, me salio abajo her barra donde dice if quiero salvar, correr o bajar y esta an amarillo pero no nada works, puedo entrar Internet y computadora intensification in todo: correo, facebook, youtub, todo, y quito todo pantalla pero esa pagina no quita is , apague the computadora y volvi a prender y vuelve a dirty, alguien me can help

    Hello

    See this page to select your language:

    http://support.Microsoft.com/common/international.aspx

    ====================================

    Or sorry that it is area English.

    Left click at the bottom of the Microsoft Community page

    English and set your language.

    I hope this helps.

    Rob Brown - Microsoft MVP<- profile="" -="" windows="" expert="" -="" consumer="" :="" bicycle=""><- mark="" twain="" said="" it="">

  • "Cuando trato open administrator of dispositvos sell me a message to cancel the fantastic of the pagina ' means that?

    Open Trato 'Dispositvos administrator' is me sale el message "to cancel the fantastic of the pagina.»

    Hello

    See this page to select your language:

    http://support.Microsoft.com/common/international.aspx

    ====================================

    Or sorry that it is area English.

    Left click at the bottom of the Microsoft Community page

    English and set your language.

    I hope this helps.

    Rob Brown - Microsoft MVP<- profile="" -="" windows="" expert="" -="" consumer="" :="" bicycle=""><- mark="" twain="" said="" it="">

  • If you print a document from an e-mail, why is the document different on another computer? The pagination is different, and my boss thought that I modified the document?

    If you print a document from an e-mail, why is the document different on another computer?  The pagination is different, and my boss thought that I modified the document?  I have not change the document - I just printed it e-mail, he says than the version printed on different is his version on his computer - and I have nothing but print it.

    Could answer you my question today?

    Thank you

    Hi MBS_PITT,

    The print can be different depending on the print settings and the settings of the computer on the other computer. If you want the same settings, then you should change the settings accordingly before you take the print out.

    For more information, you can consult the following article:

    Print a document or file

    Hope this information is useful.

  • ERRO na pagina.

    Estou recebendo notificando; Da of ERRO na pagina Web no no IE8.

    Hello

    See this page to select your language:

    http://support.Microsoft.com/common/international.aspx

    ====================================

    Or sorry that it is area English.

    Left click at the bottom of the Microsoft Community page

    English and set your language.

    I hope this helps.

    Rob Brown - Microsoft MVP<- profile="" -="" windows="" expert="" -="" consumer="" :="" bicycle=""><- mark="" twain="" said="" it="">

  • Video of nao can not Visualizae don't tube you em fullscreen e na pagina msn worm videos also nao Ouco o som em terms.

    Video of nao can not Visualizae don't tube you fullscreen em

    Pagina na do msn worm videos also nao Ouco o som em terms.

    Please select your language from the drop-down menu at the bottom of the page to post your question in the language of your choice. The forum in which you've posted is for English only. If you can't find the desired language, support for additional international sites options are by following the link below:

    Por favor, selecione o idioma na lista suspensa acima para enviar sua question no language of his choice. O forum go e voce para Inglés only. SE você não o idioma desejado acima, suporte para may find other localidades Affairs pode ser encontrada through link abaixo:

    http://support.Microsoft.com/common/international.aspx

  • EU nao to consiguindo entered na pagina do hotmail por Québec?

    EU nao to access entrar na pagina do hotmail por Québec?

    Please ask your question in a forum that uses your preferred language.  Click on the globe down icon to the left of the page here to select a language.

    You must also provide more information in your question (what do you want to say?).

    And the best help can be found in the Hotmail forum.

    Por favor, faca sua question em um forum usa o seu idioma preferido. Don't click any icon of globo no canto inferior esquerdo of any page aqui para selecionar um idioma.

    Você deve fornecer but information also na sua question (o what a page as voce quer say?).

    You can find best ajuda E noHotmail forum.

  • IK kan mijn E-mail niet openen geeft doing op pagina

    IK kan mijn E-mail niet openen vanwege doing op pagina

    Hello

    See this page to select your language:

    http://support.Microsoft.com/common/international.aspx

    ====================================

    Or sorry that it is area English.

    On the top of this page for answers click v (English) in the United States and set on your tongue.

    I hope this helps.

    Rob Brown - Microsoft MVP<- profile="" -="" windows="" expert="" -="" consumer="" :="" bicycle=""><- mark="" twain="" said="" it="">

  • Explorer 8 printing error (error dello script nella pagina)

    error dello script nella pagina

    Linea 1507

    character 1

    error argument no valido

    Codice 0

    URL res://ieframe.dll/preview.js

    I'm sorry, but these Vista Help Forums only provide support in English.

    http://support.Microsoft.com/common/international.aspx

    To ensure that you receive support appropriate for your location information, select your region setting in the list on the link above and then click the arrow button.

    Thank you.

    Mick Murphy - Microsoft partner

  • en pagina puedo descargar windows 7 ultimate

    in donde puedo get o en pagina windows 7 ultimate

    Microsoft proporciona soporte sitio en frances responses. A Uniform Resource Locator (URL) here is entirely of Quebec reciba soporte para para information known location. Abre el issues y su select region in the list desplegable y haga click in el boton para continue flecha.

    http://answers.Microsoft.com/es-ES

  • Internet explore funcionar dejo, UN escrip esta closing the pagina

    Nations United VII closing esta esta pagina, intenet rxplores dejo funcionar e, y aunque rei9nicie el problema sigue internet

    Hello

    This forum is for the English language, please select your prefer language to bottom of page and post it here to get the resolution

  • created pagina niet reageerd

    ALS ik mijn wil openen squeeze ik steeds of melding van reageerd niet google gmail. Use clean doet zich ook voor bij www.ttm.nl said gebeurd steeds bij Windows 7. Bij vista heb ik said clean niet.

    Please select your language from the drop-down menu at the bottom of the page to post your question in the language of your choice. The forum in which you've posted is for English only. If you can't find your language above, support for additional international sites options are by following the link below:

    Kies uw taal vervolgkeuzelijst onderkant van aan ITU of pagina om your question you posten in Taal van uw keuze. Post on the forum without jij het is voor Frans. ALS I niet vinden baking taal, support van jullie voor boven additional international Geraardsbergen kan

    http://answers.Microsoft.com/nl-NL/site/setlocale?URL=http%3A%2f%2Fanswers.Microsoft.com%2Fnl-NL%2Fwindowslive%2Fforum%3Ftab%3Dunanswered

  • Apex5: How to store field data in the Pagination of the Page

    Hello.

    We have recently started using Apex 5.0.1 on Oracle mod_plsql and 11.2.0.4.

    I have a (non-interactive) report classic, based on a collection of Apex and use g_fxx tables created by the package APEX_ITEM such as TEXT, DISPLAY_AND_SAVE, CHECKBOX2 procedures.  The report contains two checkboxes and editable and display only text fields containing data users have entered or have been extracted from the base.

    I have a button 'Add NEW LINE' that creates automatically a new line 'empty' in the report.  Clicking on it submits the page.  It is during this time submit that a process "After Submit" transfers what is in these paintings g_fxx in my collection of report.  When the number of added lines exceeds the maximum set for this report (30 lines).  The report then pages and the user will see a single line "empty."

    It all works very well.  The problem comes when the user clicks on the "Back" button  All previously entered data has disappeared leaving lines totally "empty".  Not nice.

    Someone knows how to keep the precedent of the fields in the report when content pagination to the 'Previous' or 'Next' in a report page?

    Thank you.

    Elijah

    EEG wrote:

    I'm sorry to be so long to respond.  Were flooded with more work Apex who had to do to meet a deadline.

    Your question...

    I * should * have been clearer.  The user clicks the 'next' or 'previous' links in the report when moving from one page to the next.  And "partial" page refresh is enabled on this report.  By your question, are you making reference to this partial page refresh must not be activated?

    By default, PPR is disabled on tabular forms generated by the wizard. I thought that if the same had been made in this case that Refresh complete which paging can be triggered some process of page which has affected the collection. However in this case we could probably expect No line rather than empty lines...

    I can't reproduce the problem based on the information provided. Suggest you try to demonstrate the problem on apex.oracle.com.

Maybe you are looking for