To install this package, run in Emacs:
M-x package-install RET org RET
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 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
Org is part of GNU Emacs and GNU Emacs is part of the GNU Operating System, developed by the GNU Project.
If you are the author of an awesome program and want to join us in writing Free (libre) Software, please consider making it an official GNU program and become a GNU Maintainer. Instructions on how to do this are here http://www.gnu.org/help/evaluation.
Don't have a program to contribute? Look at all the other ways to help: https://www.gnu.org/help/help.html.
And to learn more about Free (libre) Software in general, please read and share this page: https://gnu.org/philosophy/free-sw.html
Org-mode is published under the GNU GPLv3 license or any later version, the same as GNU Emacs.
Org-mode 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 of the License, or (at your option) any later version.
GNU Emacs 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 Org mode. If not, see https://www.gnu.org/licenses/.
org-9.6.1.0.20230202.203200.tar.lz | 2023-Feb-02 | 1.55 MiB |
org-9.6.1.0.20230201.120438.tar.lz | 2023-Feb-01 | 1.55 MiB |
org-9.6.1.0.20230131.212106.tar.lz | 2023-Jan-31 | 1.55 MiB |
org-9.6.1.0.20230127.113051.tar.lz | 2023-Jan-28 | 1.55 MiB |
org-9.6.0.20230107.121518.tar.lz | 2023-Jan-07 | 1.55 MiB |
org-9.6pre0.20221127.84844.tar.lz | 2022-Nov-27 | 1.54 MiB |
org-9.6snapshot0.20220922.64837.tar.lz | 2022-Sep-22 | 1.53 MiB |
org-9.5.0.20210929.134035.tar.lz | 2021-Sep-29 | 1.44 MiB |
org-0.20171225.tar.lz | 2017-Dec-25 | 1.17 MiB |
org-0.20121231.tar.lz | 2012-Dec-31 | 1017 KiB |
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. ** New and changed options *** ~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 features *** Datetree structure headlines can now be complex TODO state, priority, tags, statistics cookies, and COMMENT keywords are allowed in the tree structure. * Version 9.6 ** Important announcements and breaking changes *** =python-mode.el (MELPA)= support in =ob-python.el= is deprecated We no longer aim to support third-party =python-mode.el= implementation of Python REPL. Only the built-in =python.el= will be supported from now on. We still keep the old, partially broken, code in =ob-python.el= for the time being. It will be removed in the next release. See https://orgmode.org/list/87r0yk7bx8.fsf@localhost for more details. *** Element cache is enabled by default and works for headings The old element cache code has been refactored. Emacs does not hang ... ...