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

# Print Group

> Group content together to prevent page breaks or hide content when printing or generating PDFs

## Examples

### Basic Print Group

```liquid theme={null}
{% print_group %}
This content will stay together when printed.
{% /print_group %}
```

### Hidden Print Group

```liquid theme={null}
{% print_group hide=true %}
This content will be hidden when printed.
{% /print_group %}
```

## Attributes

<ResponseField name="hide" type="boolean" default="false">
  Whether to hide this group when printing
</ResponseField>
