From patchwork Sun Jun 18 23:46:26 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jonathan Corbet X-Patchwork-Id: 105787 Delivered-To: patch@linaro.org Received: by 10.140.91.2 with SMTP id y2csp639683qgd; Sun, 18 Jun 2017 16:47:22 -0700 (PDT) X-Received: by 10.99.156.18 with SMTP id f18mr22866056pge.25.1497829642730; Sun, 18 Jun 2017 16:47:22 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1497829642; cv=none; d=google.com; s=arc-20160816; b=yQzAErU+gYzwTde8zrXeLJW79xXfxJ8RAt9A1THdnPH+yjX68UoZ8q6EZEgmwTseHr 4m1iA/B8xjcJmYVZ5oT2qlX+w5S+KGiD5KzpVu9kDO0popfxTuwmVlgBvKbqlJCIQqGh OBkzgyTEs1NCqS9ffvIBI2+SSCgiFYGXvl+aFODUDPufQQAw/+L5ZcCHKGSOyd/DSo3p ccWJWqxehEgbZG5l4/aDvS64PHquq96RGwOt3qOorrP8bYt2Jpco5x1tSmND1a8EYAoe VZ4A6tlgLLwW/+uObWfyAqH0IQb3STXBki/94dBj4wMsubTI1LQP43ZcZTnOO+jDy7g4 9X8Q== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:references:in-reply-to:message-id:date :subject:cc:to:from:arc-authentication-results; bh=/18BW+d018PeZ44TIUPFNPvzZahtIke0GpBn5RlpBXs=; b=0qcMxUoi1RdXIKtVEB3BBoOrIx+VeDIaVWGolIjyBqM48/0pHy8EUG/QmUTI7cehTY L5ss8vnCrLD1QD9BUrVSP/YhQnRdj/1HGkeRlLQY33oDmxfzaoJgPRXskb8DFaR17i1v FQjLD+5CHVmTOauf9VJdHk0svkEhhlL67LO8VNDkCbqym4VWC8gqL8uAD3oZUs6dvjl4 taegrMdwzbJE9c3zbMSkbtsC49cxJLAc9vZciqdJr4deTfsGSzt2xImypvBjra6iG8HZ 4kRm5cBY1lqvdqVDNWfnxvPgs+GygItLPztrd6xr3Pxks7JBR2R+Floh24Rnrwu5j55m YESg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id r7si2540249pgu.284.2017.06.18.16.47.22; Sun, 18 Jun 2017 16:47:22 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753351AbdFRXqx (ORCPT + 25 others); 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 Received: from dt.lwn.net (localhost [127.0.0.1]) by ms.lwn.net (Postfix) with ESMTPA id 8E6322CC; Sun, 18 Jun 2017 23:46:48 +0000 (UTC) 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 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 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(+) -- 2.13.1 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}