print crop margings for bindingoffset Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)Print two-sided B5 book on A4 “corners”How to specify size of binding and trim/cropHow can I use the layout and twoside options of the geometry package?print B5 on A4 then cropInterference between crop and (new)geometryAdding crop marks to a4 document to crop it to book without changing the layout?How to set a binding offset with tufte-book class?Geometry does not seem to change the marginsCan I change position of geometry crop marks showing the same crop area?Header on odd pages

Is there a kind of relay only consumes power when switching?

2001: A Space Odyssey's use of the song "Daisy Bell" (Bicycle Built for Two); life imitates art or vice-versa?

Why do we bend a book to keep it straight?

Trademark violation for app?

Circuit to "zoom in" on mV fluctuations of a DC signal?

Around usage results

When a candle burns, why does the top of wick glow if bottom of flame is hottest?

What causes the direction of lightning flashes?

Is there any way for the UK Prime Minister to make a motion directly dependent on Government confidence?

How do I find out the mythology and history of my Fortress?

Using et al. for a last / senior author rather than for a first author

What is homebrew?

How could we fake a moon landing now?

On SQL Server, is it possible to restrict certain users from using certain functions, operators or statements?

Do jazz musicians improvise on the parent scale in addition to the chord-scales?

If my PI received research grants from a company to be able to pay my postdoc salary, did I have a potential conflict interest too?

Declining "dulcis" in context

How come Sam didn't become Lord of Horn Hill?

Fantasy story; one type of magic grows in power with use, but the more powerful they are, they more they are drawn to travel to their source

How to answer "Have you ever been terminated?"

An adverb for when you're not exaggerating

What would be the ideal power source for a cybernetic eye?

First console to have temporary backward compatibility

How to tell that you are a giant?



print crop margings for bindingoffset



Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)Print two-sided B5 book on A4 “corners”How to specify size of binding and trim/cropHow can I use the layout and twoside options of the geometry package?print B5 on A4 then cropInterference between crop and (new)geometryAdding crop marks to a4 document to crop it to book without changing the layout?How to set a binding offset with tufte-book class?Geometry does not seem to change the marginsCan I change position of geometry crop marks showing the same crop area?Header on odd pages










2















I would like to have a template for reformatting some arbitrary LaTeX document in a way, that I can print and cut it, to glue it into my lab-book. To this end, the output should



  • introduce a binding-offset,


  • show crop margins for the binding-offset, as here the paper will be cut,


  • and ideally the text width is not altered, but only moved (so the format is conserved).


While the first point is easily achievable with the bindingoffset=2cm option in the geometry package, the other two points are harder to realize:



While geometryshowframe prints all frames, I did not find a way to restrict it to the binding-offset margin only.



Furthermore I would like to counter the change of textwidth when a binding-offset is introduced, regardless of the documentclass used.



documentclass[10pt]article

usepackagegeometry
geometrytwoside
% use 20mm narrower paper than A4
geometrypaperheight=297mm,paperwidth=190mm
% still use the A4 layout
geometrylayout=a4paper

usepackage[cam,a4]crop
% print crop marks on odd pages (as printout is duplex)
crop[cross,odd]

usepackage[utf8]inputenc

begindocument
blablub
enddocument


However, this leaves me with the layout on the left and white space on the right - the opposite of a binding-offset. The only option crop gives is center. So how can I align the layout on the right?



Of course I could go for the following example, but that rather feels like cheating...



documentclass[10pt]article

usepackagegeometry
geometrytwoside
% use 40mm narrower paper than A4, cheating
geometrypaperheight=297mm,paperwidth=**170mm**
% still use the A4 layout
geometrylayout=a4paper

usepackage[cam,a4,**center**]crop
% print crop marks on odd pages (as printout is duplex)
crop[odd]

usepackage[utf8]inputenc

begindocument
blablub
enddocument









share|improve this question
















