1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Notionをpdfで出力する際に任意の場所で改ページを入れる方法

Posted at

概要

NotionからpdfをExportができますが、困ったことに表やコードブロックの途中で改ページされてしまって見栄えが悪くなることがあります。
一手間加えてレイアウトを整えたので、以下メモ書きです。

方法

  1. NotionからHTMLで出力する
    この際、Include contentEverythingにするのを忘れずに

  2. 出力したhtmlを好きなエディターで開く

  3. 2行目以降の適当なところに以下のcssを追加する

    @media print {
      .page-break {
        break-before: page;
      }
    }
    

  4. 改ページしたい場所に以下の一行を追加していく

    <div class="page-break"/>
    

  5. 任意のブラウザでhtmlファイルを開き、プリント画面でレイアウトを確認

  6. フッターとヘッダーを除いてpdfで出力

1
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?