Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

How do I set up the export to pdf?

Diana Weaver
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
February 14, 2019

I have some documents in confluence that users have attempted to export to pdf, but the layout is not working. I found documentation on how to update the space pdf layout and stylesheet, but that is not working. Does anyone have any recommendations?

2 answers

0 votes
Nils Bier _K15t_
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 14, 2019

Hi @Diana Weaver,

As @Jonathan Smith (thanks :-)) already mentioned, with our Scroll PDF Exporter you can create your PDF templates easily using a graphical template designer - there's no need to write a single line of CSS, but it still gives you complete flexibility over how the template looks like.

Please feel free to check out our short Get Started Video for Scroll PDF Exporter, or reach out to us via support@k15t.com if you have any additional questions regarding the app (as with all Marketplace apps, you can trial Scroll PDF Exporter for free for 30 days).

Best,
Nils

Jonathan Smith
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 15, 2019

@Nils Bier _K15t_ 

  I still want the option to disable the algorithm. 

:)

- Jon

Like Nils Bier _K15t_ likes this
0 votes
Jonathan Smith
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 14, 2019

Hi @Diana Weaver

  Not sure if add-ons is an option for you, but Scroll PDF Exporter is a nice add-on which allows you to create PDF export templates.

  • Coding is not required with this tool.
Jonathan Smith
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 14, 2019

@Diana Weaver

  For your global PDF stylesheet in General Configuration, I have added this in our UAT environment. It adds the page title and page numbers to the standard PDF export. 

Hoping others can share their code as well :)

 

  1.  .pagetitle h1 {  
  2.     position: running(runningheader);  
  3.     font-family: ConfluenceInstalledFont, Helvetica, Arial, sans-serif;  
  4.     font-size: 10pt;  
  5. }   
  6. @page:first {  
  7.     /* Header - Page Title */  
  8.     @top-left {  
  9.         content: element(runningheader);  
  10.     }  
  11. }   
  12. @page {  
  13.     /* Footer - Page Title */  
  14.     @bottom-left {  
  15.         content: element(runningheader);  
  16.     }  
  17.     /* Footer - Page Numbers */  
  18.     @bottom-right {  
  19.         content: "Page " counter(page) " of " counter(pages);  
  20.         font-family: ConfluenceInstalledFont, Helvetica, Arial, sans-serif;  
  21.         font-size: 10pt;  
  22.     }  
  23.     /* Generate border between footer and page content */  
  24.     border-bottom: 1px solid black;  
  25. }  
  26.           

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events