What you can do is to define several custom rendering options in rsreportserver.config:
<Render>
<Extension Name="PDF (1 column)"
Type="Microsoft.ReportingServices.Rendering.ImageRenderer.PdfReport,
Microsoft.ReportingServices.ImageRendering"/>
<OverrideNames>
<Name Language="en-US">PDF (1 column)</Name>
</OverrideNames>
<Configuration>
<DeviceInfo>
<OutputFormat>PDF</OutputFormat>
<PageHeight>11in</PageHeight>
<PageWidth>8.5in</PageWidth>
<Columns>1<Columns>
</DeviceInfo>
</Configuration>
</Extension>
<Extension Name="PDF (2 columns)"
Type="Microsoft.ReportingServices.Rendering.ImageRenderer.PdfReport,
Microsoft.ReportingServices.ImageRendering"/>
<OverrideNames>
<Name Language="en-US">PDF (2 columns)</Name>
</OverrideNames>
<Configuration>
<DeviceInfo>
<OutputFormat>PDF</OutputFormat>
<PageHeight>11in</PageHeight>
<PageWidth>8.5in</PageWidth>
<Columns>2<Columns>
</DeviceInfo>
</Configuration>
</Extension>
</Render>
Customizing Rendering Extension Parameters in RSReportServer.Config
PDF Device Information Settings
Then, before printing, just choose appropriate rendering format.
However, it will be easier to specify thouse settings in Report url:
http://servername/reportserver?/SampleReports/Employee SalesSummary
&EmployeeID=38&rs:Command=Render&rs:Format=HTML&rc:Columns=1
http://servername/reportserver?/SampleReports/Employee SalesSummary
&EmployeeID=38&rs:Command=Render&rs:Format=HTML&rc:Columns=2
See Specifying Device Information Settings in a URL
You can also create some Main Report and place thouse links there.