gnu-emacs-sources
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNU ELPA] Org version 9.6.3


From: ELPA update
Subject: [GNU ELPA] Org version 9.6.3
Date: Sun, 02 Apr 2023 17:05:46 -0400

Version 9.6.3 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:emacs-orgmode@gnu.org.

* 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.

*** =ox-icalendar.el= line ending fix may affect downstream packages

iCalendar export now uses dos-style CRLF ("\r\n") line endings
throughout, as required by the iCalendar specification (RFC 5545).
Previously, the export used an inconsistent mix of dos and unix line
endings.

This might cause errors in external packages that parse output from
ox-icalendar.  In particular, older versions of org-caldav may
encounter issues, and users are advised to update to the most recent
version of org-caldav.  See 
[[https://github.com/dengste/org-caldav/commit/618bf4cdc9be140ca1993901d017b7f18297f1b8][this
 org-caldav commit]] for more information.

** New and changed options
*** ~org-src-block-faces~ now accepts empty string ~""~ as language name

It is now possible to customize face of source blocks without language 
specifier.

: #+begin_src
: Source block with no language
: #+end_src

For example, to set ~highlight~ face, use

#+begin_src emacs-lisp
(setq org-src-fontify-natively t)
(add-to-list 'org-src-block-faces '("" highlight))
#+end_src

*** 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
...
...



reply via email to

[Prev in Thread] Current Thread [Next in Thread]