standalone compatibility with pdfpagesBlank page when using newlfm and pdfpagesusing LaTeX pdfpages and...
Porting Linux to another platform requirements
Does a phylactery of a lich have to be a box?
What is 6÷2×(1+2) =?
Why avoid shared user accounts?
LuaTex and em dashes
What are career options for big-picture thinkers with no experience?
Is boss over stepping boundary/micromanaging?
Publishing research using outdated methods
What does it mean for a caliber to be flat shooting?
Is there a weight limit to Feather Fall?
What are "industrial chops"?
What is the wife of a henpecked husband called?
How old is the day of 24 equal hours?
Why zero tolerance on nudity in space?
Can I make estimated tax payments instead of withholding from my paycheck?
use of 4/2 chord more compelling than root position?
What would the chemical name be for C13H8Cl3NO
Can a hotel cancel a confirmed reservation?
How to prevent users from executing commands through browser URL
Why would space fleets be aligned?
What is the difference between rolling more dice versus fewer dice?
Using only 1s, make 29 with the minimum number of digits
How much mayhem could I cause as a sentient fish?
Consequences of lack of rigour
standalone compatibility with pdfpages
Blank page when using newlfm and pdfpagesusing LaTeX pdfpages and geometry packages togetherProblems with links using pdfpages and paxPDF with multible pages - pdfpages - captionsCrop out old page numbering and add new page numbering while using pdfpagesSome text from original pdf is missing including a pdf file using usepackage{pdfpages}One PDF for DoublepageAdjust Frame Option of pdfpages-Packagepdfpages removes handwritten notespdfpages printing AM@currentdocname in a box
I've done the following:
documentclass[preview]{article}
usepackage{pdfpages}
begin{document}
This is a test
includepdf[pages=1] {example-image-a4-numbered}
More testing
end{document}
and I get a 3-page document: "This is a test" on the first page, a picture from my pdf on the second page, and "More testing" on the third page.
When I change to this:
documentclass[preview]{standalone}
usepackage{pdfpages}
begin{document}
This is a test
includepdf[pages=1] {example-image-a4-numbered}
More testing
end{document}
I get something that looks like this:

...and the PDF contents don't show up at all. Can someone suggest what's up? (I've tried about 5 different PDFs just to be sure I'm not fighting something weird about one particular PDF.)
I'm on a Mac, using TeXShop.
pdfpages standalone
|
show 1 more comment
I've done the following:
documentclass[preview]{article}
usepackage{pdfpages}
begin{document}
This is a test
includepdf[pages=1] {example-image-a4-numbered}
More testing
end{document}
and I get a 3-page document: "This is a test" on the first page, a picture from my pdf on the second page, and "More testing" on the third page.
When I change to this:
documentclass[preview]{standalone}
usepackage{pdfpages}
begin{document}
This is a test
includepdf[pages=1] {example-image-a4-numbered}
More testing
end{document}
I get something that looks like this:

...and the PDF contents don't show up at all. Can someone suggest what's up? (I've tried about 5 different PDFs just to be sure I'm not fighting something weird about one particular PDF.)
I'm on a Mac, using TeXShop.
pdfpages standalone
3
You can use includegraphics[page=1]{...}. That's what pdfpages does.
– John Kormylo
Feb 16 at 3:29
OK...that seems to have worked. But is there a reason that pdfpages did NOT work?
– John
Feb 16 at 3:35
1
There are lots of reasons. For example, paperwidth and paperheight are undefined.
– John Kormylo
Feb 16 at 3:37
1
Sigh. Of course there's no hint of an error message...and I once again remember my love/hate relationship with LaTeX.
– John
Feb 16 at 4:57
standaloneis designed for diagrams and other boxed content and changes the internal page definitions for that. When other package are used which do similar things then clashes can occur easily. You could just try to use thepreviewpackage witharticleclass instead.
– Martin Scharrer♦
28 mins ago
|
show 1 more comment
I've done the following:
documentclass[preview]{article}
usepackage{pdfpages}
begin{document}
This is a test
includepdf[pages=1] {example-image-a4-numbered}
More testing
end{document}
and I get a 3-page document: "This is a test" on the first page, a picture from my pdf on the second page, and "More testing" on the third page.
When I change to this:
documentclass[preview]{standalone}
usepackage{pdfpages}
begin{document}
This is a test
includepdf[pages=1] {example-image-a4-numbered}
More testing
end{document}
I get something that looks like this:

