Section on one page with includepdf [landscape] The 2019 Stack Overflow Developer Survey...
Is it ethical to upload a automatically generated paper to a non peer-reviewed site as part of a larger research?
How do you keep chess fun when your opponent constantly beats you?
Can undead you have reanimated wait inside a portable hole?
Change bounding box of math glyphs in LuaTeX
Are spiders unable to hurt humans, especially very small spiders?
Why can't devices on different VLANs, but on the same subnet, communicate?
Can withdrawing asylum be illegal?
How to grep and cut numbers from a file and sum them
How to test the equality of two Pearson correlation coefficients computed from the same sample?
What aspect of planet Earth must be changed to prevent the industrial revolution?
Working through the single responsibility principle (SRP) in Python when calls are expensive
Wall plug outlet change
Do warforged have souls?
The following signatures were invalid: EXPKEYSIG 1397BC53640DB551
Make it rain characters
Do working physicists consider Newtonian mechanics to be "falsified"?
Can smartphones with the same camera sensor have different image quality?
How is simplicity better than precision and clarity in prose?
Did the UK government pay "millions and millions of dollars" to try to snag Julian Assange?
Take groceries in checked luggage
When did F become S in typeography, and why?
Why is superheterodyning better than direct conversion?
Semisimplicity of the category of coherent sheaves?
Typeface like Times New Roman but with "tied" percent sign
Section on one page with includepdf [landscape]
The 2019 Stack Overflow Developer Survey Results Are In
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)How to translate and rotate the heading of landscaped pages?Avoid pagebreak in landscapeDisplay PDF page with sidewaysfigure in landscapeIncludePDF with Landscape - No new pageLandscape mode makes landscape page too smallLandscape page, PDF section title floatSection title above table in landscape modeAppendix numbering and includepdfText underneath pdf when using includepdfLandscape Wrong Way Around?Landscape table on portrait page
I want to include a PDF in landscape (its a table in PDF form)
with include PDF. I want a section on the same side, but when I use this command, the section heading is not on top (of that landscape page).
includepdf[landscape=true, page=1,pagecommand=section{Section Heading}]{table.pdf}
As you can see. B Section Heading is on the right. But i want it on top.
pdf pdfpages include landscape
bumped to the homepage by Community♦ 33 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 want to include a PDF in landscape (its a table in PDF form)
with include PDF. I want a section on the same side, but when I use this command, the section heading is not on top (of that landscape page).
includepdf[landscape=true, page=1,pagecommand=section{Section Heading}]{table.pdf}
As you can see. B Section Heading is on the right. But i want it on top.
pdf pdfpages include landscape
bumped to the homepage by Community♦ 33 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
Could you provide a image of your current result or desired result? Because compiling your code I get what I'd expect... the section gets rotated with the inserted content.
– G. Bay
May 18 '18 at 2:00
i added a picture
– ziT
May 18 '18 at 5:03
add a comment |
I want to include a PDF in landscape (its a table in PDF form)
with include PDF. I want a section on the same side, but when I use this command, the section heading is not on top (of that landscape page).
includepdf[landscape=true, page=1,pagecommand=section{Section Heading}]{table.pdf}
As you can see. B Section Heading is on the right. But i want it on top.
pdf pdfpages include landscape
I want to include a PDF in landscape (its a table in PDF form)
with include PDF. I want a section on the same side, but when I use this command, the section heading is not on top (of that landscape page).
includepdf[landscape=true, page=1,pagecommand=section{Section Heading}]{table.pdf}
As you can see. B Section Heading is on the right. But i want it on top.
pdf pdfpages include landscape
pdf pdfpages include landscape
edited May 18 '18 at 5:03
ziT
asked May 17 '18 at 21:05
ziTziT
233
233
bumped to the homepage by Community♦ 33 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♦ 33 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
Could you provide a image of your current result or desired result? Because compiling your code I get what I'd expect... the section gets rotated with the inserted content.
– G. Bay
May 18 '18 at 2:00
i added a picture
– ziT
May 18 '18 at 5:03
add a comment |
Could you provide a image of your current result or desired result? Because compiling your code I get what I'd expect... the section gets rotated with the inserted content.
– G. Bay
May 18 '18 at 2:00
i added a picture
– ziT
May 18 '18 at 5:03
Could you provide a image of your current result or desired result? Because compiling your code I get what I'd expect... the section gets rotated with the inserted content.
– G. Bay
May 18 '18 at 2:00
Could you provide a image of your current result or desired result? Because compiling your code I get what I'd expect... the section gets rotated with the inserted content.
– G. Bay
May 18 '18 at 2:00
i added a picture
– ziT
May 18 '18 at 5:03
i added a picture
– ziT
May 18 '18 at 5:03
add a comment |
2 Answers
2
active
oldest
votes
There could be multiple reasons for this. I suspect that pdfpages
still uses the "portrait coordinate system" for pages included in landscape, thus "LaTeX" does not know that you are in landscape mode. You've just rotated the one PDF-page.
If you use e.g. the pdflscape
-package to tell LaTeX that you are in landscape mode first, it seems to work fine:
documentclass{article}
usepackage{pdflscape}
usepackage{pdfpages}
begin{document}
begin{landscape}
includepdf[landscape=true, pagecommand=section{Section Heading}]{table.pdf}
end{landscape}
end{document}
add a comment |
Here is a different approach, based on this answer.
I have rotated the headings using textblock and rotated the included pdf again.
documentclass[a4paper]{report}
usepackage{pdfpages}
usepackage{pdflscape}
usepackage{textpos}
begin{document}
begin{landscape}
begin{textblock}{20}(-17,-2.5){rotatebox{90}{leftmark}}
section{Section Heading}
begin{figure}[]
includegraphics[,angle=-90,origin=c]{document_test.pdf}
end{figure}
end{textblock}
end{landscape}
end{document}
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%2f432153%2fsection-on-one-page-with-includepdf-landscape%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
There could be multiple reasons for this. I suspect that pdfpages
still uses the "portrait coordinate system" for pages included in landscape, thus "LaTeX" does not know that you are in landscape mode. You've just rotated the one PDF-page.
If you use e.g. the pdflscape
-package to tell LaTeX that you are in landscape mode first, it seems to work fine:
documentclass{article}
usepackage{pdflscape}
usepackage{pdfpages}
begin{document}
begin{landscape}
includepdf[landscape=true, pagecommand=section{Section Heading}]{table.pdf}
end{landscape}
end{document}
add a comment |
There could be multiple reasons for this. I suspect that pdfpages
still uses the "portrait coordinate system" for pages included in landscape, thus "LaTeX" does not know that you are in landscape mode. You've just rotated the one PDF-page.
If you use e.g. the pdflscape
-package to tell LaTeX that you are in landscape mode first, it seems to work fine:
documentclass{article}
usepackage{pdflscape}
usepackage{pdfpages}
begin{document}
begin{landscape}
includepdf[landscape=true, pagecommand=section{Section Heading}]{table.pdf}
end{landscape}
end{document}
add a comment |
There could be multiple reasons for this. I suspect that pdfpages
still uses the "portrait coordinate system" for pages included in landscape, thus "LaTeX" does not know that you are in landscape mode. You've just rotated the one PDF-page.
If you use e.g. the pdflscape
-package to tell LaTeX that you are in landscape mode first, it seems to work fine:
documentclass{article}
usepackage{pdflscape}
usepackage{pdfpages}
begin{document}
begin{landscape}
includepdf[landscape=true, pagecommand=section{Section Heading}]{table.pdf}
end{landscape}
end{document}
There could be multiple reasons for this. I suspect that pdfpages
still uses the "portrait coordinate system" for pages included in landscape, thus "LaTeX" does not know that you are in landscape mode. You've just rotated the one PDF-page.
If you use e.g. the pdflscape
-package to tell LaTeX that you are in landscape mode first, it seems to work fine:
documentclass{article}
usepackage{pdflscape}
usepackage{pdfpages}
begin{document}
begin{landscape}
includepdf[landscape=true, pagecommand=section{Section Heading}]{table.pdf}
end{landscape}
end{document}
answered May 18 '18 at 7:16
Andreas Storvik StraumanAndreas Storvik Strauman
2,598418
2,598418
add a comment |
add a comment |
Here is a different approach, based on this answer.
I have rotated the headings using textblock and rotated the included pdf again.
documentclass[a4paper]{report}
usepackage{pdfpages}
usepackage{pdflscape}
usepackage{textpos}
begin{document}
begin{landscape}
begin{textblock}{20}(-17,-2.5){rotatebox{90}{leftmark}}
section{Section Heading}
begin{figure}[]
includegraphics[,angle=-90,origin=c]{document_test.pdf}
end{figure}
end{textblock}
end{landscape}
end{document}
add a comment |
Here is a different approach, based on this answer.
I have rotated the headings using textblock and rotated the included pdf again.
documentclass[a4paper]{report}
usepackage{pdfpages}
usepackage{pdflscape}
usepackage{textpos}
begin{document}
begin{landscape}
begin{textblock}{20}(-17,-2.5){rotatebox{90}{leftmark}}
section{Section Heading}
begin{figure}[]
includegraphics[,angle=-90,origin=c]{document_test.pdf}
end{figure}
end{textblock}
end{landscape}
end{document}
add a comment |
Here is a different approach, based on this answer.
I have rotated the headings using textblock and rotated the included pdf again.
documentclass[a4paper]{report}
usepackage{pdfpages}
usepackage{pdflscape}
usepackage{textpos}
begin{document}
begin{landscape}
begin{textblock}{20}(-17,-2.5){rotatebox{90}{leftmark}}
section{Section Heading}
begin{figure}[]
includegraphics[,angle=-90,origin=c]{document_test.pdf}
end{figure}
end{textblock}
end{landscape}
end{document}
Here is a different approach, based on this answer.
I have rotated the headings using textblock and rotated the included pdf again.
documentclass[a4paper]{report}
usepackage{pdfpages}
usepackage{pdflscape}
usepackage{textpos}
begin{document}
begin{landscape}
begin{textblock}{20}(-17,-2.5){rotatebox{90}{leftmark}}
section{Section Heading}
begin{figure}[]
includegraphics[,angle=-90,origin=c]{document_test.pdf}
end{figure}
end{textblock}
end{landscape}
end{document}
answered May 18 '18 at 14:18
G. BayG. Bay
1,3601927
1,3601927
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%2f432153%2fsection-on-one-page-with-includepdf-landscape%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
Could you provide a image of your current result or desired result? Because compiling your code I get what I'd expect... the section gets rotated with the inserted content.
– G. Bay
May 18 '18 at 2:00
i added a picture
– ziT
May 18 '18 at 5:03