Printing Two Double-Sided Copies of an A5 Document on A4 PaperPrinting a double-sided A5 document on A4...
After Brexit, will the EU recognize British passports that are valid for more than ten years?
Why restrict private health insurance?
Why do we call complex numbers “numbers” but we don’t consider 2-vectors numbers?
I am the light that shines in the dark
Averaging over columns while ignoring zero entries
EXM headers adding bounce@spe.sitecoremail.com as the sender
Paper published similar to PhD thesis
Geological Explanation for an Unusually Temperate Northern Mountain Valley
Should I file my taxes? No income, unemployed, but paid 2k in student loan interest
Unidentified signals on FT8 frequencies
How to negotiate a patent idea for a raise?
Was it really inappropriate to write a pull request for the company I interviewed with?
What does it take to become a wilderness skills guide as a business?
Vector-transposing function
Tabular environment - text vertically positions itself by bottom of tikz picture in adjacent cell
Can I frame a new window without adding jack studs?
Short story about an infectious indestructible metal bar?
What is the purpose of a disclaimer like "this is not legal advice"?
Giving a talk in my old university, how prominently should I tell students my salary?
What exactly is the meaning of "fine wine"?
Multi wire circuit or 2 separate 120V 20A dedicated circuits?
std::string vs const std::string& vs std::string_view
The (Easy) Road to Code
Was this cameo in Captain Marvel computer generated?
Printing Two Double-Sided Copies of an A5 Document on A4 Paper
Printing a double-sided A5 document on A4 paperHow to force output to a left (or right) page?Printing a double-sided A5 document on A4 paperHow do I make the first page double sided in a single sided LaTeX document?How can I use the layout and twoside options of the geometry package?Switch to one-sided mode in the appendix of a double-sided documentSwitch from two sided to one sided typeHow to make a pagebreak that goes to the next double sided page?How can I print index cards two-sided with multiple cards per page?Print A6 book on A4 double-sided in correct orderCreate two-page altenating 'front' and 'back' backgrounds
I'm using LaTeX to write a quiz for the calculus class that I'm teaching, and I'm trying to save paper by using both sides of half a sheet of A4 paper (i.e., an A5 sheet) instead of one side of an A4 sheet. I'd like to print two double-sided copies of the quiz on a single sheet of A4 paper - i.e., the front side of the A4 sheet contains two copies of page 1, and the back side contains two copies of page 2. Is there a simple way to do this in LaTeX?
page-breaking double-sided
add a comment |
I'm using LaTeX to write a quiz for the calculus class that I'm teaching, and I'm trying to save paper by using both sides of half a sheet of A4 paper (i.e., an A5 sheet) instead of one side of an A4 sheet. I'd like to print two double-sided copies of the quiz on a single sheet of A4 paper - i.e., the front side of the A4 sheet contains two copies of page 1, and the back side contains two copies of page 2. Is there a simple way to do this in LaTeX?
page-breaking double-sided
Other answers can be found here
– Hafid Boukhoulda
Sep 24 '18 at 9:08
add a comment |
I'm using LaTeX to write a quiz for the calculus class that I'm teaching, and I'm trying to save paper by using both sides of half a sheet of A4 paper (i.e., an A5 sheet) instead of one side of an A4 sheet. I'd like to print two double-sided copies of the quiz on a single sheet of A4 paper - i.e., the front side of the A4 sheet contains two copies of page 1, and the back side contains two copies of page 2. Is there a simple way to do this in LaTeX?
page-breaking double-sided
I'm using LaTeX to write a quiz for the calculus class that I'm teaching, and I'm trying to save paper by using both sides of half a sheet of A4 paper (i.e., an A5 sheet) instead of one side of an A4 sheet. I'd like to print two double-sided copies of the quiz on a single sheet of A4 paper - i.e., the front side of the A4 sheet contains two copies of page 1, and the back side contains two copies of page 2. Is there a simple way to do this in LaTeX?
page-breaking double-sided
page-breaking double-sided
asked Sep 24 '18 at 7:48
Mike PaulMike Paul
211
211
Other answers can be found here
– Hafid Boukhoulda
Sep 24 '18 at 9:08
add a comment |
Other answers can be found here
– Hafid Boukhoulda
Sep 24 '18 at 9:08
Other answers can be found here
– Hafid Boukhoulda
Sep 24 '18 at 9:08
Other answers can be found here
– Hafid Boukhoulda
Sep 24 '18 at 9:08
add a comment |
2 Answers
2
active
oldest
votes
This may be achieved by using pgfpages package that provides pgfpageuselayout command to be put in the preambule of the document.
documentclass[a5paper]{article}
usepackage{lipsum}
usepackage{pgfpages}
pgfpagesuselayout{2 on 1}[a4paper,landscape]
begin{document}
lipsum[1-5]
end{document}

