Version 9.6.2 of package Org has just been released in GNU ELPA. You can now find it in M-x list-packages RET.
Org describes itself as: ============================================ Outline-based notes management and organizer ============================================ More at https://elpa.gnu.org/packages/org.html ## Summary: This is a distribution of Org Mode, a major mode for keeping notes, authoring documents, computational notebooks, literate programming, maintaining to-do lists, planning projects, and more — in a fast and effective plain text system. Check the [Org Mode website] for more. [Org Mode website] <https://orgmode.org> 1 Install Org ═════════════ Org is part of GNU Emacs: you probably don't need to install it. To install a more recent version, please do it from [GNU ELPA] by running this command: `M-x package-install RET org RET' [GNU ELPA] <https://elpa.gnu.org/packages/org.html> 2 Join the GNU Project ══════════════════════ Org is part of GNU Emacs and GNU Emacs is part of the GNU Operating System, developed by the GNU Project. ## Recent NEWS: ORG NEWS -- history of user-visible changes. -*- mode: org; coding: utf-8 -*- #+STARTUP: overview #+LINK: doc https://orgmode.org/worg/doc.html#%s #+LINK: msg https://list.orgmode.org/%s/ #+LINK: git https://git.savannah.gnu.org/cgit/emacs/org-mode.git/commit/?id=%s Copyright (C) 2012-2023 Free Software Foundation, Inc. See the end of the file for license conditions. Please send Org bug reports to mailto:[email protected]. * Version 9.7 (not released yet) ** Important announcements and breaking changes *** =python-mode.el (MELPA)= support in =ob-python.el= is removed =python-mode.el= support has been removed from =ob-python.el=. The related customization =org-babel-python-mode= has been changed to a constant. If you still want to use python-mode with ob-python, you might consider [[https://gitlab.com/jackkamm/ob-python-mode-mode][ob-python-mode-mode]], where the code to support python-mode has been ported to. ** New and changed options *** New ~org-cite-natbib-export-bibliography~ option defining fallback bibliography style ~natbib~ citation export processor now uses ~org-cite-natbib-export-bibliography~ (defaults to ~unsrtnat~) as a fallback bibliography style if none is specified by user in =#+cite_export:= keyword. Previously, export would fail without explicitly selected bibliography style. *** New escape in ~org-beamer-environments-extra~ for labels in Beamer export The escape =%l= in ~org-beamer-environments-extra~ inserts the label obtained from ~org-beamer--get-label~. This is added to the default environments =theorem=, =definition=, =example=, and =exampleblock= in ~org-beamer-environments-default~. *** ~org-clock-x11idle-program-name~ now defaults to =xprintidle=, when available When =xprintidle= executable is available at =org-clock= load time, it is used as the default value for ~org-clock-x11idle-program-name~. The old =x11idle= default is used as the fallback. =xprintidle= is available as system package in most Linux distributions, unlike ancient =x11idle= that is distributed via WORG. *** New options for the "csl" citation export processor's LaTeX output The ~org-cite-csl-latex-label-separator~ and ~org-cite-csl-latex-label-width-per-char~ options allow the user to control the indentation of entries for labeled bibliography styles when the "csl" citation processor is used for LaTeX export. The indentation length is computed as the sum of ~org-cite-csl-latex-label-separator~ and the maximal label width, for example: #+begin_example indentation length <-------------------------> max. label width separator <---------------><--------> [Doe22] John Doe. A title... [DoeSmithJones19] John Doe, Jane Smith and... [SmithDoe02] Jane Smith and John Doe... #+end_example The maximal label width, in turn, is calculated as the product of ~org-cite-csl-latex-label-width-per-char~ and the maximal label length measured in characters. The ~org-cite-csl-latex-preamble~ option makes it possible to customize the entire LaTeX fragment that the "csl" citation processor injects into the preamble. *** New ~org-latex-listings-src-omit-language~ option for LaTeX export The ~org-latex-listings-src-omit-language~ option allows omitting the =language= parameter in the exported =lstlisting= environment. This is necessary when the =listings= backend delegates listing generation to another package like =fancyvrb= using the following setup in the document header: #+BEGIN_src org ,#+LATEX_HEADER: \RequirePackage{fancyvrb} ,#+LATEX_HEADER: \DefineVerbatimEnvironment{verbatim}{Verbatim}{...whatever...} ,#+LATEX_HEADER: \DefineVerbatimEnvironment{lstlisting}{Verbatim}{...whatever...} #+END_src *** New face: ~org-agenda-calendar-daterange~ The face ~org-agenda-calendar-daterange~ is used to show entries with a date range in the agenda. It inherits from the default face in order to remain backward-compatible. *** New ~org-babel-clojurescript-backend~ option to choose ClojureScript backend ... ...