bumped to the homepage by Community 9 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.















  • Welcome to TeX.SX! Please help us to help you and add a minimal working example (MWE) that illustrates your question. It will be much easier for us to reproduce your situation and make suggestions when we see compilable code, starting with documentclass... and ending with enddocument. There are packages to print crop marks. Which width do you wish to reduce to compensate for the offset? If the paper size is X, something has to be smaller to compensate!

    – cfr
    Nov 7 '14 at 1:03






  • 1





    Crop margins are to be printed when, e.g. an a4 paper is printed on the larger a3. Those mark the spots where to cut out the page. As the bindingoffset will not be cut off (that would be horrible) there is no option. You can use basic picture or something more advanced like tikZ to draw such a line.

    – Johannes_B
    Nov 22 '14 at 12:47















2















I would like to have a template for reformatting some arbitrary LaTeX document in a way, that I can print and cut it, to glue it into my lab-book. To this end, the output should



  • introduce a binding-offset,


  • show crop margins for the binding-offset, as here the paper will be cut,


  • and ideally the text width is not altered, but only moved (so the format is conserved).


While the first point is easily achievable with the bindingoffset=2cm option in the geometry package, the other two points are harder to realize:



While geometryshowframe prints all frames, I did not find a way to restrict it to the binding-offset margin only.



Furthermore I would like to counter the change of textwidth when a binding-offset is introduced, regardless of the documentclass used.



documentclass[10pt]article

usepackagegeometry
geometrytwoside
% use 20mm narrower paper than A4
geometrypaperheight=297mm,paperwidth=190mm
% still use the A4 layout
geometrylayout=a4paper

usepackage[cam,a4]crop
% print crop marks on odd pages (as printout is duplex)
crop[cross,odd]

usepackage[utf8]inputenc

begindocument
blablub
enddocument


However, this leaves me with the layout on the left and white space on the right - the opposite of a binding-offset. The only option crop gives is center. So how can I align the layout on the right?



Of course I could go for the following example, but that rather feels like cheating...



documentclass[10pt]article

usepackagegeometry
geometrytwoside
% use 40mm narrower paper than A4, cheating
geometrypaperheight=297mm,paperwidth=**170mm**
% still use the A4 layout
geometrylayout=a4paper

usepackage[cam,a4,**center**]crop
% print crop marks on odd pages (as printout is duplex)
crop[odd]

usepackage[utf8]inputenc

begindocument
blablub
enddocument









share|improve this question
















bumped to the homepage by Community 9 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.















  • Welcome to TeX.SX! Please help us to help you and add a minimal working example (MWE) that illustrates your question. It will be much easier for us to reproduce your situation and make suggestions when we see compilable code, starting with documentclass... and ending with enddocument. There are packages to print crop marks. Which width do you wish to reduce to compensate for the offset? If the paper size is X, something has to be smaller to compensate!

    – cfr
    Nov 7 '14 at 1:03






  • 1





    Crop margins are to be printed when, e.g. an a4 paper is printed on the larger a3. Those mark the spots where to cut out the page. As the bindingoffset will not be cut off (that would be horrible) there is no option. You can use basic picture or something more advanced like tikZ to draw such a line.

    – Johannes_B
    Nov 22 '14 at 12:47













2












2








2








I would like to have a template for reformatting some arbitrary LaTeX document in a way, that I can print and cut it, to glue it into my lab-book. To this end, the output should



  • introduce a binding-offset,


  • show crop margins for the binding-offset, as here the paper will be cut,


  • and ideally the text width is not altered, but only moved (so the format is conserved).


While the first point is easily achievable with the bindingoffset=2cm option in the geometry package, the other two points are harder to realize:



While geometryshowframe prints all frames, I did not find a way to restrict it to the binding-offset margin only.



Furthermore I would like to counter the change of textwidth when a binding-offset is introduced, regardless of the documentclass used.



documentclass[10pt]article

usepackagegeometry
geometrytwoside
% use 20mm narrower paper than A4
geometrypaperheight=297mm,paperwidth=190mm
% still use the A4 layout
geometrylayout=a4paper

