Can You Combine Two Pdfs

0 views
Skip to first unread message

Penny Bozic

unread,
Aug 3, 2024, 2:31:44 PM8/3/24
to dayciochoho

Safe mode prevents certain software from opening and completes great checks on startup. More information on starting to safe mode and steps to take after starting there can be found here: How to use safe mode on your Mac - Apple Support

If Preview continues to hang in safe mode, create a new user account (administrator) to see if the behavior happens there. This will let us know if it is system-wide or something within your user account: Change Users & Groups settings on Mac

I have decided that maybe the documents are saved after all but it takes a _long_ time (as in go away, forget you still had it going, etc. - so at least ten minutes or more). I should probably have mentioned that where things get bogged down is where I try to save the combined document.

I have Acrobat Reader DC and Acrobat 2020 downloaded, however I believe I had Acrobat Pro DC before where I was able to select multiple pdfs, right click and then hit the combine files button (quick and simple). Since I got this newer version I don't seem to be able to do this. Any solutions?

I realize this is an old post and you may have figured it out by now, but I was having the same issue and it turns out I was trying to combine files that were in the Dropbox cloud. When I downloaded them to my computer I was able to combine them by right clicking.

I am having the same isses as this person is describing. I just recently upgraded from Adobe 2017 to Adobe 2020 and the "Combine in Adobe PDF" option I used to have when selecting multiple PDF files in Explorer and right clicking on them...is now gone.

This option 100% was in 2017, and it save a step from having to open Adobe and go into the tools, select Combine and then drage the files into Adobe. I really need the ability to right click on files in Explorer, and have that "Combine" option.

I had a similar problem to this a while ago and I was able to fix it by turning off the Enhanced Security setting (Edit, Preferences, Security (Enhanced) and unchecking the button). However, my issue was slightly different - I was able to select "combine" but then Adobe opened without combining them. Also, I'm not an Adobe expert, so can't say if my solution will fix it for you.

I have the same issue. Every week, I have to process many reports from other sources to combine them into one PDF, but that option is now gone. When I select my files to combine, I have to click "show more options" and select "combine file to Acrobat." This is so frustrating because I have many reports to do every Monday.

Same here. Over the weekend Adobe finally started saving preferences, including "turning off" new adobe, but still, I am unable to combine by right clicking. I tried the security tip above, but still will not combine & only "Open" adobe showing old/recent files vs the combining option I selected.

