Plotting multiple layouts to one pdf

Plotting multiple layouts to one pdf

Anonymous
Not applicable
27,350 Views
7 Replies
Message 1 of 8

Plotting multiple layouts to one pdf

Anonymous
Not applicable

Hello

 

 

I've been using AutoCad for 6years now and i've recently ran into a problem.

My instructor requires that i plot all my drawings to pdf, but to a single pdf file instead of seperate files with one drawing.

I've tried alot of things in autocad already, batch plotting etc but it refuses to plot them all into one file.

Does anyone have a solution for this?

 

Thanks in advance

 

John

 

0 Likes
Accepted solutions (1)
27,351 Views
7 Replies
Replies (7)
Message 2 of 8

rkmcswain
Mentor
Mentor

Presuming that you are using the PUBLISH command, click on Publish Options and then under "General DWF/PDF options", set the Type as shown here.

 

 

pubopt.png

 

If you are publishing from Sheet Set Manager, the process is similar.

 

 

R.K. McSwain     | CADpanacea | on twitter
Message 3 of 8

Anonymous
Not applicable

This is what i've done before, but it simply plots them all separately.

0 Likes
Message 4 of 8

Anonymous
Not applicable
Accepted solution

***UPDATE***

 

I simply had ctrl-a and select all my layouts together in the publish window. Now it plots into one pdf.

Sorry for the waste of time Smiley Frustrated

Message 5 of 8

Anonymous
Not applicable

not a waste of time... my professor told us the only dumb question is the one not asked... so not only did you have a problem that I am sure others had..but you also provided the solution that could help others...  so kudos to you...  

Message 6 of 8

Anonymous
Not applicable

Can someone help.

Is there similar command for ACAD 2007?

 

Thanks in advance

 

0 Likes
Message 7 of 8

huongvt85
Participant
Participant

You can find here, a very good printing method

https://youtu.be/K0NQwVykKPM

0 Likes
Message 8 of 8

balachandar_vVF4MG
Participant
Participant

I need the script file to plot/publish autocad drawing layout in multiple pages pdf file
For plot it worked but for only one layout ... i need to export multiple layout in different pages in single pdf file
for publish it came like {publish.scr} cant find the file 
can anyone help me with this ?

// for plot 

(setq CurrDwgName (getvar "dwgname"))
(setq Fname (substr CurrDwgName 1 (- (strlen CurrDwgName) 4)))
(setq name (strcat (getvar "DWGPREFIX") Fname ".pdf"))
;Command:
-PLOT
;Detailed plot configuration? [Yes/No] <No>:
YES
;Enter a layout name or [?] <Model>:
Model
;Enter a layout name or [?] <Layout1>:
Layout1
;Enter a layout name or [?] <Layout2>:
Layout2
;Enter an output device name or [?] <Microsoft Print to PDF>:
DWG To PDF.pc3
;Enter paper size or [?] <ISO full bleed A4 (210.00 x 297.00 MM)>:
ISO expand A3 (420.00 x 297.00 MM)
;Enter paper units [Inches/Millimeters] <Inches>:
Millimeters
;Enter drawing orientation [Portrait/Landscape] <Portrait>:
Landscape
;Plot upside down? [Yes/No] <No>:
No
;Enter plot area [Display/Extents/Limits/View/Window] <Display>:
Extents
;Enter plot scale (Plotted Millimeters=Drawing Units) or [Fit] <Fit>:
Fit
;Enter plot offset (x,y) or [Center] <0.00,0.00>:
Center
;Plot with plot styles? [Yes/No] <Yes>:
Yes
;Enter plot style table name or [?] (enter . for none) <>:
monochrome.ctb
;Plot with lineweights? [Yes/No] <Yes>:
No
;Enter shade plot setting [As displayed/legacy Wireframe/legacy Hidden/Visual styles/Rendered] <As displayed>:

;Enter file name <D:\FtpRoot\WorkerShared\w11i1j11\acad_test-Model.pdf>:
!name
;Save changes to page setup [Yes/No]? <N>
No
;Proceed with plot [Yes/No] <Y>:
Yes



// this is for the publish

; Publish all layouts to a single PDF in folder with spaces

-PUBLISH
ALL
Y
DWG To PDF.pc3
ISO expand A3 (420.00 x 297.00 MM)
Millimeters
Landscape
Fit
Yes
monochrome.ctb
No
As displayed
"C:\Users\Admin-User\Desktop\Test model\acad_test.pdf" ;
Yes

0 Likes