概要
Asciidoctor
でページ罫線を余白に書く方法について書く。
Microsoft’s Office の Word には ページ罫線
と ヘッダーを囲む
の機能がある。
この機能を代替するためのスクリプトを書いた。
デモ
結果は次のようになる。

使用方法
このスクリプトの使用方法は リポジトリ: Shumpei-Tanaka/AsciiDoc-BorderInMargin を参照。
スクリプト
最新版は リポジトリ: Shumpei-Tanaka/AsciiDoc-BorderInMargin を参照。
write_header_border
はヘッダー周辺を書く関数。
Asciidoctor
のスタイル設定から以下の値を使用して囲む範囲を計算する。
- header margin
- herder column ratios
write_mergin_border
はページ全体の境界を余白に書く関数。
margi の値はスタイル設定から引っ張っている。
class PDFConverterCustomTitlePage < (Asciidoctor::Converter.for 'pdf')
'pdf'
register_for def ink_title_page(doc)
super
line_offset: 5, line_width: 1
write_mergin_border line_offset: 5, line_width: 1
write_header_border end
def ink_running_content(*)
line_offset: 5, line_width: 1
write_mergin_border line_offset: 5, line_width: 1
write_header_border super
end
end
def write_header_border(line_offset:, line_width:)
= page_margin
_m_t, m_r, m_b, m_l = theme.header_height
header_height = theme.header_columns
header_columns = theme.header_margin
mh_t, mh_r, _mh_b, mh_l
= header_columns.delete('^0-9,.').split(',').map(&:to_f)
columns
= columns.sum
o_sum = 0
sum = []
ps .pop
columns.each do |col|
columns+= col
sum << sum
ps end
= ps.map { |col| col / o_sum }
ps
= -(page_height - (mh_t - line_offset) - m_b)
p_t = -(page_height - (mh_t + line_offset) - m_b - header_height)
p_b = -line_offset
p_l = page_width - (m_r - line_offset) - m_l
p_r
= page_width - mh_r - mh_l
t_width
= ps.map do |i|
p_vs * i - m_l + mh_l
t_width end
0
move_cursor_to '000000', line_width: line_width, at: p_t, left_projection: line_offset,
stroke_horizontal_rule right_projection: -line_offset
'000000', line_width: line_width, at: p_b, left_projection: line_offset,
stroke_horizontal_rule right_projection: -line_offset
.each do |p_v|
p_vs-p_b, -p_t, at: p_v)
stroke_vertical_line(end
-p_b, -p_t, at: p_l)
stroke_vertical_line(-p_b, -p_t, at: p_r)
stroke_vertical_line(end
def write_mergin_border(line_offset:, line_width:)
= page_margin
m_t, m_r, m_b, m_l
= -(page_height - (m_t - line_offset) - m_b)
p_t = line_offset
p_b = -line_offset
p_l = page_width - (m_r - line_offset) - m_l
p_r
0
move_cursor_to '000000', line_width: line_width, at: p_t, left_projection: line_offset,
stroke_horizontal_rule right_projection: -line_offset
'000000', line_width: line_width, at: p_b, left_projection: line_offset,
stroke_horizontal_rule right_projection: -line_offset
'000000', line_width: line_width, at: p_l, top_projection: line_offset,
stroke_vertical_rule bottom_projection: line_offset
'000000', line_width: line_width, at: p_r, top_projection: line_offset,
stroke_vertical_rule bottom_projection: line_offset
end
付録
Microsoft’s Office の Word で ページ罫線
と ヘッダーを囲む
を設定する方法。
ページ罫線
は次のように設定できる
- 開く:
デザイン
→ページ罫線
- 押す:
囲む(X)
- 押す:
OK

設定すると次のようになる。

ヘッダーを囲む
は次のように設定する。
- 開く:
デザイン
→ページ罫線
- 開く:
オプション
基準
を本文
に設定する- チェックを入れる:
ヘッダーを囲む

設定すると次のようになる。
