From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from tama500.ecl.ntt.co.jp (tama500.ecl.ntt.co.jp [129.60.39.148]) by dpdk.org (Postfix) with ESMTP id 89E2D4CAD for ; Fri, 31 Aug 2018 11:14:54 +0200 (CEST) Received: from vc1.ecl.ntt.co.jp (vc1.ecl.ntt.co.jp [129.60.86.153]) by tama500.ecl.ntt.co.jp (8.13.8/8.13.8) with ESMTP id w7V9Err5011422; Fri, 31 Aug 2018 18:14:53 +0900 Received: from vc1.ecl.ntt.co.jp (localhost [127.0.0.1]) by vc1.ecl.ntt.co.jp (Postfix) with ESMTP id 7C54FEA8182; Fri, 31 Aug 2018 18:14:53 +0900 (JST) Received: from localhost.localdomain (unknown [129.60.13.51]) by vc1.ecl.ntt.co.jp (Postfix) with ESMTP id 65A7DEA8115; Fri, 31 Aug 2018 18:14:53 +0900 (JST) From: ogawa.yasufumi@lab.ntt.co.jp To: spp@dpdk.org, ferruh.yigit@intel.com Cc: Yasufumi Ogawa Date: Fri, 31 Aug 2018 18:14:37 +0900 Message-Id: <20180831091441.39055-8-ogawa.yasufumi@lab.ntt.co.jp> X-Mailer: git-send-email 2.13.1 In-Reply-To: <20180831091441.39055-1-ogawa.yasufumi@lab.ntt.co.jp> References: <20180831091441.39055-1-ogawa.yasufumi@lab.ntt.co.jp> X-TM-AS-MML: disable Subject: [spp] [PATCH 07/11] docs: add sphinx config to PDF X-BeenThere: spp@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: Soft Patch Panel List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 31 Aug 2018 09:14:55 -0000 From: Yasufumi Ogawa To activate compile of PDF document, add attributes for latex to 'conf.py' of sphinx. Signed-off-by: Yasufumi Ogawa --- docs/guides/conf.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/guides/conf.py b/docs/guides/conf.py index db5ddfc..26b1f19 100644 --- a/docs/guides/conf.py +++ b/docs/guides/conf.py @@ -123,11 +123,12 @@ htmlhelp_basename = 'SoftPatchPaneldoc' latex_elements = { # The paper size ('letterpaper' or 'a4paper'). # - # 'papersize': 'letterpaper', + 'papersize': 'letterpaper', + # 'papersize': 'a4paper', # The font size ('10pt', '11pt' or '12pt'). # - # 'pointsize': '10pt', + 'pointsize': '11pt', # Additional stuff for the LaTeX preamble. # @@ -135,7 +136,7 @@ latex_elements = { # Latex figure (float) alignment # - # 'figure_align': 'htbp', + 'figure_align': 'htbp', } # Grouping the document tree into LaTeX files. List of tuples -- 2.7.4