add a comment |
I've written an extension of pgfpages imaginatively called pgfmorepages which can handle repeating pages. The following code has two pages and each is repeated. Printing them out will give you two A5 double-sided copies.
documentclass[a5paper]{article}
%url{https://tex.stackexchange.com/q/452197/86}
usepackage{lipsum}
usepackage{pgfmorepages}
pgfmorepagesloadextralayouts
pgfpagesuselayout{repeated 2-up}[a4paper]
begin{document}
lipsum[1-5]
end{document}
The resulting pages look like this:


You need both pgfmorepages.sty and pgfmorepageslayouts.code.tex from the github page.
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%2f452197%2fprinting-two-double-sided-copies-of-an-a5-document-on-a4-paper%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
This may be achieved by using pgfpages package that provides pgfpageuselayout command to be put in the preambule of the document.
documentclass[a5paper]{article}
usepackage{lipsum}
usepackage{pgfpages}
pgfpagesuselayout{2 on 1}[a4paper,landscape]
begin{document}
lipsum[1-5]
end{document}

add a comment |
This may be achieved by using pgfpages package that provides pgfpageuselayout command to be put in the preambule of the document.
documentclass[a5paper]{article}
usepackage{lipsum}
usepackage{pgfpages}
pgfpagesuselayout{2 on 1}[a4paper,landscape]
begin{document}
lipsum[1-5]
end{document}

add a comment |
This may be achieved by using pgfpages package that provides pgfpageuselayout command to be put in the preambule of the document.
documentclass[a5paper]{article}
usepackage{lipsum}
usepackage{pgfpages}
pgfpagesuselayout{2 on 1}[a4paper,landscape]
begin{document}
lipsum[1-5]
end{document}

This may be achieved by using pgfpages package that provides pgfpageuselayout command to be put in the preambule of the document.
documentclass[a5paper]{article}
usepackage{lipsum}
usepackage{pgfpages}
pgfpagesuselayout{2 on 1}[a4paper,landscape]
begin{document}
lipsum[1-5]
end{document}

answered Sep 24 '18 at 8:54
Hafid BoukhouldaHafid Boukhoulda
4,5541625
4,5541625
add a comment |
add a comment |
I've written an extension of pgfpages imaginatively called pgfmorepages which can handle repeating pages. The following code has two pages and each is repeated. Printing them out will give you two A5 double-sided copies.
documentclass[a5paper]{article}
%url{https://tex.stackexchange.com/q/452197/86}
usepackage{lipsum}
usepackage{pgfmorepages}
pgfmorepagesloadextralayouts
pgfpagesuselayout{repeated 2-up}[a4paper]
begin{document}
lipsum[1-5]
end{document}
The resulting pages look like this:


You need both pgfmorepages.sty and pgfmorepageslayouts.code.tex from the github page.
add a comment |
I've written an extension of pgfpages imaginatively called pgfmorepages which can handle repeating pages. The following code has two pages and each is repeated. Printing them out will give you two A5 double-sided copies.
documentclass[a5paper]{article}
%url{https://tex.stackexchange.com/q/452197/86}
usepackage{lipsum}
usepackage{pgfmorepages}
pgfmorepagesloadextralayouts
pgfpagesuselayout{repeated 2-up}[a4paper]
begin{document}
lipsum[1-5]
end{document}
The resulting pages look like this:


You need both pgfmorepages.sty and pgfmorepageslayouts.code.tex from the github page.
add a comment |
I've written an extension of pgfpages imaginatively called pgfmorepages which can handle repeating pages. The following code has two pages and each is repeated. Printing them out will give you two A5 double-sided copies.
documentclass[a5paper]{article}
%url{https://tex.stackexchange.com/q/452197/86}
usepackage{lipsum}
usepackage{pgfmorepages}
pgfmorepagesloadextralayouts
pgfpagesuselayout{repeated 2-up}[a4paper]
begin{document}
lipsum[1-5]
end{document}
The resulting pages look like this:


You need both pgfmorepages.sty and pgfmorepageslayouts.code.tex from the github page.
I've written an extension of pgfpages imaginatively called pgfmorepages which can handle repeating pages. The following code has two pages and each is repeated. Printing them out will give you two A5 double-sided copies.
documentclass[a5paper]{article}
%url{https://tex.stackexchange.com/q/452197/86}
usepackage{lipsum}
usepackage{pgfmorepages}
pgfmorepagesloadextralayouts
pgfpagesuselayout{repeated 2-up}[a4paper]
begin{document}
lipsum[1-5]
end{document}
The resulting pages look like this:


You need both pgfmorepages.sty and pgfmorepageslayouts.code.tex from the github page.
answered 20 mins ago
Loop SpaceLoop Space
112k29306608
112k29306608
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%2f452197%2fprinting-two-double-sided-copies-of-an-a5-document-on-a4-paper%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
Other answers can be found here
– Hafid Boukhoulda
Sep 24 '18 at 9:08