branch: elpa commit fad36001b4ff5496965402363bbb4ddd4aaed3aa Author: Arash Esbati <arash.esb...@gmail.com> Commit: Arash Esbati <arash.esb...@gmail.com>
Add new style/pdflscape.el * Makefile.in (STYLESRC): Add new style. * style/pdflscape.el: New file. --- Makefile.in | 3 ++- style/pdflscape.el | 44 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 46 insertions(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index b79eaf4..ed19fa7 100644 --- a/Makefile.in +++ b/Makefile.in @@ -154,7 +154,8 @@ STYLESRC = style/prosper.el \ style/fontenc.el style/Alegreya.el style/gloss-italian.el \ style/newfloat.el style/subcaption.el style/AlegreyaSans.el \ style/hologo.el style/theorem.el style/ntheorem.el \ - style/splitidx.el style/tikz.el style/xcolor.el + style/splitidx.el style/tikz.el style/xcolor.el \ + style/pdflscape.el STYLEELC = $(STYLESRC:.el=.elc) diff --git a/style/pdflscape.el b/style/pdflscape.el new file mode 100644 index 0000000..33bb2ac --- /dev/null +++ b/style/pdflscape.el @@ -0,0 +1,44 @@ +;;; pdflscape.el --- AUCTeX style for `pdflscape.sty' (v0.11) + +;; Copyright (C) 2016 Free Software Foundation, Inc. + +;; Author: Arash Esbati <arash.esbati'at'gmail.com> +;; Maintainer: auctex-de...@gnu.org +;; Created: 2016-07-31 +;; Keywords: tex + +;; This file is part of AUCTeX. + +;; AUCTeX is free software; you can redistribute it and/or modify it +;; under the terms of the GNU General Public License as published by +;; the Free Software Foundation; either version 3, or (at your option) +;; any later version. + +;; AUCTeX is distributed in the hope that it will be useful, but +;; WITHOUT ANY WARRANTY; without even the implied warranty of +;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +;; General Public License for more details. + +;; You should have received a copy of the GNU General Public License +;; along with AUCTeX; see the file COPYING. If not, write to the Free +;; Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +;; 02110-1301, USA. + +;;; Commentary: + +;; This file adds support for `pdflscape.sty' (v0.11) from 2016/05/14. +;; `pdflscape.sty' is part of TeXLive. + +;;; Code: + +(TeX-add-style-hook + "pdflscape" + (lambda () + ;; Load lscape.el and we are done + (TeX-run-style-hooks "lscape")) + LaTeX-dialect) + +(defvar LaTeX-pdflscape-package-options nil + "Package options for the pdflscape package.") + +;;; pdflscape.el ends here