...and the PDF contents don't show up at all. Can someone suggest what's up? (I've tried about 5 different PDFs just to be sure I'm not fighting something weird about one particular PDF.)
I'm on a Mac, using TeXShop.
pdfpages standalone
I've done the following:
documentclass[preview]{article}
usepackage{pdfpages}
begin{document}
This is a test
includepdf[pages=1] {example-image-a4-numbered}
More testing
end{document}
and I get a 3-page document: "This is a test" on the first page, a picture from my pdf on the second page, and "More testing" on the third page.
When I change to this:
documentclass[preview]{standalone}
usepackage{pdfpages}
begin{document}
This is a test
includepdf[pages=1] {example-image-a4-numbered}
More testing
end{document}
I get something that looks like this:

...and the PDF contents don't show up at all. Can someone suggest what's up? (I've tried about 5 different PDFs just to be sure I'm not fighting something weird about one particular PDF.)
I'm on a Mac, using TeXShop.
pdfpages standalone
pdfpages standalone
edited 12 mins ago
Martin Scharrer♦
202k47645821
202k47645821
asked Feb 16 at 2:43
JohnJohn
251128
251128
3
You can use includegraphics[page=1]{...}. That's what pdfpages does.
– John Kormylo
Feb 16 at 3:29
OK...that seems to have worked. But is there a reason that pdfpages did NOT work?
– John
Feb 16 at 3:35
1
There are lots of reasons. For example, paperwidth and paperheight are undefined.
– John Kormylo
Feb 16 at 3:37
1
Sigh. Of course there's no hint of an error message...and I once again remember my love/hate relationship with LaTeX.
– John
Feb 16 at 4:57
standaloneis designed for diagrams and other boxed content and changes the internal page definitions for that. When other package are used which do similar things then clashes can occur easily. You could just try to use thepreviewpackage witharticleclass instead.
– Martin Scharrer♦
28 mins ago
|
show 1 more comment
3
You can use includegraphics[page=1]{...}. That's what pdfpages does.
– John Kormylo
Feb 16 at 3:29
OK...that seems to have worked. But is there a reason that pdfpages did NOT work?
– John
Feb 16 at 3:35
1
There are lots of reasons. For example, paperwidth and paperheight are undefined.
– John Kormylo
Feb 16 at 3:37
1
Sigh. Of course there's no hint of an error message...and I once again remember my love/hate relationship with LaTeX.
– John
Feb 16 at 4:57
standaloneis designed for diagrams and other boxed content and changes the internal page definitions for that. When other package are used which do similar things then clashes can occur easily. You could just try to use thepreviewpackage witharticleclass instead.
– Martin Scharrer♦
28 mins ago
3
3
You can use includegraphics[page=1]{...}. That's what pdfpages does.
– John Kormylo
Feb 16 at 3:29
You can use includegraphics[page=1]{...}. That's what pdfpages does.
– John Kormylo
Feb 16 at 3:29
OK...that seems to have worked. But is there a reason that pdfpages did NOT work?
– John
Feb 16 at 3:35
OK...that seems to have worked. But is there a reason that pdfpages did NOT work?
– John
Feb 16 at 3:35
1
1
There are lots of reasons. For example, paperwidth and paperheight are undefined.
– John Kormylo
Feb 16 at 3:37
There are lots of reasons. For example, paperwidth and paperheight are undefined.
– John Kormylo
Feb 16 at 3:37
1
1
Sigh. Of course there's no hint of an error message...and I once again remember my love/hate relationship with LaTeX.
– John
Feb 16 at 4:57
Sigh. Of course there's no hint of an error message...and I once again remember my love/hate relationship with LaTeX.
– John
Feb 16 at 4:57
standalone is designed for diagrams and other boxed content and changes the internal page definitions for that. When other package are used which do similar things then clashes can occur easily. You could just try to use the preview package with article class instead.– Martin Scharrer♦
28 mins ago
standalone is designed for diagrams and other boxed content and changes the internal page definitions for that. When other package are used which do similar things then clashes can occur easily. You could just try to use the preview package with article class instead.– Martin Scharrer♦
28 mins ago
|
show 1 more comment
0
active
oldest
votes
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%2f475139%2fstandalone-compatibility-with-pdfpages%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
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%2f475139%2fstandalone-compatibility-with-pdfpages%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
3
You can use includegraphics[page=1]{...}. That's what pdfpages does.
– John Kormylo
Feb 16 at 3:29
OK...that seems to have worked. But is there a reason that pdfpages did NOT work?
– John
Feb 16 at 3:35
1
There are lots of reasons. For example, paperwidth and paperheight are undefined.
– John Kormylo
Feb 16 at 3:37
1
Sigh. Of course there's no hint of an error message...and I once again remember my love/hate relationship with LaTeX.
– John
Feb 16 at 4:57
standaloneis designed for diagrams and other boxed content and changes the internal page definitions for that. When other package are used which do similar things then clashes can occur easily. You could just try to use thepreviewpackage witharticleclass instead.– Martin Scharrer♦
28 mins ago