> ## Documentation Index
> Fetch the complete documentation index at: https://mintlify.com/mintlify/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# PDF exports

> Export your documentation as a single PDF file.

export const DownloadPDFButton = () => {
  return <a download="mintlify-example.pdf" href="/files/mint-full-docs.pdf" className="border border-zinc-200 dark:border-zinc-800 hover:bg-zinc-100 dark:hover:bg-zinc-700 transition-colors w-fit text-sm font-medium flex items-center gap-2 rounded-lg px-3.5 py-1.5 not-prose">
            <Icon icon="download" size={16} />
            View Example PDF
        </a>;
};

<Info>
  PDF exports are available on [Enterprise plans](https://mintlify.com/pricing).
</Info>

You can export your docs as a single PDF file for offline viewing. The PDF contains all the content in the docs, including images and links, and a navigable table of contents.

## Exporting a PDF

<Steps>
  <Step title="Navigate to General settings">
    Navigate to the [General](https://dashboard.mintlify.com/settings/deployment/general) page in the Project Settings section of your dashboard.
  </Step>

  <Step title="Start export">
    Select the **Export all content** button.
  </Step>

  <Step title="Customize export options">
    Optionally, customize the export options:

    * **Page format**: Choose the page size of the PDF.
    * **Scale percentage**: Adjust the scale of the PDF.
    * **Include footer**: Include a footer with the page number and total pages.
  </Step>

  <Step title="Export">
    Select **Export** to start the export process.
  </Step>

  <Step title="Download">
    Once the export is complete, you receive an email with a download link. Click the download link to download the PDF file.
  </Step>
</Steps>

<DownloadPDFButton />
