0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Re:VIEWで作成した電子書籍(PDF)に裏表紙を付ける

Last updated at Posted at 2020-09-20

##1. はじめに
技術書典9で頒布している電子書籍「Lチカで始めるテスト自動化」を、プリントアウトした書籍の利便性を改善するため裏表紙を付けて改版しました。この記事ではその手順を示します。

##2. 手順
###2.1 裏表紙の画像の作成
幅489ピクセル1、高さ約750ピクセルの裏表紙の画像をPNG形式で用意します。

cover_b.png

###2.2 backcover.texの作成
Re:VIEW(TeX)で拡大縮小をされないようwidthとkeepaspectratioパラメータを指定したTeXファイルを作成します2

backcover.tex
\includefullpagegraphics[width=\textwidth,keepaspectratio]{./images/cover_b.png}

###2.3 config.ymlの編集
pdfmakerセクションでパラメータを与えます。

config.yml
pdfmaker:
  # 裏表紙追加
  backcover: backcover.tex

##3. 参考にさせていただいたWebページ

  1. 幅489ピクセルは、筆者のRe:VIEW環境で拡大縮小なく表示される画像の横幅の値です。

  2. Re:VIEW 4.1以降はuse_original_image_sizeをtrueにして画像ファイルを原寸で作成するのが良いのかもしれません。

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?