print crop margings for bindingoffset Announcing the arrival of Valued Associate #679: Cesar...
Is it ethical to give a final exam after the professor has quit before teaching the remaining chapters of the course?
Why didn't Eitri join the fight?
First console to have temporary backward compatibility
Can a party unilaterally change candidates in preparation for a General election?
Fundamental Solution of the Pell Equation
Is it fair for a professor to grade us on the possession of past papers?
How to react to hostile behavior from a senior developer?
Most bit efficient text communication method?
Can melee weapons be used to deliver Contact Poisons?
Would "destroying" Wurmcoil Engine prevent its tokens from being created?
Amount of permutations on an NxNxN Rubik's Cube
Is it common practice to audition new musicians 1-2-1 before rehearsing with the entire band?
Declining "dulcis" in context
Why do the resolve message appear first?
Why wasn't DOSKEY integrated with COMMAND.COM?
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
Where are Serre’s lectures at Collège de France to be found?
Is there a kind of relay only consumes power when switching?
Quick way to create a symlink?
Extracting terms with certain heads in a function
Can you use the Shield Master feat to shove someone before you make an attack by using a Readied action?
Did MS DOS itself ever use blinking text?
When a candle burns, why does the top of wick glow if bottom of flame is hottest?
Find the length x such that the two distances in the triangle are the same
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
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 geometry{showframe}
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}
usepackage{geometry}
geometry{twoside}
% use 20mm narrower paper than A4
geometry{paperheight=297mm,paperwidth=190mm}
% still use the A4 layout
geometry{layout=a4paper}
usepackage[cam,a4]{crop}
% print crop marks on odd pages (as printout is duplex)
crop[cross,odd]
usepackage[utf8]{inputenc}
begin{document}
blablub
end{document}
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}
usepackage{geometry}
geometry{twoside}
% use 40mm narrower paper than A4, cheating
geometry{paperheight=297mm,paperwidth=**170mm**}
% still use the A4 layout
geometry{layout=a4paper}
usepackage[cam,a4,**center**]{crop}
% print crop marks on odd pages (as printout is duplex)
crop[odd]
usepackage[utf8]{inputenc}
begin{document}
blablub
end{document}
margins geometry crop
bumped to the homepage by Community♦ 7 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
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 geometry{showframe}
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}
usepackage{geometry}
geometry{twoside}
% use 20mm narrower paper than A4
geometry{paperheight=297mm,paperwidth=190mm}
% still use the A4 layout
geometry{layout=a4paper}
usepackage[cam,a4]{crop}
% print crop marks on odd pages (as printout is duplex)
crop[cross,odd]
usepackage[utf8]{inputenc}
begin{document}
blablub
end{document}
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}
usepackage{geometry}
geometry{twoside}
% use 40mm narrower paper than A4, cheating
geometry{paperheight=297mm,paperwidth=**170mm**}
% still use the A4 layout
geometry{layout=a4paper}
usepackage[cam,a4,**center**]{crop}
% print crop marks on odd pages (as printout is duplex)
crop[odd]
usepackage[utf8]{inputenc}
begin{document}
blablub
end{document}
margins geometry crop
bumped to the homepage by Community♦ 7 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 withdocumentclass{...}
and ending withend{document}
. 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 thebindingoffset
will not be cut off (that would be horrible) there is no option. You can use basicpicture
or something more advanced liketikZ
to draw such a line.
– Johannes_B
Nov 22 '14 at 12:47
add a comment |
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 geometry{showframe}
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}
usepackage{geometry}
geometry{twoside}
% use 20mm narrower paper than A4
geometry{paperheight=297mm,paperwidth=190mm}
% still use the A4 layout
geometry{layout=a4paper}
usepackage[cam,a4]{crop}
% print crop marks on odd pages (as printout is duplex)
crop[cross,odd]
usepackage[utf8]{inputenc}
begin{document}
blablub
end{document}
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}
usepackage{geometry}
geometry{twoside}
% use 40mm narrower paper than A4, cheating
geometry{paperheight=297mm,paperwidth=**170mm**}
% still use the A4 layout
geometry{layout=a4paper}
usepackage[cam,a4,**center**]{crop}
% print crop marks on odd pages (as printout is duplex)
crop[odd]
usepackage[utf8]{inputenc}
begin{document}
blablub
end{document}
margins geometry crop
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 geometry{showframe}
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}
usepackage{geometry}
geometry{twoside}
% use 20mm narrower paper than A4
geometry{paperheight=297mm,paperwidth=190mm}
% still use the A4 layout
geometry{layout=a4paper}
usepackage[cam,a4]{crop}
% print crop marks on odd pages (as printout is duplex)
crop[cross,odd]
usepackage[utf8]{inputenc}
begin{document}
blablub
end{document}
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}
usepackage{geometry}
geometry{twoside}
% use 40mm narrower paper than A4, cheating
geometry{paperheight=297mm,paperwidth=**170mm**}
% still use the A4 layout
geometry{layout=a4paper}
usepackage[cam,a4,**center**]{crop}
% print crop marks on odd pages (as printout is duplex)
crop[odd]
usepackage[utf8]{inputenc}
begin{document}
blablub
end{document}
margins geometry crop
margins geometry crop
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♦ 7 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♦ 7 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 withdocumentclass{...}
and ending withend{document}
. 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 thebindingoffset
will not be cut off (that would be horrible) there is no option. You can use basicpicture
or something more advanced liketikZ
to draw such a line.
– Johannes_B
Nov 22 '14 at 12:47
add a comment |
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 withdocumentclass{...}
and ending withend{document}
. 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 thebindingoffset
will not be cut off (that would be horrible) there is no option. You can use basicpicture
or something more advanced liketikZ
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 end{document}
. 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 end{document}
. 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
add a comment |
1 Answer
1
active
oldest
votes
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@overlap{0truemm}%
makeatother
newlengthmybindingoffset
setlength{mybindingoffset}{20mm}
RequirePackage{everyshi}
AtBeginDocument{EveryShipout{%
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
setlength{mybindingrule}{1mm}% probably too thick
usepackage{pdfpages}
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%
rlap{hspace*{-mybindingrule}{color{black}{rule{mybindingrule}{paperheight}}}}%
else%
For left sides the rule
is placed right of the page:
rlap{hspace*{paperwidthrelax}{color{black}{rule{mybindingrule}{paperheight}}}}%
fi%
}%
usepackage{lipsum}
begin{document}
pagecolor{green}% just to better show the original page
lipsum[1-57]
end{document}
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.
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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@overlap{0truemm}%
makeatother
newlengthmybindingoffset
setlength{mybindingoffset}{20mm}
RequirePackage{everyshi}
AtBeginDocument{EveryShipout{%
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
setlength{mybindingrule}{1mm}% probably too thick
usepackage{pdfpages}
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%
rlap{hspace*{-mybindingrule}{color{black}{rule{mybindingrule}{paperheight}}}}%
else%
For left sides the rule
is placed right of the page:
rlap{hspace*{paperwidthrelax}{color{black}{rule{mybindingrule}{paperheight}}}}%
fi%
}%
usepackage{lipsum}
begin{document}
pagecolor{green}% just to better show the original page
lipsum[1-57]
end{document}
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.
add a comment |
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@overlap{0truemm}%
makeatother
newlengthmybindingoffset
setlength{mybindingoffset}{20mm}
RequirePackage{everyshi}
AtBeginDocument{EveryShipout{%
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
setlength{mybindingrule}{1mm}% probably too thick
usepackage{pdfpages}
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%
rlap{hspace*{-mybindingrule}{color{black}{rule{mybindingrule}{paperheight}}}}%
else%
For left sides the rule
is placed right of the page:
rlap{hspace*{paperwidthrelax}{color{black}{rule{mybindingrule}{paperheight}}}}%
fi%
}%
usepackage{lipsum}
begin{document}
pagecolor{green}% just to better show the original page
lipsum[1-57]
end{document}
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.
add a comment |
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@overlap{0truemm}%
makeatother
newlengthmybindingoffset
setlength{mybindingoffset}{20mm}
RequirePackage{everyshi}
AtBeginDocument{EveryShipout{%
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
setlength{mybindingrule}{1mm}% probably too thick
usepackage{pdfpages}
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%
rlap{hspace*{-mybindingrule}{color{black}{rule{mybindingrule}{paperheight}}}}%
else%
For left sides the rule
is placed right of the page:
rlap{hspace*{paperwidthrelax}{color{black}{rule{mybindingrule}{paperheight}}}}%
fi%
}%
usepackage{lipsum}
begin{document}
pagecolor{green}% just to better show the original page
lipsum[1-57]
end{document}
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.
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@overlap{0truemm}%
makeatother
newlengthmybindingoffset
setlength{mybindingoffset}{20mm}
RequirePackage{everyshi}
AtBeginDocument{EveryShipout{%
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
setlength{mybindingrule}{1mm}% probably too thick
usepackage{pdfpages}
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%
rlap{hspace*{-mybindingrule}{color{black}{rule{mybindingrule}{paperheight}}}}%
else%
For left sides the rule
is placed right of the page:
rlap{hspace*{paperwidthrelax}{color{black}{rule{mybindingrule}{paperheight}}}}%
fi%
}%
usepackage{lipsum}
begin{document}
pagecolor{green}% just to better show the original page
lipsum[1-57]
end{document}
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.
answered Jul 21 '18 at 17:54
StephenStephen
10.5k34779
10.5k34779
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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 withend{document}
. 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 basicpicture
or something more advanced liketikZ
to draw such a line.– Johannes_B
Nov 22 '14 at 12:47