Merging several papersHow to merge several tex files so that they have one table of contents/List of tables...
Algorithm to convert a fixed-length string to the smallest possible collision-free representation?
Set and print content of environment variable in cmd.exe subshell?
Look through the portal of every day
Who deserves to be first and second author? PhD student who collected data, research associate who wrote the paper or supervisor?
Is having access to past exams cheating and, if yes, could it be proven just by a good grade?
How much attack damage does the AC boost from a shield prevent on average?
How to create a hard link to an inode (ext4)?
Time travel short story where dinosaur doesn't taste like chicken
How do I deal with a powergamer in a game full of beginners in a school club?
Is there a window switcher for GNOME that shows the actual window?
Peter's Strange Word
Do I really need to have a scientific explanation for my premise?
Reverse string, can I make it faster?
Making a sword in the stone, in a medieval world without magic
How did the power source of Mar-Vell's aircraft end up with her?
How do I express some one as a black person?
Can someone explain what is being said here in color publishing in the American Mathematical Monthly?
Why does Deadpool say "You're welcome, Canada," after shooting Ryan Reynolds in the end credits?
Why doesn't this Google Translate ad use the word "Translation" instead of "Translate"?
Should I tell my boss the work he did was worthless
Adding an additional "order by" column gives me a much worse plan
How did Alan Turing break the enigma code using the hint given by the lady in the bar?
Is there an elementary proof that there are infinitely many primes that are *not* completely split in an abelian extension?
What to do when during a meeting client people start to fight (even physically) with each others?
Merging several papers
How to merge several tex files so that they have one table of contents/List of tables & figuresMerging many tex-documents together?what TeX package(s) should I use for a Church BulletinMerging many tex-documents together?ConTeXt: Change the default text colour for entire documentHow to merge several tex files so that they have one table of contents/List of tables & figuresNeed to produce one tex document in multiple volumes
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
bumped to the homepage by Community♦ 6 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 |
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
bumped to the homepage by Community♦ 6 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
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
4492817
4492817
bumped to the homepage by Community♦ 6 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♦ 6 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
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,5771557
1,5771557
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