usepackage[cam,a4]crop
% print crop marks on odd pages (as printout is duplex)
crop[cross,odd]

usepackage[utf8]inputenc

begindocument
blablub
enddocument


However, this leaves me with the layout on the left and white space on the right - the opposite of a binding-offset. The only option crop gives is center. So how can I align the layout on the right?



Of course I could go for the following example, but that rather feels like cheating...



documentclass[10pt]article

usepackagegeometry
geometrytwoside
% use 40mm narrower paper than A4, cheating
geometrypaperheight=297mm,paperwidth=**170mm**
% still use the A4 layout
geometrylayout=a4paper

usepackage[cam,a4,**center**]crop
% print crop marks on odd pages (as printout is duplex)
crop[odd]

usepackage[utf8]inputenc

begindocument
blablub
enddocument









share|improve this question
















I would like to have a template for reformatting some arbitrary LaTeX document in a way, that I can print and cut it, to glue it into my lab-book. To this end, the output should



  • introduce a binding-offset,


  • show crop margins for the binding-offset, as here the paper will be cut,


  • and ideally the text width is not altered, but only moved (so the format is conserved).


While the first point is easily achievable with the bindingoffset=2cm option in the geometry package, the other two points are harder to realize:



While geometryshowframe prints all frames, I did not find a way to restrict it to the binding-offset margin only.



Furthermore I would like to counter the change of textwidth when a binding-offset is introduced, regardless of the documentclass used.



documentclass[10pt]article

usepackagegeometry
geometrytwoside
% use 20mm narrower paper than A4
geometrypaperheight=297mm,paperwidth=190mm
% still use the A4 layout
geometrylayout=a4paper

usepackage[cam,a4]crop
% print crop marks on odd pages (as printout is duplex)
crop[cross,odd]

usepackage[utf8]inputenc

begindocument
blablub
enddocument


However, this leaves me with the layout on the left and white space on the right - the opposite of a binding-offset. The only option crop gives is center. So how can I align the layout on the right?



Of course I could go for the following example, but that rather feels like cheating...



documentclass[10pt]article

usepackagegeometry
geometrytwoside
% use 40mm narrower paper than A4, cheating
geometrypaperheight=297mm,paperwidth=**170mm**
% still use the A4 layout
geometrylayout=a4paper

usepackage[cam,a4,**center**]crop
% print crop marks on odd pages (as printout is duplex)
crop[odd]

usepackage[utf8]inputenc

begindocument
blablub
enddocument






margins geometry crop






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jul 21 '18 at 17:32









Stephen

10.5k34779




10.5k34779










asked Nov 6 '14 at 14:57









maxmax

112




112





bumped to the homepage by Community 9 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.







bumped to the homepage by Community 9 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.














  • Welcome to TeX.SX! Please help us to help you and add a minimal working example (MWE) that illustrates your question. It will be much easier for us to reproduce your situation and make suggestions when we see compilable code, starting with documentclass... and ending with enddocument. There are packages to print crop marks. Which width do you wish to reduce to compensate for the offset? If the paper size is X, something has to be smaller to compensate!

    – cfr
    Nov 7 '14 at 1:03






  • 1





    Crop margins are to be printed when, e.g. an a4 paper is printed on the larger a3. Those mark the spots where to cut out the page. As the bindingoffset will not be cut off (that would be horrible) there is no option. You can use basic picture or something more advanced like tikZ to draw such a line.

    – Johannes_B
    Nov 22 '14 at 12:47

















  • Welcome to TeX.SX! Please help us to help you and add a minimal working example (MWE) that illustrates your question. It will be much easier for us to reproduce your situation and make suggestions when we see compilable code, starting with documentclass... and ending with enddocument. There are packages to print crop marks. Which width do you wish to reduce to compensate for the offset? If the paper size is X, something has to be smaller to compensate!

    – cfr
    Nov 7 '14 at 1:03






  • 1





    Crop margins are to be printed when, e.g. an a4 paper is printed on the larger a3. Those mark the spots where to cut out the page. As the bindingoffset will not be cut off (that would be horrible) there is no option. You can use basic picture or something more advanced like tikZ to draw such a line.

    – Johannes_B
    Nov 22 '14 at 12:47
















