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

# PaperFormat

Defines standard paper sizes for PDF generation. Both metric (A0-A6) and imperial (Letter, Legal, etc.) sizes are available.

## Definition

```graphql theme={null}
enum PaperFormat {
  LETTER
  LEGAL
  TABLOID
  LEDGER
  A0
  A1
  A2
  A3
  A4
  A5
  A6
}
```

## Values

### `LETTER`

Standard US Letter size (8.5 x 11 inches, or 215.9 x 279.4 mm).

### `LEGAL`

US Legal size (8.5 x 14 inches, or 215.9 x 355.6 mm).

### `TABLOID`

Tabloid size (11 x 17 inches, or 279.4 x 431.8 mm).

### `LEDGER`

Ledger size (17 x 11 inches, or 431.8 x 279.4 mm).

### `A0`

A0 paper size (841 x 1189 mm).

### `A1`

A1 paper size (594 x 841 mm).

### `A2`

A2 paper size (420 x 594 mm).

### `A3`

A3 paper size (297 x 420 mm).

### `A4`

A4 paper size (210 x 297 mm). Commonly used international standard.

### `A5`

A5 paper size (148 x 210 mm).

### `A6`

A6 paper size (105 x 148 mm).
