Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753348AbdFRXqx (ORCPT ); Sun, 18 Jun 2017 19:46:53 -0400 Received: from ms.lwn.net ([45.79.88.28]:43136 "EHLO ms.lwn.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752992AbdFRXqt (ORCPT ); Sun, 18 Jun 2017 19:46:49 -0400 From: Jonathan Corbet To: linux-doc@vger.kernel.org Cc: linux-kernel@vger.kernel.org, Jim Davis , Mauro Carvalho Chehab , Daniel Vetter , Jonathan Corbet , Mauro Carvalho Chehab Subject: [PATCH 1/5] Docs: Include the Latex "ifthen" package Date: Sun, 18 Jun 2017 17:46:26 -0600 Message-Id: <20170618234630.19964-2-corbet@lwn.net> X-Mailer: git-send-email 2.13.1 In-Reply-To: <20170618234630.19964-1-corbet@lwn.net> References: <20170618234630.19964-1-corbet@lwn.net> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 726 Lines: 24 Otherwise we get PDF build failures when LaTeX refused to acknowledge the existence of \ifthenelse Fixes: 41cff161fe99d1c6a773becc2250a1dc3ac035ff Cc: Mauro Carvalho Chehab Signed-off-by: Jonathan Corbet --- Documentation/conf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Documentation/conf.py b/Documentation/conf.py index bacf9d337c89..93827bc1620f 100644 --- a/Documentation/conf.py +++ b/Documentation/conf.py @@ -273,6 +273,7 @@ latex_elements = { 'preamble': ''' % Adjust margins \\usepackage[margin=0.5in, top=1in, bottom=1in]{geometry} + \\usepackage{ifthen} % Allow generate some pages in landscape \\usepackage{lscape} -- 2.13.1