Welcome to TeX.SX! Please help us to help you and add a minimal working example (MWE) that illustrates your question. It will be much easier for us to reproduce your situation and make suggestions when we see compilable code, starting with documentclass... and ending with enddocument. There are packages to print crop marks. Which width do you wish to reduce to compensate for the offset? If the paper size is X, something has to be smaller to compensate!

– cfr
Nov 7 '14 at 1:03





Welcome to TeX.SX! Please help us to help you and add a minimal working example (MWE) that illustrates your question. It will be much easier for us to reproduce your situation and make suggestions when we see compilable code, starting with documentclass... and ending with enddocument. There are packages to print crop marks. Which width do you wish to reduce to compensate for the offset? If the paper size is X, something has to be smaller to compensate!

– cfr
Nov 7 '14 at 1:03




1




1





Crop margins are to be printed when, e.g. an a4 paper is printed on the larger a3. Those mark the spots where to cut out the page. As the bindingoffset will not be cut off (that would be horrible) there is no option. You can use basic picture or something more advanced like tikZ to draw such a line.

– Johannes_B
Nov 22 '14 at 12:47





Crop margins are to be printed when, e.g. an a4 paper is printed on the larger a3. Those mark the spots where to cut out the page. As the bindingoffset will not be cut off (that would be horrible) there is no option. You can use basic picture or something more advanced like tikZ to draw such a line.

– Johannes_B
Nov 22 '14 at 12:47










1 Answer
1






active

oldest

votes


















0














documentclass[a4paper]article
usepackage[noaxes,pdflatex,mount2]crop

makeatletter


REMOVE the following line for a real document! Here pagecolor is just used to mark the page dimensions. crop normally paints the page background a little bit over the edges of the page, which makes sense when cropping, but I just wanted to mark the (exact) page dimensions.



gdefCROP@overlap0truemm%
makeatother

newlengthmybindingoffset
setlengthmybindingoffset20mm

RequirePackageeveryshi
AtBeginDocumentEveryShipout%


This moves the page content
mybindingoffset (here: 20mm) to the right on the first (right) page,
then mybindingoffset to the left on the next (left) page and so on.



 hoffsetmybindingoffsetrelax%
globalmultiplymybindingoffset by -1%


newlengthmybindingrule
setlengthmybindingrule1mm% probably too thick

usepackagepdfpages

AddToShipoutPictureBG%


For positive mybindingoffset (i.e. right side), a rule with thickness mybindingrule and height paperheight is placed left (hspace*-mybindingrule) of the page (and by rlap we pretend that it is not there anyway):



ifdimmybindingoffset>0ptrelax%
rlaphspace*-mybindingrulecolorblackrulemybindingrulepaperheight%
else%


For left sides the rule is placed right of the page:



 rlaphspace*paperwidthrelaxcolorblackrulemybindingrulepaperheight%
fi%
%

usepackagelipsum
begindocument
pagecolorgreen% just to better show the original page
lipsum[1-57]
enddocument


Note that the page layout is not changed at all, but you are losing mybindingoffset (here: 20mm) at the right of right and at the left of left pages, because it is move outside of the page, so to speak. If that is "whitespace" anyway, it might be acceptable.



Example output