I need any method to merge pages of two PDF files or more simply ( the
requirements are very simple
- input two or more pdf to Alteryx
- merge these inputs to one pdf as output

Any ideas and help, please ??

* This is not for image processing or data mining purposes ( just a simple combination of pdf files pages )


I'd recommend using Python or R and using one of the PDF packages there to combine pages as PDF. The computer vision package is really geared towards getting data out of the .pdf whereas you are looking to keep the .pdf in the .pdf format - and just combine them as is...

I'm not over-engineering the solution but my client is a bank and he needs these PDF files to be merged inside the ETL step in Alteryx itself they put many restrictions due to security issues

* Can't download any python or R library ( Alteryx built-in python and R dependencies are allowed - but No external installation )
* No internet connection to any site on the internet ( Downloading not allowed )
* PDF files are exported every day from power bi as dashboards, then they need all these in one PDF file (simple merging )

Our online PDF combiner is the best solution for combining two or more PDF files for free. We also have useful productivity tools such as a free PDF splitter and PDF compressor. We offer secure and reliable solutions for working with PDF documents with ease.

Like our online PDF merger, our other online PDF conversion tools are free to use. Using our suite of tools, you can rotate PDFs, compress PDFs, split PDFs, and even convert other file types to PDF online free. You can access these tools for free, or purchase a membership for extra benefits.

All PDFs and other files that pass through our PDF combiner and other converters tools are encrypted using a 256-bit Encryption system. We do this to make sure that any information processed through us remains secure at the time of download from threats like hacker attacks. Moreover, we do not share or sell customer information and data with anyone else. Keeping your sensitive data safe is our priority.

When you purchase a membership, you gain instant and unlimited access to our online PDF joiner plus our other PDF converters and tools. Extra perks for membership include unlimited file sizes and the ability to convert multiple files simultaneously. Our membership is a great way to get the most out of our online PDF merger.

Your files will be available on our server for three more hours after you combine PDF files. It will give you ample time to download and save your merged PDFs. Later, our online PDF merge tool automatically deletes any remaining files from our servers to keep your information secure.

Is there a procedure to open multiple PDF documents into LibreOffice, then combine or merge them into a single PDF document? I have a scanner that will do this, but it seems silly to have to print a bunch of PDFs so I can scan them, then merge them. Main issue: while one PDF will have been created in LibreOffice, most of the PDFs to be merged will be musical notation created in another program (Finale).

Click on the first blank page in the series. You will see that there are two columns. All the pages of your document appear in the left-hand column, the Pages pane. The one you are currently working on also appears in the right-hand column, which is called the Workspace.

If the second PDF you want to add to the first is only one page, you can drag in into the blank page in the Workspace. You will probably have to adjust the position of these additions, as they tend to paste a little bit askew.

For your original question. (With the newer LO versions like 5.3 you should be able to import single PDF-pages into your document as vector image. But this is always only the first page od the PDF. So you would have to split your PDF into a lot 1-page-PDFs and then import each one by one.)
Long before this feature came to LO I had the same wish like you: To merge multiple music notation PDFs and LO-Documents. Possibly create a nice TOC of it all.
I ended up with this free project that it essentially a template and uses the free command-line program PDFtk which you have to download and install.

Hello! I am researching affordable, aka free pdf software for my coworkers that could really use a program that allows them to import and extract pages in a document.
Can anyone confirm that the free downloadable Sumatra PDF program would actually include this feature?

Whilst there are ways to script the current page location to a backend editor application, a feature used with LaTeX editors that can add or remove PDF contents on the fly, that is unlikely to suite your intended usage.
SumatraPDF can be used in a commercial setting as a frontend to any enhanced virtual printer, which in turn can add or remove pages as required.

Splitting pages only to image based files can be done most easily by using command line instructions to the Microsoft PDF printer, as discussed in other topics.
in short -print-to "Microsoft Print to PDF" -print-settings %p "%1"
but you will still need to provide a named output file or filename port, for automation you will find a programmable Print Driver as included in some of the above mentioned products is better.

Alternatively if non comercial users wish to extract just the current page we can combine with cpdf (other products are available) using SumatraPDF settings by adding to ExternalViewers
CommandLine = "path to\cpdf.exe" "%1" %p "%1-page-%p"

PDFSAM a simple portable GUI driven java app (from the same stable as the more extensive sejda* version) is one that has a Free Open Source basic version that can easily be called from SumatraPDF. There are limitations to this simplicity, since without adding a more complex page handling mechanism, we are initially constrained to only passing one filename. Expanding to include multiple files in preset workspaces is possible but goes well beyond the scope of this post.

For Merging you will need to dismiss that screen and use the Merge option in the dashboard to find and select the current file along with other(s).
We could work around the limitation by adding a dummy pdf (e.g. cover.pdf)
then delete or use the entry (note the dummy file must exist)
so adding to the above,

For such needs, Sumatra is not the best choice. It is a pdf reader and as I know it can not be used for splitting or editing the pdf files. I personally never used it for such needs. There are a lot of online pdf editors where you can merge or split the pdf pages. For example, I use [url=commercial site removed] you need just to import the pdf file and you can edit it as you want.

Hello, I would like to combine two PDF files (which are already stored externally) into one file by using SAS. I've seen a paper on how to achieve this with Proc Groovy, but the paper does not give all the instructions.

c80f0f1006
Reply all
Reply to author
Forward
0 new messages