Merging several papers
This link seems to have the answer:
Merging many tex-documents together?
But what does he mean by "Create a new document as a frame"?
Also whatever it is how do you create it in TexnNicCenter?
Baz
documentclass{article}
usepackage{pdfpages}
begin{document}
includepdf[pages=-]{TransferPanel.pdf}
includepdf[pages=-]{rv-Nss.pdf}
end{document}
This was my attempt to follow the instructions.
The resulting pdf does contain the two papers in their entirety, this is 90% what I want, all that remains is that I would like the page numbers to be consecutive?
I guess this means I have to:
1.) Remove the page numbers from the orginal papers
2.) Then add page numbers to this new document?
It's the second part that I'm not sure of?
document-configuration
add a comment |
This link seems to have the answer:
Merging many tex-documents together?
But what does he mean by "Create a new document as a frame"?
Also whatever it is how do you create it in TexnNicCenter?
Baz
documentclass{article}
usepackage{pdfpages}
begin{document}
includepdf[pages=-]{TransferPanel.pdf}
includepdf[pages=-]{rv-Nss.pdf}
end{document}
This was my attempt to follow the instructions.
The resulting pdf does contain the two papers in their entirety, this is 90% what I want, all that remains is that I would like the page numbers to be consecutive?
I guess this means I have to:
1.) Remove the page numbers from the orginal papers
2.) Then add page numbers to this new document?
It's the second part that I'm not sure of?
document-configuration
1
Create a new document only withdocumentclass{report}
and that packages suggested there. Then you insert the papers usingpdfpages
tools.
– Sigur
Feb 14 '14 at 20:59
1
You haven't provided much detail about your requirements. You might take a look at thecombine
package: get-software.net/macros/latex/contrib/combine/combine.pdf
– Ethan Bolker
Feb 14 '14 at 21:01
Hi I'd still like to be able to edit the page numbers to that they are contiguous (except perhaps for appendices/bibliography's). Also I would like to be able to add a table of contents. Will it be possible to add anything more details than chapter1 and Chapter 2? Ideally I would like to give a breakdown of each chapter?
– Bazman
Feb 14 '14 at 21:12
Is there any reason you need to include them as PDFs. Why not include their source if they are.tex
files? Then you can easily generate the kinds of information you want to include. (You can get the pages anyway - see the documentation for pdfpages on how to do this.)
– cfr
Feb 14 '14 at 21:54
1
I suggest you to usepagestyle{empty}
inTransferPanel.tex
andrv-Nss.tex
and thenincludepdf[pages=-,pagecommand={pagestyle{plain}}]{TransferPanel.pdf}
andincludepdf[pages=-,pagecommand={pagestyle{plain}}]{rv-Nss.pdf}
– karlkoeller
Feb 15 '14 at 6:51
add a comment |
This link seems to have the answer:
Merging many tex-documents together?
But what does he mean by "Create a new document as a frame"?
Also whatever it is how do you create it in TexnNicCenter?
Baz
documentclass{article}
usepackage{pdfpages}
begin{document}
includepdf[pages=-]{TransferPanel.pdf}
includepdf[pages=-]{rv-Nss.pdf}
end{document}
This was my attempt to follow the instructions.
The resulting pdf does contain the two papers in their entirety, this is 90% what I want, all that remains is that I would like the page numbers to be consecutive?
I guess this means I have to:
1.) Remove the page numbers from the orginal papers
2.) Then add page numbers to this new document?
It's the second part that I'm not sure of?
document-configuration
This link seems to have the answer:
Merging many tex-documents together?
But what does he mean by "Create a new document as a frame"?
Also whatever it is how do you create it in TexnNicCenter?
Baz
documentclass{article}
usepackage{pdfpages}
begin{document}
includepdf[pages=-]{TransferPanel.pdf}
includepdf[pages=-]{rv-Nss.pdf}
end{document}
This was my attempt to follow the instructions.
The resulting pdf does contain the two papers in their entirety, this is 90% what I want, all that remains is that I would like the page numbers to be consecutive?
I guess this means I have to:
1.) Remove the page numbers from the orginal papers
2.) Then add page numbers to this new document?
It's the second part that I'm not sure of?
document-configuration
document-configuration
edited Apr 13 '17 at 12:35
Community♦
1
1
asked Feb 14 '14 at 20:18
BazmanBazman
4492816
4492816
1
Create a new document only withdocumentclass{report}
and that packages suggested there. Then you insert the papers usingpdfpages
tools.
– Sigur
Feb 14 '14 at 20:59
1
You haven't provided much detail about your requirements. You might take a look at thecombine
package: get-software.net/macros/latex/contrib/combine/combine.pdf
– Ethan Bolker
Feb 14 '14 at 21:01
Hi I'd still like to be able to edit the page numbers to that they are contiguous (except perhaps for appendices/bibliography's). Also I would like to be able to add a table of contents. Will it be possible to add anything more details than chapter1 and Chapter 2? Ideally I would like to give a breakdown of each chapter?
– Bazman
Feb 14 '14 at 21:12
Is there any reason you need to include them as PDFs. Why not include their source if they are.tex
files? Then you can easily generate the kinds of information you want to include. (You can get the pages anyway - see the documentation for pdfpages on how to do this.)
– cfr
Feb 14 '14 at 21:54
1
I suggest you to usepagestyle{empty}
inTransferPanel.tex
andrv-Nss.tex
and thenincludepdf[pages=-,pagecommand={pagestyle{plain}}]{TransferPanel.pdf}
andincludepdf[pages=-,pagecommand={pagestyle{plain}}]{rv-Nss.pdf}
– karlkoeller
Feb 15 '14 at 6:51
add a comment |
1
Create a new document only withdocumentclass{report}
and that packages suggested there. Then you insert the papers usingpdfpages
tools.
– Sigur
Feb 14 '14 at 20:59
1
You haven't provided much detail about your requirements. You might take a look at thecombine
package: get-software.net/macros/latex/contrib/combine/combine.pdf
– Ethan Bolker
Feb 14 '14 at 21:01
Hi I'd still like to be able to edit the page numbers to that they are contiguous (except perhaps for appendices/bibliography's). Also I would like to be able to add a table of contents. Will it be possible to add anything more details than chapter1 and Chapter 2? Ideally I would like to give a breakdown of each chapter?
– Bazman
Feb 14 '14 at 21:12
Is there any reason you need to include them as PDFs. Why not include their source if they are.tex
files? Then you can easily generate the kinds of information you want to include. (You can get the pages anyway - see the documentation for pdfpages on how to do this.)
– cfr
Feb 14 '14 at 21:54
1
I suggest you to usepagestyle{empty}
inTransferPanel.tex
andrv-Nss.tex
and thenincludepdf[pages=-,pagecommand={pagestyle{plain}}]{TransferPanel.pdf}
andincludepdf[pages=-,pagecommand={pagestyle{plain}}]{rv-Nss.pdf}
– karlkoeller
Feb 15 '14 at 6:51
1
1
Create a new document only with
documentclass{report}
and that packages suggested there. Then you insert the papers using pdfpages
tools.– Sigur
Feb 14 '14 at 20:59
Create a new document only with
documentclass{report}
and that packages suggested there. Then you insert the papers using pdfpages
tools.– Sigur
Feb 14 '14 at 20:59
1
1
You haven't provided much detail about your requirements. You might take a look at the
combine
package: get-software.net/macros/latex/contrib/combine/combine.pdf– Ethan Bolker
Feb 14 '14 at 21:01
You haven't provided much detail about your requirements. You might take a look at the
combine
package: get-software.net/macros/latex/contrib/combine/combine.pdf– Ethan Bolker
Feb 14 '14 at 21:01
Hi I'd still like to be able to edit the page numbers to that they are contiguous (except perhaps for appendices/bibliography's). Also I would like to be able to add a table of contents. Will it be possible to add anything more details than chapter1 and Chapter 2? Ideally I would like to give a breakdown of each chapter?
– Bazman
Feb 14 '14 at 21:12
Hi I'd still like to be able to edit the page numbers to that they are contiguous (except perhaps for appendices/bibliography's). Also I would like to be able to add a table of contents. Will it be possible to add anything more details than chapter1 and Chapter 2? Ideally I would like to give a breakdown of each chapter?
– Bazman
Feb 14 '14 at 21:12
Is there any reason you need to include them as PDFs. Why not include their source if they are
.tex
files? Then you can easily generate the kinds of information you want to include. (You can get the pages anyway - see the documentation for pdfpages on how to do this.)– cfr
Feb 14 '14 at 21:54
Is there any reason you need to include them as PDFs. Why not include their source if they are
.tex
files? Then you can easily generate the kinds of information you want to include. (You can get the pages anyway - see the documentation for pdfpages on how to do this.)– cfr
Feb 14 '14 at 21:54
1
1
I suggest you to use
pagestyle{empty}
in TransferPanel.tex
and rv-Nss.tex
and then includepdf[pages=-,pagecommand={pagestyle{plain}}]{TransferPanel.pdf}
and includepdf[pages=-,pagecommand={pagestyle{plain}}]{rv-Nss.pdf}
– karlkoeller
Feb 15 '14 at 6:51
I suggest you to use
pagestyle{empty}
in TransferPanel.tex
and rv-Nss.tex
and then includepdf[pages=-,pagecommand={pagestyle{plain}}]{TransferPanel.pdf}
and includepdf[pages=-,pagecommand={pagestyle{plain}}]{rv-Nss.pdf}
– karlkoeller
Feb 15 '14 at 6:51
add a comment |
1 Answer
1
active
oldest
votes
This is not a simple question as it could be. The hard part are the hyperlinks and the page numbers.
Aims of my solution
I had to generate proceedings for LNI and had following aims:
- Automatic generation of
- running heads (including page numbers, authors, title of the paper)
- table of contents
- PDF bookmarks
- index
proceedings.bib
listing all papers including page numbers
- Working hyperlinks
- from the TOC to the papers
- within the papers
- from the index to the papers
The solution
I came up with my own solution heavily relying on
koma-script for the layout (TOC, separating pages, ...),
pdfpages to include the papers,
pax to enable hyperlinks
biblatex and xindy to generate the index
The solution is more than 400 lines of LaTeX, which come with other scripts.
The complete result is available at https://gi-ev.github.io/LNI-proceedings/.
Considered alternatives
When designing this solution to typeset complete proceedings, several alternatives were investigated.
Nearly all possible alternatives are listed at http://www.ctan.org/topic/confproc.
In the following, evaluated alternatives are listed and discussed.
confproc
confproc seems to the most suitable alternative.
Compared with this approach, it has following drawbacks:
- The PDFs of the papers do not take a proper heading (page numbers, editor).
- When clicking on a link in one included PDF, the linked PDF is opened instead of jumping to the link.
- Indexing of authors has to be done by manually.
combine
The combine class combines the sources of different LaTeX together.
Since there might be conflicting packages, we wanted to include each PDF on its own.
It seems to be more easy to typeset each paper for itself (LaTeX, Word) and then to combine the resulting PDFs.
proc
proc is a very basic class based on the article class.
No update since 1995.
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%2f160507%2fmerging-several-papers%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
This is not a simple question as it could be. The hard part are the hyperlinks and the page numbers.
Aims of my solution
I had to generate proceedings for LNI and had following aims:
- Automatic generation of
- running heads (including page numbers, authors, title of the paper)
- table of contents
- PDF bookmarks
- index
proceedings.bib
listing all papers including page numbers
- Working hyperlinks
- from the TOC to the papers
- within the papers
- from the index to the papers
The solution
I came up with my own solution heavily relying on
koma-script for the layout (TOC, separating pages, ...),
pdfpages to include the papers,
pax to enable hyperlinks
biblatex and xindy to generate the index
The solution is more than 400 lines of LaTeX, which come with other scripts.
The complete result is available at https://gi-ev.github.io/LNI-proceedings/.
Considered alternatives
When designing this solution to typeset complete proceedings, several alternatives were investigated.
Nearly all possible alternatives are listed at http://www.ctan.org/topic/confproc.
In the following, evaluated alternatives are listed and discussed.
confproc
confproc seems to the most suitable alternative.
Compared with this approach, it has following drawbacks:
- The PDFs of the papers do not take a proper heading (page numbers, editor).
- When clicking on a link in one included PDF, the linked PDF is opened instead of jumping to the link.
- Indexing of authors has to be done by manually.
combine
The combine class combines the sources of different LaTeX together.
Since there might be conflicting packages, we wanted to include each PDF on its own.
It seems to be more easy to typeset each paper for itself (LaTeX, Word) and then to combine the resulting PDFs.
proc
proc is a very basic class based on the article class.
No update since 1995.
add a comment |
This is not a simple question as it could be. The hard part are the hyperlinks and the page numbers.
Aims of my solution
I had to generate proceedings for LNI and had following aims:
- Automatic generation of
- running heads (including page numbers, authors, title of the paper)
- table of contents
- PDF bookmarks
- index
proceedings.bib
listing all papers including page numbers
- Working hyperlinks
- from the TOC to the papers
- within the papers
- from the index to the papers
The solution
I came up with my own solution heavily relying on
koma-script for the layout (TOC, separating pages, ...),
pdfpages to include the papers,
pax to enable hyperlinks
biblatex and xindy to generate the index
The solution is more than 400 lines of LaTeX, which come with other scripts.
The complete result is available at https://gi-ev.github.io/LNI-proceedings/.
Considered alternatives
When designing this solution to typeset complete proceedings, several alternatives were investigated.
Nearly all possible alternatives are listed at http://www.ctan.org/topic/confproc.
In the following, evaluated alternatives are listed and discussed.
confproc
confproc seems to the most suitable alternative.
Compared with this approach, it has following drawbacks:
- The PDFs of the papers do not take a proper heading (page numbers, editor).
- When clicking on a link in one included PDF, the linked PDF is opened instead of jumping to the link.
- Indexing of authors has to be done by manually.
combine
The combine class combines the sources of different LaTeX together.
Since there might be conflicting packages, we wanted to include each PDF on its own.
It seems to be more easy to typeset each paper for itself (LaTeX, Word) and then to combine the resulting PDFs.
proc
proc is a very basic class based on the article class.
No update since 1995.
add a comment |
This is not a simple question as it could be. The hard part are the hyperlinks and the page numbers.
Aims of my solution
I had to generate proceedings for LNI and had following aims:
- Automatic generation of
- running heads (including page numbers, authors, title of the paper)
- table of contents
- PDF bookmarks
- index
proceedings.bib
listing all papers including page numbers
- Working hyperlinks
- from the TOC to the papers
- within the papers
- from the index to the papers
The solution
I came up with my own solution heavily relying on
koma-script for the layout (TOC, separating pages, ...),
pdfpages to include the papers,
pax to enable hyperlinks
biblatex and xindy to generate the index
The solution is more than 400 lines of LaTeX, which come with other scripts.
The complete result is available at https://gi-ev.github.io/LNI-proceedings/.
Considered alternatives
When designing this solution to typeset complete proceedings, several alternatives were investigated.
Nearly all possible alternatives are listed at http://www.ctan.org/topic/confproc.
In the following, evaluated alternatives are listed and discussed.
confproc
confproc seems to the most suitable alternative.
Compared with this approach, it has following drawbacks:
- The PDFs of the papers do not take a proper heading (page numbers, editor).
- When clicking on a link in one included PDF, the linked PDF is opened instead of jumping to the link.
- Indexing of authors has to be done by manually.
combine
The combine class combines the sources of different LaTeX together.
Since there might be conflicting packages, we wanted to include each PDF on its own.
It seems to be more easy to typeset each paper for itself (LaTeX, Word) and then to combine the resulting PDFs.
proc
proc is a very basic class based on the article class.
No update since 1995.
This is not a simple question as it could be. The hard part are the hyperlinks and the page numbers.
Aims of my solution
I had to generate proceedings for LNI and had following aims:
- Automatic generation of
- running heads (including page numbers, authors, title of the paper)
- table of contents
- PDF bookmarks
- index
proceedings.bib
listing all papers including page numbers
- Working hyperlinks
- from the TOC to the papers
- within the papers
- from the index to the papers
The solution
I came up with my own solution heavily relying on
koma-script for the layout (TOC, separating pages, ...),
pdfpages to include the papers,
pax to enable hyperlinks
biblatex and xindy to generate the index
The solution is more than 400 lines of LaTeX, which come with other scripts.
The complete result is available at https://gi-ev.github.io/LNI-proceedings/.
Considered alternatives
When designing this solution to typeset complete proceedings, several alternatives were investigated.
Nearly all possible alternatives are listed at http://www.ctan.org/topic/confproc.
In the following, evaluated alternatives are listed and discussed.
confproc
confproc seems to the most suitable alternative.
Compared with this approach, it has following drawbacks:
- The PDFs of the papers do not take a proper heading (page numbers, editor).
- When clicking on a link in one included PDF, the linked PDF is opened instead of jumping to the link.
- Indexing of authors has to be done by manually.
combine
The combine class combines the sources of different LaTeX together.
Since there might be conflicting packages, we wanted to include each PDF on its own.
It seems to be more easy to typeset each paper for itself (LaTeX, Word) and then to combine the resulting PDFs.
proc
proc is a very basic class based on the article class.
No update since 1995.
answered Feb 10 at 22:30
kopporkoppor
1,5691556
1,5691556
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%2f160507%2fmerging-several-papers%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
1
Create a new document only with
documentclass{report}
and that packages suggested there. Then you insert the papers usingpdfpages
tools.– Sigur
Feb 14 '14 at 20:59
1
You haven't provided much detail about your requirements. You might take a look at the
combine
package: get-software.net/macros/latex/contrib/combine/combine.pdf– Ethan Bolker
Feb 14 '14 at 21:01
Hi I'd still like to be able to edit the page numbers to that they are contiguous (except perhaps for appendices/bibliography's). Also I would like to be able to add a table of contents. Will it be possible to add anything more details than chapter1 and Chapter 2? Ideally I would like to give a breakdown of each chapter?
– Bazman
Feb 14 '14 at 21:12
Is there any reason you need to include them as PDFs. Why not include their source if they are
.tex
files? Then you can easily generate the kinds of information you want to include. (You can get the pages anyway - see the documentation for pdfpages on how to do this.)– cfr
Feb 14 '14 at 21:54
1
I suggest you to use
pagestyle{empty}
inTransferPanel.tex
andrv-Nss.tex
and thenincludepdf[pages=-,pagecommand={pagestyle{plain}}]{TransferPanel.pdf}
andincludepdf[pages=-,pagecommand={pagestyle{plain}}]{rv-Nss.pdf}
– karlkoeller
Feb 15 '14 at 6:51