share|improve this answer























    Your Answer








    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "85"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: false,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: null,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f210827%2fprint-crop-margings-for-bindingoffset%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    documentclass[a4paper]article
    usepackage[noaxes,pdflatex,mount2]crop

    makeatletter


    REMOVE the following line for a real document! Here pagecolor is just used to mark the page dimensions. crop normally paints the page background a little bit over the edges of the page, which makes sense when cropping, but I just wanted to mark the (exact) page dimensions.



    gdefCROP@overlap0truemm%
    makeatother

    newlengthmybindingoffset
    setlengthmybindingoffset20mm

    RequirePackageeveryshi
    AtBeginDocumentEveryShipout%


    This moves the page content
    mybindingoffset (here: 20mm) to the right on the first (right) page,
    then mybindingoffset to the left on the next (left) page and so on.



     hoffsetmybindingoffsetrelax%
    globalmultiplymybindingoffset by -1%


    newlengthmybindingrule
    setlengthmybindingrule1mm% probably too thick

    usepackagepdfpages

    AddToShipoutPictureBG%


    For positive mybindingoffset (i.e. right side), a rule with thickness mybindingrule and height paperheight is placed left (hspace*-mybindingrule) of the page (and by rlap we pretend that it is not there anyway):



    ifdimmybindingoffset>0ptrelax%
    rlaphspace*-mybindingrulecolorblackrulemybindingrulepaperheight%
    else%


    For left sides the rule is placed right of the page:



     rlaphspace*paperwidthrelaxcolorblackrulemybindingrulepaperheight%
    fi%
    %

    usepackagelipsum
    begindocument
    pagecolorgreen% just to better show the original page
    lipsum[1-57]
    enddocument


    Note that the page layout is not changed at all, but you are losing mybindingoffset (here: 20mm) at the right of right and at the left of left pages, because it is move outside of the page, so to speak. If that is "whitespace" anyway, it might be acceptable.



    Example output






    share|improve this answer



























      0














      documentclass[a4paper]article
      usepackage[noaxes,pdflatex,mount2]crop

      makeatletter


      REMOVE the following line for a real document! Here pagecolor is just used to mark the page dimensions. crop normally paints the page background a little bit over the edges of the page, which makes sense when cropping, but I just wanted to mark the (exact) page dimensions.



      gdefCROP@overlap0truemm%
      makeatother

      newlengthmybindingoffset
      setlengthmybindingoffset20mm

      RequirePackageeveryshi
      AtBeginDocumentEveryShipout%


      This moves the page content
      mybindingoffset (here: 20mm) to the right on the first (right) page,
      then mybindingoffset to the left on the next (left) page and so on.



       hoffsetmybindingoffsetrelax%
      globalmultiplymybindingoffset by -1%


      newlengthmybindingrule
      setlengthmybindingrule1mm% probably too thick

      usepackagepdfpages

      AddToShipoutPictureBG%


      For positive mybindingoffset (i.e. right side), a rule with thickness mybindingrule and height paperheight is placed left (hspace*-mybindingrule) of the page (and by rlap we pretend that it is not there anyway):



      ifdimmybindingoffset>0ptrelax%
      rlaphspace*-mybindingrulecolorblackrulemybindingrulepaperheight%
      else%


      For left sides the rule is placed right of the page:



       rlaphspace*paperwidthrelaxcolorblackrulemybindingrulepaperheight%
      fi%
      %

      usepackagelipsum
      begindocument
      pagecolorgreen% just to better show the original page
      lipsum[1-57]
      enddocument


      Note that the page layout is not changed at all, but you are losing mybindingoffset (here: 20mm) at the right of right and at the left of left pages, because it is move outside of the page, so to speak. If that is "whitespace" anyway, it might be acceptable.



      Example output






      share|improve this answer

























        0












        0








        0







        documentclass[a4paper]article
        usepackage[noaxes,pdflatex,mount2]crop

        makeatletter


        REMOVE the following line for a real document! Here pagecolor is just used to mark the page dimensions. crop normally paints the page background a little bit over the edges of the page, which makes sense when cropping, but I just wanted to mark the (exact) page dimensions.



        gdefCROP@overlap0truemm%
        makeatother

        newlengthmybindingoffset
        setlengthmybindingoffset20mm

        RequirePackageeveryshi
        AtBeginDocumentEveryShipout%


        This moves the page content
        mybindingoffset (here: 20mm) to the right on the first (right) page,
        then mybindingoffset to the left on the next (left) page and so on.



         hoffsetmybindingoffsetrelax%
        globalmultiplymybindingoffset by -1%


        newlengthmybindingrule
        setlengthmybindingrule1mm% probably too thick

        usepackagepdfpages

        AddToShipoutPictureBG%


        For positive mybindingoffset (i.e. right side), a rule with thickness mybindingrule and height paperheight is placed left (hspace*-mybindingrule) of the page (and by rlap we pretend that it is not there anyway):



        ifdimmybindingoffset>0ptrelax%
        rlaphspace*-mybindingrulecolorblackrulemybindingrulepaperheight%
        else%


        For left sides the rule is placed right of the page:



         rlaphspace*paperwidthrelaxcolorblackrulemybindingrulepaperheight%
        fi%
        %

        usepackagelipsum
        begindocument
        pagecolorgreen% just to better show the original page
        lipsum[1-57]
        enddocument


        Note that the page layout is not changed at all, but you are losing mybindingoffset (here: 20mm) at the right of right and at the left of left pages, because it is move outside of the page, so to speak. If that is "whitespace" anyway, it might be acceptable.



        Example output






        share|improve this answer













        documentclass[a4paper]article
        usepackage[noaxes,pdflatex,mount2]crop

        makeatletter


        REMOVE the following line for a real document! Here pagecolor is just used to mark the page dimensions. crop normally paints the page background a little bit over the edges of the page, which makes sense when cropping, but I just wanted to mark the (exact) page dimensions.



        gdefCROP@overlap0truemm%
        makeatother

        newlengthmybindingoffset
        setlengthmybindingoffset20mm

        RequirePackageeveryshi
        AtBeginDocumentEveryShipout%


        This moves the page content
        mybindingoffset (here: 20mm) to the right on the first (right) page,
        then mybindingoffset to the left on the next (left) page and so on.



         hoffsetmybindingoffsetrelax%
        globalmultiplymybindingoffset by -1%


        newlengthmybindingrule
        setlengthmybindingrule1mm% probably too thick

        usepackagepdfpages

        AddToShipoutPictureBG%


        For positive mybindingoffset (i.e. right side), a rule with thickness mybindingrule and height paperheight is placed left (hspace*-mybindingrule) of the page (and by rlap we pretend that it is not there anyway):



        ifdimmybindingoffset>0ptrelax%
        rlaphspace*-mybindingrulecolorblackrulemybindingrulepaperheight%
        else%


        For left sides the rule is placed right of the page:



         rlaphspace*paperwidthrelaxcolorblackrulemybindingrulepaperheight%
        fi%
        %

        usepackagelipsum
        begindocument
        pagecolorgreen% just to better show the original page
        lipsum[1-57]
        enddocument


        Note that the page layout is not changed at all, but you are losing mybindingoffset (here: 20mm) at the right of right and at the left of left pages, because it is move outside of the page, so to speak. If that is "whitespace" anyway, it might be acceptable.



        Example output







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Jul 21 '18 at 17:54









        StephenStephen

        10.5k34779




        10.5k34779



























            draft saved

            draft discarded
















































            Thanks for contributing an answer to TeX - LaTeX Stack Exchange!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f210827%2fprint-crop-margings-for-bindingoffset%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Isabella Eugénie Boyer Biographie | Références | Menu de navigationmodifiermodifier le codeComparator to Compute the Relative Value of a U.S. Dollar Amount – 1774 to Present.

            Lioubotyn Sommaire Géographie | Histoire | Population | Notes et références | Liens externes | Menu de navigationlubotin.kharkov.uamodifier« Recensements et estimations de la population depuis 1897 »« Office des statistiques d'Ukraine : population au 1er janvier 2010, 2011 et 2012 »« Office des statistiques d'Ukraine : population au 1er janvier 2011, 2012 et 2013 »Informations officiellesCartes topographiquesCarte routièrem

            Mpande kaSenzangakhona Biographie | Références | Menu de navigationmodifierMpande kaSenzangakhonavoir la liste des auteursm