From a013f6616bc50b9e89639d811dc77f62b5afb58d Mon Sep 17 00:00:00 2001 From: Masamichi Hosoda Date: Mon, 6 Mar 2017 21:04:46 +0900 Subject: [PATCH] Issue 5082/3: Add comment to build Japanese PDF documents Building Japanese PDF documents requires Japanese fonts and some packages. Unfortunately, most developers do not have them. Therefore, Japanese PDF is not built by default. This commit adds a comment which describes the requirements to build Japanese PDF documents for the developer who wants to build them. --- Documentation/ja/GNUmakefile | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/Documentation/ja/GNUmakefile b/Documentation/ja/GNUmakefile index 54c1212969..090de5252a 100644 --- a/Documentation/ja/GNUmakefile +++ b/Documentation/ja/GNUmakefile @@ -2,6 +2,33 @@ ISOLANG = ja depth = ../.. STEPMAKE_TEMPLATES = documentation texinfo LOCALSTEPMAKE_TEMPLATES = lilypond ly doc-i18n-root + +# +# By default, Japanese PDF documents are not built. +# It requires some fonts and packages. +# Unfortunately, most developers do not have them. +# +# For building Japanese PDF documents the following is required. +# +# XeTeX 0.9998+ (TeX Live 2012+) +# The modern TeX engine used for LilyPond's PDF documents. +# It might be contained in texlive-xetex package. +# +# IPAex fonts +# Japanese fonts. +# It might be contained in texlive-lang-japanese package. +# +# zhspacing +# Spacing for mixed CJK-English documents in XeTeX. +# It might be contained in texlive-lang-chinese package. +# (This package is for Chinese, but can also be used for Japanese.) +# +# If you want to build Japanese PDF documents, +# please install these packages and comment out `NO_PDF_FILES = 1' +# before `make doc'. +# Note: Even if Japanese PDF documents have been built, +# links from HTML documents to Japanese PDF will not be created. +# NO_PDF_FILES = 1 include $(depth)/make/stepmake.make -- 2.39.5