add lisp packages
This commit is contained in:
@@ -0,0 +1,171 @@
|
||||
#+TITLE: Notes on documenting Org
|
||||
#+AUTHOR: Phil Rooke
|
||||
#+EMAIL: phil@yax.org.uk
|
||||
#+LANGUAGE: en
|
||||
#+STARTUP: showall
|
||||
#+TEXT: Notes to myself justifying the conventions and standards in my
|
||||
#+TEXT: set of recent doc patches.
|
||||
#+OPTIONS: H:3 num:t toc:t \n:nil @:t ::t |:t ^:nil *:t TeX:t
|
||||
|
||||
* Background
|
||||
|
||||
I think it is an express objective of Carsten's that Org should be
|
||||
readily accessible to all users of Emacs and not just those who might
|
||||
happen to read or hack on the code of this particular package. To
|
||||
that end significant effort has been made and continues to be made by
|
||||
the Org community to ensure that high quality, user focused,
|
||||
documentation is readily available to everyone.
|
||||
|
||||
Org itself contains a comprehensive guide to using all aspects of the
|
||||
system, how to extend it yourself, and highlights some of the many
|
||||
burgeoning number of add-on packages that others are contributing.
|
||||
This guide, [[info:org:Top][The Org Manual]], concentrates on the facts of working with
|
||||
the system. Supplementing this, the [[Org web pages]] contain pointers to
|
||||
many tutorials and how-to's which capture much of spirit and
|
||||
imagination people show when using Org as a basis for building broader
|
||||
organizational systems that help them help themselves.
|
||||
|
||||
I use Org, but it is a big system, and so I happen to think that
|
||||
improving the consistency, clarity and accuracy of Org documents helps
|
||||
both me and all other users of the system. In support of this and by
|
||||
way of justification and clarification, this short note attempts to
|
||||
capture some of the existing guidelines and standards that have been
|
||||
used in the patches I am submitting and, which I hope, may be adopted
|
||||
by others when making their own contributions.
|
||||
|
||||
* Referencing systems, packages, modes and much else
|
||||
|
||||
Originally Org was a single mode and there was no ambiguity about what
|
||||
Org mode could refer to. Things have changed rapidly though and it
|
||||
seems that Carsten now thinks of Org as the system encompassing the
|
||||
major mode, some minor modes, and an increasing number of additional
|
||||
packages and plug-ins that build on the core Org functionality. It is
|
||||
really hard to find a consistent way to refer to all these things, but
|
||||
what I am trying to do is follow these guidelines (which are not
|
||||
perfect, merely a start):
|
||||
|
||||
- In general write "Org" as much as possible and, in particular, when
|
||||
discussing concepts, features and functions that are generally
|
||||
applicable to Org as a whole.
|
||||
|
||||
- Be more specific and write, for example, "the Orgtbl minor mode"
|
||||
when referring to something unique to that feature. It may be, for
|
||||
example, a command is only available when you are actually editing a
|
||||
file using just that mode, add-on package or plug-in.
|
||||
|
||||
- Prefer "Org mode" to "Org-mode" or "org-mode". This is simply
|
||||
because it reflects an existing convention in [[info:emacs:Top][The Emacs Manual]] which
|
||||
consistently documents mode names in this form - "Text mode",
|
||||
"Outline mode", "Mail mode", etc.
|
||||
|
||||
- Likewise refer, if at all possible, to "Org file or "Org buffer"
|
||||
meaning with, great generality, any file or buffer which requires
|
||||
use of some part of Org to edit it properly.
|
||||
|
||||
- Org uses "org-..." to ring fence a name space for itself in the
|
||||
Emacs code base. This is obviously retained in code snippets.
|
||||
|
||||
* Other Org specific conventions
|
||||
|
||||
Unless there is a good reason to do otherwise, then try and adopt the
|
||||
following conventions. (I think all can be justified by reference to
|
||||
Carsten or precedent in other significant Emacs documentation, unless
|
||||
I have made them up of course).
|
||||
|
||||
- Org has *lots* of commands and a /lot/ of them take prefix arguments of
|
||||
one sort or another. Write in full "prefix argument", "numeric
|
||||
prefix argument" or, maybe, "a numeric prefix argument N" when you
|
||||
want to refer to the argument again.
|
||||
|
||||
- Org lives in various states of harmony and discord with other Emacs
|
||||
packages. Try and write the names of those packages as their
|
||||
authors and maintainers write them. So it should be (I think) BBDB,
|
||||
MH-E, Rmail, VM, Gnus, CDLaTeX etc.
|
||||
|
||||
- TODO keywords, whether Org or user defined, are written in capitals.
|
||||
|
||||
- Built-in tags with a special meaning (e.g. ARCHIVE) are written in
|
||||
uppercase. User defined tags (e.g. boss, home) are written in
|
||||
lowercase.
|
||||
|
||||
- Built-in properties (e.g. PRIORITY) are written in uppercase. User
|
||||
defined properties (e.g. Release) are written in lowercase.
|
||||
|
||||
- Entries in the concept index are normally all lower case unless some
|
||||
other rule dictates otherwise.
|
||||
|
||||
* org-manual.org specific conventions
|
||||
|
||||
Org git repository comes with an .org version of the manual in the
|
||||
=doc/= directory. Here are indications that are specific to this
|
||||
version of the manual.
|
||||
|
||||
- Five of the standard Texinfo indexes are used in the Org manual:
|
||||
|
||||
+ #+cindex: :: concept index, for general concepts
|
||||
+ #+findex: :: function index, for function and function-like names
|
||||
+ #+kindex: :: keystroke index, for keyboard commands
|
||||
+ #+pindex: :: program index, for names of programs
|
||||
+ #+vindex: :: variable index, for variable names
|
||||
|
||||
- Use fixed-width area for one-line examples.
|
||||
|
||||
- Use example blocks for Org syntax instead of "begin_src org".
|
||||
|
||||
- Internal links to headlines always start with a star.
|
||||
|
||||
- Tags, node properties, are not shown with the surrounding colons.
|
||||
|
||||
- When to use = ... = or ~ ... ~ markup:
|
||||
|
||||
+ files or extensions use = ... =,
|
||||
+ anything that is meant to be written in the Org buffer uses = ... =,
|
||||
+ any meaningful token in a programming language uses ~ ... ~.
|
||||
|
||||
* Miscellaneous
|
||||
|
||||
- Only two of the standard Texinfo indexes are used; those for
|
||||
concepts and keys. This has some implications:
|
||||
|
||||
+ The preference is to document commands by key rather than by name
|
||||
|
||||
+ Texinfo commands such as @var and @defoption are not used. The
|
||||
preference for this type of thing is that the user browses the
|
||||
customize groups. If you want or need to refer to, say, a
|
||||
variable then document it as "the variable
|
||||
@code{org-startup-folded}"
|
||||
|
||||
+ Entries in the concept index are normally all lower case unless
|
||||
some other rule dictates otherwise.
|
||||
|
||||
- Org documentation is written in American English, which is somewhat
|
||||
foreign as far as I am concerned, but live with it anyway.
|
||||
|
||||
- Org uses a number of compound words, words that I wouldn't
|
||||
necessarily run together. Instead of worrying about whether these
|
||||
should be separate, hyphenated or compound I have simply gone with
|
||||
the majority case as originally written and then tried to make sure
|
||||
the spell checker knows what this chosen standard should be so that
|
||||
I do not worry about it anymore.
|
||||
|
||||
- I have run a spell checker periodically. Aspell works well and has
|
||||
a useful Texinfo filter (although, annoyingly, I cannot make this
|
||||
work with ispell.el and so I run it from the command line). I have
|
||||
an Org specific Aspell configuration file (which sets an American
|
||||
dictionary, rules for compound words etc) and which, along with the
|
||||
associated word and replacement files, captures some of the more
|
||||
detailed and somewhat arbitrary rules I have used.
|
||||
|
||||
- Org has really low entry barriers. Requirements seem simply to be:
|
||||
|
||||
+ You can use Text mode or, pretty much, any derivative of it
|
||||
+ You have some motivation to become slightly better organized.
|
||||
|
||||
Therefore, try and write the documentation so that it is relevant
|
||||
to, and can be read by such a diverse audience.
|
||||
|
||||
# Local variables:
|
||||
# mode: org
|
||||
# ispell-local-dictionary: "en_US-w_accents"
|
||||
# ispell-local-pdict: "./.aspell.org.pws"
|
||||
# End:
|
||||
@@ -0,0 +1,95 @@
|
||||
.SUFFIXES: # we don't need default suffix rules
|
||||
ifeq ($(MAKELEVEL), 0)
|
||||
$(error This make needs to be started as a sub-make from the toplevel directory.)
|
||||
endif
|
||||
.PHONY: all info html pdf card manual guide install \
|
||||
clean cleanall clean-install
|
||||
|
||||
all: $(ORG_MAKE_DOC)
|
||||
|
||||
info: org orgguide
|
||||
|
||||
html: org.html
|
||||
|
||||
pdf: org.pdf orgguide.pdf
|
||||
|
||||
card: orgcard.pdf orgcard_letter.pdf orgguide.pdf
|
||||
|
||||
ifneq ($(SERVERMK),)
|
||||
manual guide::
|
||||
-$(RMR) $@
|
||||
$(MKDIR) $@
|
||||
manual:: org.texi org-version.inc
|
||||
$(TEXI2HTML) -o $@ $<
|
||||
../mk/mansplit.pl $@/*
|
||||
guide:: orgguide.texi org-version.inc
|
||||
$(TEXI2HTML) -o $@ $<
|
||||
../mk/guidesplit.pl $@/*
|
||||
endif
|
||||
|
||||
org.texi orgguide.texi: org-manual.org org-guide.org
|
||||
$(BATCH) \
|
||||
--eval '(add-to-list '"'"'load-path "../lisp")' \
|
||||
--eval '(load "../mk/org-fixup.el")' \
|
||||
--eval '(org-make-manuals)'
|
||||
|
||||
org-version.inc: org.texi
|
||||
@echo "org-version: $(ORGVERSION) ($(GITVERSION))"
|
||||
@echo "@c automatically generated, do not edit" > org-version.inc
|
||||
@echo "@set VERSION $(ORGVERSION) ($(GITVERSION))" >> org-version.inc
|
||||
@echo "@set DATE $(DATE)" >> org-version.inc
|
||||
|
||||
org-version.tex: orgcard.tex
|
||||
@printf "org-version: $(ORGVERSION) ($(GITVERSION))\n"
|
||||
@printf "%% automatically generated, do not edit\n" > org-version.tex
|
||||
@printf "\def\orgversionnumber{$(ORGVERSION)}\n" >> org-version.tex
|
||||
@printf "\def\\\\versionyear{$(YEAR)}\n" >> org-version.tex
|
||||
@printf "\def\year{$(YEAR)}\n" >> org-version.tex
|
||||
|
||||
install: org orgguide
|
||||
if [ ! -d $(DESTDIR)$(infodir) ]; then $(MKDIR) $(DESTDIR)$(infodir); else true; fi ;
|
||||
$(CP) org $(DESTDIR)$(infodir)
|
||||
$(CP) orgguide $(DESTDIR)$(infodir)
|
||||
$(INSTALL_INFO) --infodir=$(DESTDIR)$(infodir) org
|
||||
$(INSTALL_INFO) --infodir=$(DESTDIR)$(infodir) orgguide
|
||||
|
||||
clean:
|
||||
$(RM) org orgguide *.pdf *.html *_letter.tex org-version.inc \
|
||||
org-version.tex *.aux *.cp *.cps *.dvi *.fn *.fns *.ky *.kys \
|
||||
*.pg *.pgs *.toc *.tp *.tps *.vr *.vrs *.log *.html *.ps
|
||||
cleanall: clean
|
||||
$(RMR) guide manual
|
||||
|
||||
clean-install:
|
||||
$(RM) $(DESTDIR)$(infodir)/org*
|
||||
$(INSTALL_INFO) --infodir=$(DESTDIR)$(infodir) --remove org
|
||||
$(INSTALL_INFO) --infodir=$(DESTDIR)$(infodir) --remove orgguide
|
||||
|
||||
.SUFFIXES: .texi .tex .txt _letter.tex
|
||||
|
||||
%: %.texi org-version.inc
|
||||
$(MAKEINFO) --no-split $< -o $@
|
||||
|
||||
# the following two lines work around a bug in some versions of texi2dvi
|
||||
%.pdf: LC_ALL=C
|
||||
%.pdf: LANG=C
|
||||
%.pdf: %.texi org-version.inc
|
||||
$(TEXI2PDF) $<
|
||||
%.pdf: %.tex org-version.tex
|
||||
PDFLATEX=$(PDFTEX) $(TEXI2PDF) $<
|
||||
|
||||
%.html: %.texi org-version.inc
|
||||
$(TEXI2HTML) --no-split -o $@ $<
|
||||
ifneq ($(SERVERMK),)
|
||||
../mk/manfull.pl $@
|
||||
|
||||
%.txt: %.tex
|
||||
perl ../mk/orgcard2txt.pl $< > $@
|
||||
endif
|
||||
|
||||
%_letter.tex: %.tex
|
||||
$(BATCH) \
|
||||
--eval '(add-to-list '"'"'load-path "../lisp")' \
|
||||
--eval '(load "org-compat.el")' \
|
||||
--eval '(load "../mk/org-fixup.el")' \
|
||||
--eval '(org-make-letterformat "$(<F)" "$(@F)")'
|
||||
@@ -0,0 +1,19 @@
|
||||
This is the file .../info/dir, which contains the
|
||||
topmost node of the Info hierarchy, called (dir)Top.
|
||||
The first time you invoke Info you start off looking at this node.
|
||||
|
||||
File: dir, Node: Top This is the top of the INFO tree
|
||||
|
||||
This (the Directory node) gives a menu of major topics.
|
||||
Typing "q" exits, "?" lists all Info commands, "d" returns here,
|
||||
"h" gives a primer for first-timers,
|
||||
"mEmacs<Return>" visits the Emacs manual, etc.
|
||||
|
||||
In Emacs, you can click mouse button 2 on a menu item or cross reference
|
||||
to select it.
|
||||
|
||||
* Menu:
|
||||
|
||||
Emacs
|
||||
* Org Mode: (org). Outline-based notes management and organizer.
|
||||
* Org Guide: (orgguide). Abbreviated Org mode manual.
|
||||
@@ -0,0 +1,36 @@
|
||||
# SETUPFILE for manuals
|
||||
|
||||
# XXX: We cannot use TODO keyword as a node starts with "TODO".
|
||||
#+todo: REVIEW FIXME | DONE
|
||||
#+property: header-args :eval no
|
||||
#+startup: overview nologdone
|
||||
|
||||
# Use proper quote and backtick for code sections in PDF output
|
||||
# Cf. Texinfo manual 14.2
|
||||
#+texinfo_header: @set txicodequoteundirected
|
||||
#+texinfo_header: @set txicodequotebacktick
|
||||
|
||||
# Contact Info
|
||||
#+texinfo_header: @set MAINTAINERSITE @uref{https://orgmode.org,maintainers webpage}
|
||||
#+texinfo_header: @set MAINTAINER Bastien Guerry
|
||||
#+texinfo_header: @set MAINTAINEREMAIL @email{bzg@gnu.org}
|
||||
#+texinfo_header: @set MAINTAINERCONTACT @uref{mailto:bzg@gnu.org,contact the maintainer}
|
||||
|
||||
#+options: H:4 num:t toc:t author:t \n:nil ::t |:t ^:nil -:t f:t *:t <:t e:t ':t
|
||||
#+options: d:nil todo:nil pri:nil tags:not-in-toc stat:nil broken-links:mark
|
||||
#+select_tags: export
|
||||
#+exclude_tags: noexport
|
||||
|
||||
#+macro: cite @@texinfo:@cite{@@$1@@texinfo:}@@
|
||||
#+macro: var @@texinfo:@var{@@$1@@texinfo:}@@
|
||||
|
||||
# The "version" macro extracts "Version" keyword from "org.el". It
|
||||
# returns major.minor version number. This is sufficient since bugfix
|
||||
# releases are not expected to add features and therefore imply manual
|
||||
# modifications.
|
||||
#+macro: version (eval (with-current-buffer (find-file-noselect "../lisp/org.el") (org-with-point-at 1 (if (re-search-forward "Version: +\\([0-9.]+\\)" nil t) (mapconcat #'identity (cl-subseq (split-string (match-string-no-properties 1) "\\.") 0 2) ".") (error "Missing \"Version\" keyword in \"org.el\"")))))
|
||||
|
||||
# The "kbd" macro turns KBD into @kbd{KBD}. Additionally, it
|
||||
# encloses case-sensitive special keys (SPC, RET...) within @key{...}.
|
||||
#+macro: kbd (eval (let ((case-fold-search nil) (regexp (regexp-opt '("SPC" "RET" "LFD" "TAB" "BS" "ESC" "DELETE" "SHIFT" "Ctrl" "Meta" "Alt" "Cmd" "Super" "UP" "LEFT" "RIGHT" "DOWN") 'words))) (format "@@texinfo:@kbd{@@%s@@texinfo:}@@" (replace-regexp-in-string regexp "@@texinfo:@key{@@\\&@@texinfo:}@@" $1 t))))
|
||||
|
||||
@@ -0,0 +1,490 @@
|
||||
# The GNU Free Documentation License.
|
||||
#+begin_center
|
||||
Version 1.3, 3 November 2008
|
||||
#+end_center
|
||||
|
||||
# This file is intended to be included within another document.
|
||||
|
||||
#+begin_verse
|
||||
Copyright \copy{} 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc.
|
||||
http://fsf.org/
|
||||
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
#+end_verse
|
||||
|
||||
0. [@0] PREAMBLE
|
||||
|
||||
The purpose of this License is to make a manual, textbook, or other
|
||||
functional and useful document @@texinfo:@dfn{@@free@@texinfo:}@@
|
||||
in the sense of freedom: to assure everyone the effective freedom
|
||||
to copy and redistribute it, with or without modifying it, either
|
||||
commercially or noncommercially. Secondarily, this License
|
||||
preserves for the author and publisher a way to get credit for
|
||||
their work, while not being considered responsible for
|
||||
modifications made by others.
|
||||
|
||||
This License is a kind of "copyleft", which means that derivative
|
||||
works of the document must themselves be free in the same sense.
|
||||
It complements the GNU General Public License, which is a copyleft
|
||||
license designed for free software.
|
||||
|
||||
We have designed this License in order to use it for manuals for
|
||||
free software, because free software needs free documentation:
|
||||
a free program should come with manuals providing the same freedoms
|
||||
that the software does. But this License is not limited to
|
||||
software manuals; it can be used for any textual work, regardless
|
||||
of subject matter or whether it is published as a printed book. We
|
||||
recommend this License principally for works whose purpose is
|
||||
instruction or reference.
|
||||
|
||||
1. APPLICABILITY AND DEFINITIONS
|
||||
|
||||
This License applies to any manual or other work, in any medium,
|
||||
that contains a notice placed by the copyright holder saying it can
|
||||
be distributed under the terms of this License. Such a notice
|
||||
grants a world-wide, royalty-free license, unlimited in duration,
|
||||
to use that work under the conditions stated herein. The
|
||||
"Document", below, refers to any such manual or work. Any member
|
||||
of the public is a licensee, and is addressed as "you". You accept
|
||||
the license if you copy, modify or distribute the work in a way
|
||||
requiring permission under copyright law.
|
||||
|
||||
A "Modified Version" of the Document means any work containing the
|
||||
Document or a portion of it, either copied verbatim, or with
|
||||
modifications and/or translated into another language.
|
||||
|
||||
A "Secondary Section" is a named appendix or a front-matter section
|
||||
of the Document that deals exclusively with the relationship of the
|
||||
publishers or authors of the Document to the Document's overall
|
||||
subject (or to related matters) and contains nothing that could
|
||||
fall directly within that overall subject. (Thus, if the Document
|
||||
is in part a textbook of mathematics, a Secondary Section may not
|
||||
explain any mathematics.) The relationship could be a matter of
|
||||
historical connection with the subject or with related matters, or
|
||||
of legal, commercial, philosophical, ethical or political position
|
||||
regarding them.
|
||||
|
||||
The "Invariant Sections" are certain Secondary Sections whose
|
||||
titles are designated, as being those of Invariant Sections, in the
|
||||
notice that says that the Document is released under this License.
|
||||
If a section does not fit the above definition of Secondary then it
|
||||
is not allowed to be designated as Invariant. The Document may
|
||||
contain zero Invariant Sections. If the Document does not identify
|
||||
any Invariant Sections then there are none.
|
||||
|
||||
The "Cover Texts" are certain short passages of text that are
|
||||
listed, as Front-Cover Texts or Back-Cover Texts, in the notice
|
||||
that says that the Document is released under this License.
|
||||
A Front-Cover Text may be at most 5 words, and a Back-Cover Text
|
||||
may be at most 25 words.
|
||||
|
||||
A "Transparent" copy of the Document means a machine-readable copy,
|
||||
represented in a format whose specification is available to the
|
||||
general public, that is suitable for revising the document
|
||||
straightforwardly with generic text editors or (for images composed
|
||||
of pixels) generic paint programs or (for drawings) some widely
|
||||
available drawing editor, and that is suitable for input to text
|
||||
formatters or for automatic translation to a variety of formats
|
||||
suitable for input to text formatters. A copy made in an otherwise
|
||||
Transparent file format whose markup, or absence of markup, has
|
||||
been arranged to thwart or discourage subsequent modification by
|
||||
readers is not Transparent. An image format is not Transparent if
|
||||
used for any substantial amount of text. A copy that is not
|
||||
"Transparent" is called "Opaque".
|
||||
|
||||
Examples of suitable formats for Transparent copies include plain
|
||||
ASCII without markup, Texinfo input format, LaTeX input format,
|
||||
SGML or XML using a publicly available DTD, and standard-conforming
|
||||
simple HTML, PostScript or PDF designed for human modification.
|
||||
Examples of transparent image formats include PNG, XCF and JPG.
|
||||
Opaque formats include proprietary formats that can be read and
|
||||
edited only by proprietary word processors, SGML or XML for which
|
||||
the DTD and/or processing tools are not generally available, and
|
||||
the machine-generated HTML, PostScript or PDF produced by some word
|
||||
processors for output purposes only.
|
||||
|
||||
The "Title Page" means, for a printed book, the title page itself,
|
||||
plus such following pages as are needed to hold, legibly, the
|
||||
material this License requires to appear in the title page. For
|
||||
works in formats which do not have any title page as such, "Title
|
||||
Page" means the text near the most prominent appearance of the
|
||||
work's title, preceding the beginning of the body of the text.
|
||||
|
||||
The "publisher" means any person or entity that distributes copies
|
||||
of the Document to the public.
|
||||
|
||||
A section "Entitled XYZ" means a named subunit of the Document
|
||||
whose title either is precisely XYZ or contains XYZ in parentheses
|
||||
following text that translates XYZ in another language. (Here XYZ
|
||||
stands for a specific section name mentioned below, such as
|
||||
"Acknowledgements", "Dedications", "Endorsements", or "History".)
|
||||
To "Preserve the Title" of such a section when you modify the
|
||||
Document means that it remains a section "Entitled XYZ" according
|
||||
to this definition.
|
||||
|
||||
The Document may include Warranty Disclaimers next to the notice
|
||||
which states that this License applies to the Document. These
|
||||
Warranty Disclaimers are considered to be included by reference in
|
||||
this License, but only as regards disclaiming warranties: any other
|
||||
implication that these Warranty Disclaimers may have is void and
|
||||
has no effect on the meaning of this License.
|
||||
|
||||
2. VERBATIM COPYING
|
||||
|
||||
You may copy and distribute the Document in any medium, either
|
||||
commercially or noncommercially, provided that this License, the
|
||||
copyright notices, and the license notice saying this License
|
||||
applies to the Document are reproduced in all copies, and that you
|
||||
add no other conditions whatsoever to those of this License. You
|
||||
may not use technical measures to obstruct or control the reading
|
||||
or further copying of the copies you make or distribute. However,
|
||||
you may accept compensation in exchange for copies. If you
|
||||
distribute a large enough number of copies you must also follow the
|
||||
conditions in section 3.
|
||||
|
||||
You may also lend copies, under the same conditions stated above,
|
||||
and you may publicly display copies.
|
||||
|
||||
3. COPYING IN QUANTITY
|
||||
|
||||
If you publish printed copies (or copies in media that commonly
|
||||
have printed covers) of the Document, numbering more than 100, and
|
||||
the Document's license notice requires Cover Texts, you must
|
||||
enclose the copies in covers that carry, clearly and legibly, all
|
||||
these Cover Texts: Front-Cover Texts on the front cover, and
|
||||
Back-Cover Texts on the back cover. Both covers must also clearly
|
||||
and legibly identify you as the publisher of these copies. The
|
||||
front cover must present the full title with all words of the title
|
||||
equally prominent and visible. You may add other material on the
|
||||
covers in addition. Copying with changes limited to the covers, as
|
||||
long as they preserve the title of the Document and satisfy these
|
||||
conditions, can be treated as verbatim copying in other respects.
|
||||
|
||||
If the required texts for either cover are too voluminous to fit
|
||||
legibly, you should put the first ones listed (as many as fit
|
||||
reasonably) on the actual cover, and continue the rest onto
|
||||
adjacent pages.
|
||||
|
||||
If you publish or distribute Opaque copies of the Document
|
||||
numbering more than 100, you must either include a machine-readable
|
||||
Transparent copy along with each Opaque copy, or state in or with
|
||||
each Opaque copy a computer-network location from which the general
|
||||
network-using public has access to download using public-standard
|
||||
network protocols a complete Transparent copy of the Document, free
|
||||
of added material. If you use the latter option, you must take
|
||||
reasonably prudent steps, when you begin distribution of Opaque
|
||||
copies in quantity, to ensure that this Transparent copy will
|
||||
remain thus accessible at the stated location until at least one
|
||||
year after the last time you distribute an Opaque copy (directly or
|
||||
through your agents or retailers) of that edition to the public.
|
||||
|
||||
It is requested, but not required, that you contact the authors of
|
||||
the Document well before redistributing any large number of copies,
|
||||
to give them a chance to provide you with an updated version of the
|
||||
Document.
|
||||
|
||||
4. MODIFICATIONS
|
||||
|
||||
You may copy and distribute a Modified Version of the Document
|
||||
under the conditions of sections 2 and 3 above, provided that you
|
||||
release the Modified Version under precisely this License, with the
|
||||
Modified Version filling the role of the Document, thus licensing
|
||||
distribution and modification of the Modified Version to whoever
|
||||
possesses a copy of it. In addition, you must do these things in
|
||||
the Modified Version:
|
||||
|
||||
#+attr_texinfo: :enum A
|
||||
1. Use in the Title Page (and on the covers, if any) a title
|
||||
distinct from that of the Document, and from those of previous
|
||||
versions (which should, if there were any, be listed in the
|
||||
History section of the Document). You may use the same title as
|
||||
a previous version if the original publisher of that version
|
||||
gives permission.
|
||||
|
||||
2. List on the Title Page, as authors, one or more persons or
|
||||
entities responsible for authorship of the modifications in the
|
||||
Modified Version, together with at least five of the principal
|
||||
authors of the Document (all of its principal authors, if it has
|
||||
fewer than five), unless they release you from this requirement.
|
||||
|
||||
3. State on the Title page the name of the publisher of the
|
||||
Modified Version, as the publisher.
|
||||
|
||||
4. Preserve all the copyright notices of the Document.
|
||||
|
||||
5. Add an appropriate copyright notice for your modifications
|
||||
adjacent to the other copyright notices.
|
||||
|
||||
6. Include, immediately after the copyright notices, a license
|
||||
notice giving the public permission to use the Modified Version
|
||||
under the terms of this License, in the form shown in the
|
||||
Addendum below.
|
||||
|
||||
7. Preserve in that license notice the full lists of Invariant
|
||||
Sections and required Cover Texts given in the Document's
|
||||
license notice.
|
||||
|
||||
8. Include an unaltered copy of this License.
|
||||
|
||||
9. Preserve the section Entitled "History", Preserve its Title, and
|
||||
add to it an item stating at least the title, year, new authors,
|
||||
and publisher of the Modified Version as given on the Title
|
||||
Page. If there is no section Entitled "History" in the Document,
|
||||
create one stating the title, year, authors, and publisher of
|
||||
the Document as given on its Title Page, then add an item
|
||||
describing the Modified Version as stated in the previous
|
||||
sentence.
|
||||
|
||||
10. Preserve the network location, if any, given in the Document
|
||||
for public access to a Transparent copy of the Document, and
|
||||
likewise the network locations given in the Document for
|
||||
previous versions it was based on. These may be placed in the
|
||||
"History" section. You may omit a network location for a work
|
||||
that was published at least four years before the Document
|
||||
itself, or if the original publisher of the version it refers
|
||||
to gives permission.
|
||||
|
||||
11. For any section Entitled "Acknowledgements" or "Dedications",
|
||||
Preserve the Title of the section, and preserve in the section
|
||||
all the substance and tone of each of the contributor
|
||||
acknowledgements and/or dedications given therein.
|
||||
|
||||
12. Preserve all the Invariant Sections of the Document, unaltered
|
||||
in their text and in their titles. Section numbers or the
|
||||
equivalent are not considered part of the section titles.
|
||||
|
||||
13. Delete any section Entitled "Endorsements". Such a section may
|
||||
not be included in the Modified Version.
|
||||
|
||||
14. Do not retitle any existing section to be Entitled
|
||||
"Endorsements" or to conflict in title with any Invariant
|
||||
Section.
|
||||
|
||||
15. Preserve any Warranty Disclaimers.
|
||||
|
||||
If the Modified Version includes new front-matter sections or
|
||||
appendices that qualify as Secondary Sections and contain no material
|
||||
copied from the Document, you may at your option designate some or all
|
||||
of these sections as invariant. To do this, add their titles to the
|
||||
list of Invariant Sections in the Modified Version's license notice.
|
||||
These titles must be distinct from any other section titles.
|
||||
|
||||
You may add a section Entitled "Endorsements", provided it contains
|
||||
nothing but endorsements of your Modified Version by various
|
||||
parties---for example, statements of peer review or that the text has
|
||||
been approved by an organization as the authoritative definition of a
|
||||
standard.
|
||||
|
||||
You may add a passage of up to five words as a Front-Cover Text, and a
|
||||
passage of up to 25 words as a Back-Cover Text, to the end of the list
|
||||
of Cover Texts in the Modified Version. Only one passage of
|
||||
Front-Cover Text and one of Back-Cover Text may be added by (or
|
||||
through arrangements made by) any one entity. If the Document already
|
||||
includes a cover text for the same cover, previously added by you or
|
||||
by arrangement made by the same entity you are acting on behalf of,
|
||||
you may not add another; but you may replace the old one, on explicit
|
||||
permission from the previous publisher that added the old one.
|
||||
|
||||
The author(s) and publisher(s) of the Document do not by this License
|
||||
give permission to use their names for publicity for or to assert or
|
||||
imply endorsement of any Modified Version.
|
||||
|
||||
5. COMBINING DOCUMENTS
|
||||
|
||||
You may combine the Document with other documents released under
|
||||
this License, under the terms defined in section 4 above for
|
||||
modified versions, provided that you include in the combination all
|
||||
of the Invariant Sections of all of the original documents,
|
||||
unmodified, and list them all as Invariant Sections of your
|
||||
combined work in its license notice, and that you preserve all
|
||||
their Warranty Disclaimers.
|
||||
|
||||
The combined work need only contain one copy of this License, and
|
||||
multiple identical Invariant Sections may be replaced with a single
|
||||
copy. If there are multiple Invariant Sections with the same name
|
||||
but different contents, make the title of each such section unique
|
||||
by adding at the end of it, in parentheses, the name of the
|
||||
original author or publisher of that section if known, or else
|
||||
a unique number. Make the same adjustment to the section titles in
|
||||
the list of Invariant Sections in the license notice of the
|
||||
combined work.
|
||||
|
||||
In the combination, you must combine any sections Entitled
|
||||
"History" in the various original documents, forming one section
|
||||
Entitled "History"; likewise combine any sections Entitled
|
||||
"Acknowledgements", and any sections Entitled "Dedications". You
|
||||
must delete all sections Entitled "Endorsements."
|
||||
|
||||
6. COLLECTIONS OF DOCUMENTS
|
||||
|
||||
You may make a collection consisting of the Document and other
|
||||
documents released under this License, and replace the individual
|
||||
copies of this License in the various documents with a single copy
|
||||
that is included in the collection, provided that you follow the
|
||||
rules of this License for verbatim copying of each of the documents
|
||||
in all other respects.
|
||||
|
||||
You may extract a single document from such a collection, and
|
||||
distribute it individually under this License, provided you insert
|
||||
a copy of this License into the extracted document, and follow this
|
||||
License in all other respects regarding verbatim copying of that
|
||||
document.
|
||||
|
||||
7. AGGREGATION WITH INDEPENDENT WORKS
|
||||
|
||||
A compilation of the Document or its derivatives with other
|
||||
separate and independent documents or works, in or on a volume of
|
||||
a storage or distribution medium, is called an "aggregate" if the
|
||||
copyright resulting from the compilation is not used to limit the
|
||||
legal rights of the compilation's users beyond what the individual
|
||||
works permit. When the Document is included in an aggregate, this
|
||||
License does not apply to the other works in the aggregate which
|
||||
are not themselves derivative works of the Document.
|
||||
|
||||
If the Cover Text requirement of section 3 is applicable to these
|
||||
copies of the Document, then if the Document is less than one half
|
||||
of the entire aggregate, the Document's Cover Texts may be placed
|
||||
on covers that bracket the Document within the aggregate, or the
|
||||
electronic equivalent of covers if the Document is in electronic
|
||||
form. Otherwise they must appear on printed covers that bracket
|
||||
the whole aggregate.
|
||||
|
||||
8. TRANSLATION
|
||||
|
||||
Translation is considered a kind of modification, so you may
|
||||
distribute translations of the Document under the terms of
|
||||
section 4. Replacing Invariant Sections with translations requires
|
||||
special permission from their copyright holders, but you may
|
||||
include translations of some or all Invariant Sections in addition
|
||||
to the original versions of these Invariant Sections. You may
|
||||
include a translation of this License, and all the license notices
|
||||
in the Document, and any Warranty Disclaimers, provided that you
|
||||
also include the original English version of this License and the
|
||||
original versions of those notices and disclaimers. In case of
|
||||
a disagreement between the translation and the original version of
|
||||
this License or a notice or disclaimer, the original version will
|
||||
prevail.
|
||||
|
||||
If a section in the Document is Entitled "Acknowledgements",
|
||||
"Dedications", or "History", the requirement (section 4) to
|
||||
Preserve its Title (section 1) will typically require changing the
|
||||
actual title.
|
||||
|
||||
9. TERMINATION
|
||||
|
||||
You may not copy, modify, sublicense, or distribute the Document
|
||||
except as expressly provided under this License. Any attempt
|
||||
otherwise to copy, modify, sublicense, or distribute it is void,
|
||||
and will automatically terminate your rights under this License.
|
||||
|
||||
However, if you cease all violation of this License, then your
|
||||
license from a particular copyright holder is reinstated (a)
|
||||
provisionally, unless and until the copyright holder explicitly and
|
||||
finally terminates your license, and (b) permanently, if the
|
||||
copyright holder fails to notify you of the violation by some
|
||||
reasonable means prior to 60 days after the cessation.
|
||||
|
||||
Moreover, your license from a particular copyright holder is
|
||||
reinstated permanently if the copyright holder notifies you of the
|
||||
violation by some reasonable means, this is the first time you have
|
||||
received notice of violation of this License (for any work) from
|
||||
that copyright holder, and you cure the violation prior to 30 days
|
||||
after your receipt of the notice.
|
||||
|
||||
Termination of your rights under this section does not terminate
|
||||
the licenses of parties who have received copies or rights from you
|
||||
under this License. If your rights have been terminated and not
|
||||
permanently reinstated, receipt of a copy of some or all of the
|
||||
same material does not give you any rights to use it.
|
||||
|
||||
10. FUTURE REVISIONS OF THIS LICENSE
|
||||
|
||||
The Free Software Foundation may publish new, revised versions of
|
||||
the GNU Free Documentation License from time to time. Such new
|
||||
versions will be similar in spirit to the present version, but may
|
||||
differ in detail to address new problems or concerns. See
|
||||
http://www.gnu.org/copyleft/.
|
||||
|
||||
Each version of the License is given a distinguishing version
|
||||
number. If the Document specifies that a particular numbered
|
||||
version of this License "or any later version" applies to it, you
|
||||
have the option of following the terms and conditions either of
|
||||
that specified version or of any later version that has been
|
||||
published (not as a draft) by the Free Software Foundation. If
|
||||
the Document does not specify a version number of this License,
|
||||
you may choose any version ever published (not as a draft) by the
|
||||
Free Software Foundation. If the Document specifies that a proxy
|
||||
can decide which future versions of this License can be used, that
|
||||
proxy's public statement of acceptance of a version permanently
|
||||
authorizes you to choose that version for the Document.
|
||||
|
||||
11. RELICENSING
|
||||
|
||||
"Massive Multiauthor Collaboration Site" (or "MMC Site") means any
|
||||
World Wide Web server that publishes copyrightable works and also
|
||||
provides prominent facilities for anybody to edit those works.
|
||||
A public wiki that anybody can edit is an example of such
|
||||
a server. A "Massive Multiauthor Collaboration" (or "MMC")
|
||||
contained in the site means any set of copyrightable works thus
|
||||
published on the MMC site.
|
||||
|
||||
"CC-BY-SA" means the Creative Commons Attribution-Share Alike 3.0
|
||||
license published by Creative Commons Corporation,
|
||||
a not-for-profit corporation with a principal place of business in
|
||||
San Francisco, California, as well as future copyleft versions of
|
||||
that license published by that same organization.
|
||||
|
||||
"Incorporate" means to publish or republish a Document, in whole
|
||||
or in part, as part of another Document.
|
||||
|
||||
An MMC is "eligible for relicensing" if it is licensed under this
|
||||
License, and if all works that were first published under this
|
||||
License somewhere other than this MMC, and subsequently
|
||||
incorporated in whole or in part into the MMC, (1) had no cover
|
||||
texts or invariant sections, and (2) were thus incorporated prior
|
||||
to November 1, 2008.
|
||||
|
||||
The operator of an MMC Site may republish an MMC contained in the
|
||||
site under CC-BY-SA on the same site at any time before August 1,
|
||||
2009, provided the MMC is eligible for relicensing.
|
||||
|
||||
#+texinfo: @page
|
||||
|
||||
* ADDENDUM: How to use this License for your documents
|
||||
:PROPERTIES:
|
||||
:UNNUMBERED: notoc
|
||||
:END:
|
||||
|
||||
To use this License in a document you have written, include a copy of
|
||||
the License in the document and put the following copyright and
|
||||
license notices just after the title page:
|
||||
|
||||
#+begin_example
|
||||
Copyright (C) YEAR YOUR NAME.
|
||||
Permission is granted to copy, distribute and/or modify this document
|
||||
under the terms of the GNU Free Documentation License, Version 1.3
|
||||
or any later version published by the Free Software Foundation;
|
||||
with no Invariant Sections, no Front-Cover Texts, and no Back-Cover
|
||||
Texts. A copy of the license is included in the section entitled ``GNU
|
||||
Free Documentation License''.
|
||||
#+end_example
|
||||
|
||||
If you have Invariant Sections, Front-Cover Texts and Back-Cover Texts,
|
||||
replace the "with...Texts."\nbsp{}line with this:
|
||||
|
||||
#+begin_example
|
||||
with the Invariant Sections being LIST THEIR TITLES, with
|
||||
the Front-Cover Texts being LIST, and with the Back-Cover Texts
|
||||
being LIST.
|
||||
#+end_example
|
||||
|
||||
If you have Invariant Sections without Cover Texts, or some other
|
||||
combination of the three, merge those two alternatives to suit the
|
||||
situation.
|
||||
|
||||
If your document contains nontrivial examples of program code, we
|
||||
recommend releasing these examples in parallel under your choice of
|
||||
free software license, such as the GNU General Public License, to
|
||||
permit their use in free software.
|
||||
|
||||
@@ -0,0 +1,2 @@
|
||||
calc mono http://www.gnu.org/software/emacs/manual/html_mono/calc.html
|
||||
calc node http://www.gnu.org/software/emacs/manual/html_node/calc/
|
||||
+23015
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,3 @@
|
||||
@c automatically generated, do not edit
|
||||
@set VERSION 9.3.6 (release_9.3.6)
|
||||
@set DATE 2020-02-13
|
||||
@@ -0,0 +1,4 @@
|
||||
% automatically generated, do not edit
|
||||
\def\orgversionnumber{9.3.6}
|
||||
\def\versionyear{2020}
|
||||
\def\year{2020}
|
||||
Binary file not shown.
+22915
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@@ -0,0 +1,691 @@
|
||||
% Reference Card for Org Mode
|
||||
\input org-version.tex
|
||||
|
||||
%**start of header
|
||||
\newcount\columnsperpage
|
||||
\newcount\letterpaper
|
||||
|
||||
% This file can be printed with 1, 2, or 3 columns per page (see below).
|
||||
% Specify how many you want here.
|
||||
\columnsperpage=3
|
||||
|
||||
% PDF output layout. 0 for A4, 1 for letter (US), a `l' is added for
|
||||
% a landscape layout.
|
||||
\input pdflayout.sty
|
||||
\pdflayout=(0l)
|
||||
|
||||
% Nothing else needs to be changed below this line.
|
||||
% Copyright (C) 1987, 1993, 1996-1997, 2001-2020 Free Software
|
||||
% Foundation, Inc.
|
||||
|
||||
% This document 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.
|
||||
|
||||
% As a special additional permission, you may distribute reference cards
|
||||
% printed, or formatted for printing, with the notice "Released under
|
||||
% the terms of the GNU General Public License version 3 or later"
|
||||
% instead of the usual distributed-under-the-GNU-GPL notice, and without
|
||||
% a copy of the GPL itself.
|
||||
|
||||
% This document 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 GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
% This file is intended to be processed by plain TeX (TeX82).
|
||||
%
|
||||
% The final reference card has six columns, three on each side.
|
||||
% This file can be used to produce it in any of three ways:
|
||||
% 1 column per page
|
||||
% produces six separate pages, each of which needs to be reduced to 80%.
|
||||
% This gives the best resolution.
|
||||
% 2 columns per page
|
||||
% produces three already-reduced pages.
|
||||
% You will still need to cut and paste.
|
||||
% 3 columns per page
|
||||
% produces two pages which must be printed sideways to make a
|
||||
% ready-to-use 8.5 x 11 inch reference card.
|
||||
% For this you need a dvi device driver that can print sideways.
|
||||
% Which mode to use is controlled by setting \columnsperpage above.
|
||||
%
|
||||
% To compile and print this document:
|
||||
% tex refcard.tex
|
||||
% dvips -t landscape refcard.dvi
|
||||
%
|
||||
% Author:
|
||||
% Stephen Gildea <stepheng+emacs@gildea.com>
|
||||
%
|
||||
% Thanks to Paul Rubin, Bob Chassell, Len Tower, and Richard Mlynarik
|
||||
% for their many good ideas.
|
||||
|
||||
\def\shortcopyrightnotice{\vskip 1ex plus 2 fill
|
||||
\centerline{\small \copyright\ \year\ Free Software Foundation, Inc.
|
||||
Permissions on back. v\orgversionnumber}}
|
||||
|
||||
\def\copyrightnotice{
|
||||
\vskip 1ex plus 100 fill\begingroup\small
|
||||
\centerline{Copyright \copyright\ \year\ Free Software Foundation, Inc.}
|
||||
\centerline{v\orgversionnumber{} for Org-Mode \orgversionnumber{}, \versionyear}
|
||||
\centerline{Author: Philip Rooke}
|
||||
\centerline{based on refcard design and format by Stephen Gildea}
|
||||
|
||||
\centerline{Released under the terms of the GNU General Public License}
|
||||
\centerline{version 3 or later.}
|
||||
|
||||
\endgroup}
|
||||
|
||||
% make \bye not \outer so that the \def\bye in the \else clause below
|
||||
% can be scanned without complaint.
|
||||
\def\bye{\par\vfill\supereject\end}
|
||||
|
||||
\newdimen\intercolumnskip %horizontal space between columns
|
||||
\newbox\columna %boxes to hold columns already built
|
||||
\newbox\columnb
|
||||
|
||||
\def\ncolumns{\the\columnsperpage}
|
||||
|
||||
\message{[\ncolumns\space
|
||||
column\if 1\ncolumns\else s\fi\space per page]}
|
||||
|
||||
\def\scaledmag#1{ scaled \magstep #1}
|
||||
|
||||
% This multi-way format was designed by Stephen Gildea October 1986.
|
||||
% Note that the 1-column format is fontfamily-independent.
|
||||
\if 1\ncolumns %one-column format uses normal size
|
||||
\hsize 4in
|
||||
\vsize 10in
|
||||
\voffset -.7in
|
||||
\font\titlefont=\fontname\tenbf \scaledmag3
|
||||
\font\headingfont=\fontname\tenbf \scaledmag2
|
||||
\font\smallfont=\fontname\sevenrm
|
||||
\font\smallsy=\fontname\sevensy
|
||||
|
||||
\footline{\hss\folio}
|
||||
\def\makefootline{\baselineskip10pt\hsize6.5in\line{\the\footline}}
|
||||
\else %2 or 3 columns uses prereduced size
|
||||
\if 1\the\letterpaper
|
||||
\hsize 3.2in
|
||||
\vsize 7.95in
|
||||
\hoffset -.75in
|
||||
\voffset -.745in
|
||||
\else
|
||||
\hsize 3.2in
|
||||
\vsize 7.65in
|
||||
\hoffset -.25in
|
||||
\voffset -.745in
|
||||
\fi
|
||||
\font\titlefont=cmbx10 \scaledmag2
|
||||
\font\headingfont=cmbx10 \scaledmag1
|
||||
\font\smallfont=cmr6
|
||||
\font\smallsy=cmsy6
|
||||
\font\eightrm=cmr8
|
||||
\font\eightbf=cmbx8
|
||||
\font\eightit=cmti8
|
||||
\font\eighttt=cmtt8
|
||||
\font\eightmi=cmmi8
|
||||
\font\eightsy=cmsy8
|
||||
\textfont0=\eightrm
|
||||
\textfont1=\eightmi
|
||||
\textfont2=\eightsy
|
||||
\def\rm{\eightrm}
|
||||
\def\bf{\eightbf}
|
||||
\def\it{\eightit}
|
||||
\def\tt{\eighttt}
|
||||
\if 1\the\letterpaper
|
||||
\normalbaselineskip=.8\normalbaselineskip
|
||||
\else
|
||||
\normalbaselineskip=.7\normalbaselineskip
|
||||
\fi
|
||||
\normallineskip=.8\normallineskip
|
||||
\normallineskiplimit=.8\normallineskiplimit
|
||||
\normalbaselines\rm %make definitions take effect
|
||||
|
||||
\if 2\ncolumns
|
||||
\let\maxcolumn=b
|
||||
\footline{\hss\rm\folio\hss}
|
||||
\def\makefootline{\vskip 2in \hsize=6.86in\line{\the\footline}}
|
||||
\else \if 3\ncolumns
|
||||
\let\maxcolumn=c
|
||||
\nopagenumbers
|
||||
\else
|
||||
\errhelp{You must set \columnsperpage equal to 1, 2, or 3.}
|
||||
\errmessage{Illegal number of columns per page}
|
||||
\fi\fi
|
||||
|
||||
\intercolumnskip=.46in
|
||||
\def\abc{a}
|
||||
\output={% %see The TeXbook page 257
|
||||
% This next line is useful when designing the layout.
|
||||
%\immediate\write16{Column \folio\abc\space starts with \firstmark}
|
||||
\if \maxcolumn\abc \multicolumnformat \global\def\abc{a}
|
||||
\else\if a\abc
|
||||
\global\setbox\columna\columnbox \global\def\abc{b}
|
||||
%% in case we never use \columnb (two-column mode)
|
||||
\global\setbox\columnb\hbox to -\intercolumnskip{}
|
||||
\else
|
||||
\global\setbox\columnb\columnbox \global\def\abc{c}\fi\fi}
|
||||
\def\multicolumnformat{\shipout\vbox{\makeheadline
|
||||
\hbox{\box\columna\hskip\intercolumnskip
|
||||
\box\columnb\hskip\intercolumnskip\columnbox}
|
||||
\makefootline}\advancepageno}
|
||||
\def\columnbox{\leftline{\pagebody}}
|
||||
|
||||
\def\bye{\par\vfill\supereject
|
||||
\if a\abc \else\null\vfill\eject\fi
|
||||
\if a\abc \else\null\vfill\eject\fi
|
||||
\end}
|
||||
\fi
|
||||
|
||||
% we won't be using math mode much, so redefine some of the characters
|
||||
% we might want to talk about
|
||||
%\catcode`\^=12
|
||||
\catcode`\_=12
|
||||
|
||||
% we also need the tilde, for file names.
|
||||
\catcode`\~=12
|
||||
|
||||
\chardef\\=`\\
|
||||
\chardef\{=`\{
|
||||
\chardef\}=`\}
|
||||
|
||||
\hyphenation{mini-buf-fer}
|
||||
|
||||
\parindent 0pt
|
||||
\parskip 1ex plus .5ex minus .5ex
|
||||
|
||||
\def\small{\smallfont\textfont2=\smallsy\baselineskip=.8\baselineskip}
|
||||
|
||||
% newcolumn - force a new column. Use sparingly, probably only for
|
||||
% the first column of a page, which should have a title anyway.
|
||||
\outer\def\newcolumn{\vfill\eject}
|
||||
|
||||
% title - page title. Argument is title text.
|
||||
\outer\def\title#1{{\titlefont\centerline{#1}}\vskip 1ex plus .5ex}
|
||||
|
||||
% section - new major section. Argument is section name.
|
||||
\outer\def\section#1{\par\filbreak
|
||||
\vskip 3ex plus 2ex minus 2ex {\headingfont #1}\mark{#1}%
|
||||
\vskip 2ex plus 1ex minus 1.5ex}
|
||||
|
||||
\newdimen\keyindent
|
||||
|
||||
% beginindentedkeys...endindentedkeys - key definitions will be
|
||||
% indented, but running text, typically used as headings to group
|
||||
% definitions, will not.
|
||||
\def\beginindentedkeys{\keyindent=1em}
|
||||
\def\endindentedkeys{\keyindent=0em}
|
||||
\endindentedkeys
|
||||
|
||||
% paralign - begin paragraph containing an alignment.
|
||||
% If an \halign is entered while in vertical mode, a parskip is never
|
||||
% inserted. Using \paralign instead of \halign solves this problem.
|
||||
\def\paralign{\vskip\parskip\halign}
|
||||
|
||||
% \<...> - surrounds a variable name in a code example
|
||||
\def\<#1>{{\it #1\/}}
|
||||
|
||||
% kbd - argument is characters typed literally. Like the Texinfo command.
|
||||
\def\kbd#1{{\tt#1}\null} %\null so not an abbrev even if period follows
|
||||
|
||||
% beginexample...endexample - surrounds literal text, such a code example.
|
||||
% typeset in a typewriter font with line breaks preserved
|
||||
\def\beginexample{\par\leavevmode\begingroup
|
||||
\obeylines\obeyspaces\parskip0pt\tt}
|
||||
{\obeyspaces\global\let =\ }
|
||||
\def\endexample{\endgroup}
|
||||
|
||||
% key - definition of a key.
|
||||
% \key{description of key}{key-name}
|
||||
% prints the description left-justified, and the key-name in a \kbd
|
||||
% form near the right margin.
|
||||
\def\key#1#2{\leavevmode\hbox to \hsize{\vtop
|
||||
{\hsize=.75\hsize\rightskip=1em
|
||||
\hskip\keyindent\relax#1}\kbd{#2}\hfil}}
|
||||
|
||||
\newbox\metaxbox
|
||||
\setbox\metaxbox\hbox{\kbd{M-x }}
|
||||
\newdimen\metaxwidth
|
||||
\metaxwidth=\wd\metaxbox
|
||||
|
||||
% metax - definition of a M-x command.
|
||||
% \metax{description of command}{M-x command-name}
|
||||
% Tries to justify the beginning of the command name at the same place
|
||||
% as \key starts the key name. (The "M-x " sticks out to the left.)
|
||||
\def\metax#1#2{\leavevmode\hbox to \hsize{\hbox to .75\hsize
|
||||
{\hskip\keyindent\relax#1\hfil}%
|
||||
\hskip -\metaxwidth minus 1fil
|
||||
\kbd{#2}\hfil}}
|
||||
|
||||
% threecol - like "key" but with two key names.
|
||||
% for example, one for doing the action backward, and one for forward.
|
||||
\def\threecol#1#2#3{\hskip\keyindent\relax#1\hfil&\kbd{#2}\hfil\quad
|
||||
&\kbd{#3}\hfil\quad\cr}
|
||||
|
||||
%\def\noteone{{\small \hfill [1]}}
|
||||
%\def\notetwo{{\small \hfill [2]}}
|
||||
\def\noteone{{\small [1]}}
|
||||
\def\notetwo{{\small [2]}}
|
||||
|
||||
|
||||
%**end of header
|
||||
|
||||
|
||||
\title{Org-Mode Reference Card (1/2)}
|
||||
|
||||
\centerline{(for version \orgversionnumber)}
|
||||
|
||||
\section{Getting Started}
|
||||
\metax{To read the on-line documentation try}{M-x org-info}
|
||||
|
||||
\section{Visibility Cycling}
|
||||
|
||||
\key{rotate current subtree between states}{TAB}
|
||||
\key{rotate entire buffer between states}{S-TAB}
|
||||
\key{restore property-dependent startup visibility}{C-u C-u TAB}
|
||||
\metax{show the whole file, including drawers}{C-u C-u C-u TAB}
|
||||
\key{reveal context around point}{C-c C-r}
|
||||
\metax{toggle indented view}{M-x org-indent-mode}
|
||||
|
||||
\section{Motion}
|
||||
|
||||
\key{next/previous heading}{C-c C-n/p}
|
||||
\key{next/previous heading, same level}{C-c C-f/b}
|
||||
\key{backward to higher level heading}{C-c C-u}
|
||||
\key{jump to another place in document}{C-c C-j}
|
||||
\key{previous/next plain list item}{S-UP/DOWN\notetwo}
|
||||
|
||||
\section{Structure Editing}
|
||||
|
||||
\key{insert new heading/item at current level}{M-RET}
|
||||
\key{insert new heading after subtree}{C-RET}
|
||||
\key{insert new TODO entry/checkbox item}{M-S-RET}
|
||||
\key{insert TODO entry/ckbx after subtree}{C-S-RET}
|
||||
\key{turn (head)line into item, cycle item type}{C-c -}
|
||||
\key{turn item/line into headline}{C-c *}
|
||||
\key{promote/demote heading}{M-LEFT/RIGHT}
|
||||
\metax{promote/demote current subtree}{M-S-LEFT/RIGHT}
|
||||
\metax{move subtree/list item up/down}{M-UP/DOWN}
|
||||
\metax{move the line at point up/down}{M-S-UP/DOWN}
|
||||
\metax{sort subtree/region/plain-list}{C-c \^{}}
|
||||
\metax{clone a subtree}{C-c C-x c}
|
||||
\metax{copy visible parts of the region}{C-c C-x v}
|
||||
\metax{kill/copy subtree}{C-c C-x C-w/M-w}
|
||||
\metax{yank subtree}{C-c C-x C-y or C-y}
|
||||
\metax{narrow buffer to subtree / widen}{C-x n s/w}
|
||||
|
||||
\section{Capture - Refile - Archiving}
|
||||
\key{capture a new item (C-u C-u = goto last)}{C-c c \noteone}
|
||||
\key{refile subtree (C-u C-u = goto last)}{C-c C-w}
|
||||
\key{archive subtree using the default command}{C-c C-x C-a}
|
||||
\key{move subtree to archive file}{C-c C-x C-s}
|
||||
\key{toggle ARCHIVE tag / to ARCHIVE sibling}{C-c C-x a/A}
|
||||
\key{force cycling of an ARCHIVEd tree}{C-TAB}
|
||||
|
||||
\section{Filtering and Sparse Trees}
|
||||
|
||||
\key{construct a sparse tree by various criteria}{C-c /}
|
||||
\key{view TODO's in sparse tree}{C-c / t/T}
|
||||
\key{global TODO list in agenda mode}{C-c a t \noteone}
|
||||
|
||||
\section{Tables}
|
||||
|
||||
{\bf Creating a table}
|
||||
|
||||
%\metax{insert a new Org-mode table}{M-x org-table-create}
|
||||
\metax{just start typing, e.g.}{|Name|Phone|Age RET |- TAB}
|
||||
\key{convert region to table}{C-c |}
|
||||
\key{... separator at least 3 spaces}{C-3 C-c |}
|
||||
|
||||
{\bf Commands available inside tables}
|
||||
|
||||
The following commands work when the cursor is {\it inside a table}.
|
||||
Outside of tables, the same keys may have other functionality.
|
||||
|
||||
{\bf Re-aligning and field motion}
|
||||
|
||||
\key{re-align the table without moving the cursor}{C-c C-c}
|
||||
\key{re-align the table, move to next field}{TAB}
|
||||
\key{move to previous field}{S-TAB}
|
||||
\key{re-align the table, move to next row}{RET}
|
||||
\key{move to beginning/end of field}{M-a/e}
|
||||
|
||||
{\bf Row and column editing}
|
||||
|
||||
\key{move the current column left}{M-LEFT/RIGHT}
|
||||
\key{kill the current column}{M-S-LEFT}
|
||||
\key{insert new column to left of cursor position}{M-S-RIGHT}
|
||||
|
||||
\key{move the current row up/down}{M-UP/DOWN}
|
||||
\key{kill the current row or horizontal line}{M-S-UP}
|
||||
\key{insert new row above the current row}{M-S-DOWN}
|
||||
\key{insert hline below (\kbd{C-u} : above) current row}{C-c -}
|
||||
\key{insert hline and move to line below it}{C-c RET}
|
||||
\key{sort lines in region}{C-c \^{}}
|
||||
|
||||
{\bf Regions}
|
||||
|
||||
\metax{cut/copy/paste rectangular region}{C-c C-x C-w/M-w/C-y}
|
||||
%\key{copy rectangular region}{C-c C-x M-w}
|
||||
%\key{paste rectangular region}{C-c C-x C-y}
|
||||
|
||||
{\bf Miscellaneous}
|
||||
|
||||
\key{to limit column width to \kbd{N} characters, use}{...| <N> |...}
|
||||
\key{edit the current field in a separate window}{C-c `}
|
||||
\key{make current field fully visible}{C-u TAB}
|
||||
\metax{export as tab-separated file}{M-x org-table-export}
|
||||
\metax{import tab-separated file}{M-x org-table-import}
|
||||
\key{sum numbers in current column/rectangle}{C-c +}
|
||||
|
||||
{\bf Tables created with the \kbd{table.el} package}
|
||||
|
||||
\key{insert a new \kbd{table.el} table}{C-c ~}
|
||||
\key{recognize existing table.el table}{C-c C-c}
|
||||
\key{convert table (Org-mode $\leftrightarrow$ table.el)}{C-c ~}
|
||||
|
||||
{\bf Spreadsheet}
|
||||
|
||||
Formulas typed in field are executed by \kbd{TAB},
|
||||
\kbd{RET} and \kbd{C-c C-c}. \kbd{=} introduces a column
|
||||
formula, \kbd{:=} a field formula.
|
||||
|
||||
\key{Example: Add Col1 and Col2}{|=\$1+\$2 |}
|
||||
\key{... with printf format specification}{|=\$1+\$2;\%.2f|}
|
||||
\key{... with constants from constants.el}{|=\$1/\$c/\$cm |}
|
||||
\metax{sum from 2nd to 3rd hline}{|:=vsum(@II..@III)|}
|
||||
\key{apply current column formula}{| = |}
|
||||
|
||||
\key{set and eval column formula}{C-c =}
|
||||
\key{set and eval field formula}{C-u C-c =}
|
||||
\key{re-apply all stored equations to current line}{C-c *}
|
||||
\key{re-apply all stored equations to entire table}{C-u C-c *}
|
||||
\key{iterate table to stability}{C-u C-u C-c *}
|
||||
\key{rotate calculation mark through \# * ! \^ \_ \$}{C-\#}
|
||||
\key{show line, column, formula reference}{C-c ?}
|
||||
\key{toggle grid / debugger}{C-c \}/\{}
|
||||
|
||||
\newcolumn
|
||||
{\it Formula Editor}
|
||||
|
||||
\key{edit formulas in separate buffer}{C-c '}
|
||||
\key{exit and install new formulas}{C-c C-c}
|
||||
\key{exit, install, and apply new formulas}{C-u C-c C-c}
|
||||
\key{abort}{C-c C-q}
|
||||
\key{toggle reference style}{C-c C-r}
|
||||
\key{pretty-print Lisp formula}{TAB}
|
||||
\key{complete Lisp symbol}{M-TAB}
|
||||
\key{shift reference point}{S-cursor}
|
||||
\key{shift test line for column references}{M-up/down}
|
||||
\key{scroll the window showing the table}{M-S-up/down}
|
||||
\key{toggle table coordinate grid}{C-c \}}
|
||||
|
||||
\section{Links}
|
||||
|
||||
\key{globally store link to the current location}{C-c l \noteone}
|
||||
\key{insert a link (TAB completes stored links)}{C-c C-l}
|
||||
\key{insert file link with file name completion}{C-u C-c C-l}
|
||||
\key{edit (also hidden part of) link at point}{C-c C-l}
|
||||
|
||||
\key{open file links in emacs}{C-c C-o}
|
||||
\key{...force open in emacs/other window}{C-u C-c C-o}
|
||||
\key{open link at point}{mouse-1/2}
|
||||
\key{...force open in emacs/other window}{mouse-3}
|
||||
\key{record a position in mark ring}{C-c \%}
|
||||
\key{jump back to last followed link(s)}{C-c \&}
|
||||
\key{find next link}{C-c C-x C-n}
|
||||
\key{find previous link}{C-c C-x C-p}
|
||||
\key{edit code snippet of file at point}{C-c '}
|
||||
\key{toggle inline display of linked images}{C-c C-x C-v}
|
||||
|
||||
\section{Working with Code (Babel)}
|
||||
|
||||
\key{execute code block at point}{C-c C-c}
|
||||
\key{open results of code block at point}{C-c C-o}
|
||||
\key{check code block at point for errors}{C-c C-v c}
|
||||
\key{insert a header argument with completion}{C-c C-v j}
|
||||
\key{view expanded body of code block at point}{C-c C-v v}
|
||||
\key{view information about code block at point}{C-c C-v I}
|
||||
\key{go to named code block}{C-c C-v g}
|
||||
\key{go to named result}{C-c C-v r}
|
||||
\key{go to the head of the current code block}{C-c C-v u}
|
||||
\key{go to the next code block}{C-c C-v n}
|
||||
\key{go to the previous code block}{C-c C-v p}
|
||||
\key{demarcate a code block}{C-c C-v d}
|
||||
\key{execute next key sequence in code edit buffer}{C-c C-v x}
|
||||
\key{execute all code blocks in current buffer}{C-c C-v b}
|
||||
\key{execute all code blocks in current subtree}{C-c C-v s}
|
||||
\key{tangle code blocks in current file}{C-c C-v t}
|
||||
\key{tangle code blocks in supplied file}{C-c C-v f}
|
||||
\key{ingest all code blocks in supplied file into the Library of Babel}{C-c C-v i}
|
||||
\key{switch to the session of the current code block}{C-c C-v z}
|
||||
\key{load the current code block into a session}{C-c C-v l}
|
||||
\key{view sha1 hash of the current code block}{C-c C-v a}
|
||||
|
||||
\section{Completion and Template Insertion}
|
||||
|
||||
In-buffer completion completes TODO keywords at headline start, TeX
|
||||
macros after ``{\tt \\}'', option keywords after ``{\tt \#-}'', TAGS
|
||||
after ``{\tt :}'', and dictionary words elsewhere.
|
||||
|
||||
\key{complete word at point}{M-TAB}
|
||||
\key{structure template (insert or wrap region)}{C-c C-,}
|
||||
|
||||
|
||||
\newcolumn
|
||||
\title{Org-Mode Reference Card (2/2)}
|
||||
|
||||
\centerline{(for version \orgversionnumber)}
|
||||
|
||||
\section{TODO Items and Checkboxes}
|
||||
|
||||
\key{rotate the state of the current item}{C-c C-t}
|
||||
\metax{select next/previous state}{\quad\quad S-LEFT/RIGHT}
|
||||
\metax{select next/previous set}{\quad\quad\quad C-S-LEFT/RIGHT}
|
||||
\key{toggle ORDERED property}{C-c C-x o}
|
||||
|
||||
\key{view TODO items in a sparse tree}{C-c / t}
|
||||
\key{view 3rd TODO keyword's sparse tree}{C-3 C-c / t}
|
||||
\key{set the priority of the current item}{C-c , [ABC]}
|
||||
\key{remove priority cookie from current item}{C-c , SPC}
|
||||
\key{raise/lower priority of current item}{S-UP/DOWN\notetwo}
|
||||
|
||||
\key{insert new checkbox item in plain list}{M-S-RET}
|
||||
\key{toggle checkbox(es) in region/entry/at point}{C-c C-x C-b}
|
||||
\key{toggle checkbox at point}{C-c C-c}
|
||||
%\metax{checkbox statistics cookies: insert {\tt [/]} or {\tt [\%]}}{}
|
||||
\key{update checkbox statistics (\kbd{C-u} : whole file)}{C-c \#}
|
||||
|
||||
\section{Tags}
|
||||
|
||||
\key{set tags for current heading}{C-c C-q}
|
||||
\key{realign tags in all headings}{C-u C-c C-q}
|
||||
\key{create sparse tree with matching tags}{C-c \\}
|
||||
\key{globally (agenda) match tags at cursor}{C-c C-o}
|
||||
|
||||
\section{Properties and Column View}
|
||||
|
||||
\key{set property/effort}{C-c C-x p/e}
|
||||
\key{special commands in property lines}{C-c C-c}
|
||||
\key{next/previous allowed value}{S-LEFT/RIGHT}
|
||||
\key{turn on column view}{C-c C-x C-c}
|
||||
\key{capture columns view in dynamic block}{C-c C-x i}
|
||||
|
||||
\key{quit column view}{q}
|
||||
\key{show full value}{v}
|
||||
\key{edit value}{e}
|
||||
\metax{next/previous allowed value}{n/p or S-LEFT/RIGHT}
|
||||
\key{edit allowed values list}{a}
|
||||
\key{make column wider/narrower}{> / <}
|
||||
\key{move column left/right}{M-LEFT/RIGHT}
|
||||
\key{add new column}{M-S-RIGHT}
|
||||
\key{Delete current column}{M-S-LEFT}
|
||||
|
||||
|
||||
\section{Timestamps}
|
||||
|
||||
\key{prompt for date and insert timestamp}{C-c .}
|
||||
\key{like \kbd{C-c .} but insert date and time format}{C-u C-c .}
|
||||
\key{like \kbd{C-c .} but make stamp inactive}{C-c !} % FIXME
|
||||
\key{insert DEADLINE timestamp}{C-c C-d}
|
||||
\key{insert SCHEDULED timestamp}{C-c C-s}
|
||||
\key{create sparse tree with all deadlines due}{C-c / d}
|
||||
\key{the time between 2 dates in a time range}{C-c C-y}
|
||||
\metax{change timestamp at cursor $\pm 1$ day}{\quad\quad\quad\quad S-RIGHT/LEFT \notetwo}
|
||||
\key{change year/month/day at cursor by $\pm 1$}{S-UP/DOWN \notetwo}
|
||||
\key{access the calendar for the current date}{C-c >}
|
||||
\key{insert timestamp matching date in calendar}{C-c <}
|
||||
\key{access agenda for current date}{C-c C-o}
|
||||
\key{select date while prompted}{mouse-1/RET}
|
||||
%\key{... select date in calendar}{mouse-1/RET}
|
||||
%\key{... scroll calendar back/forward one month}{< / >}
|
||||
%\key{... forward/backward one day}{S-LEFT/RIGHT}
|
||||
%\key{... forward/backward one week}{S-UP/DOWN}
|
||||
%\key{... forward/backward one month}{M-S-LEFT/RIGHT}
|
||||
\key{toggle custom format display for dates/times}{C-c C-x C-t}
|
||||
|
||||
\newcolumn
|
||||
|
||||
{\bf Clocking time}
|
||||
|
||||
\key{start clock on current item}{C-c C-x C-i}
|
||||
\key{stop/cancel clock on current item}{C-c C-x C-o/x}
|
||||
\key{display total subtree times}{C-c C-x C-d}
|
||||
\key{remove displayed times}{C-c C-c}
|
||||
\key{insert/update table with clock report}{C-c C-x C-r}
|
||||
|
||||
\section{Agenda Views}
|
||||
|
||||
\key{add/move current file to front of agenda}{C-c [}
|
||||
\key{remove current file from your agenda}{C-c ]}
|
||||
\key{cycle through agenda file list}{C-'}
|
||||
\key{set/remove restriction lock}{C-c C-x </>}
|
||||
|
||||
\key{compile agenda for the current week}{C-c a a \noteone}
|
||||
\key{compile global TODO list}{C-c a t \noteone}
|
||||
\key{compile TODO list for specific keyword}{C-c a T \noteone}
|
||||
\key{match tags, TODO kwds, properties}{C-c a m \noteone}
|
||||
\key{match only in TODO entries}{C-c a M \noteone}
|
||||
\key{find stuck projects}{C-c a \# \noteone}
|
||||
\key{configure custom commands}{C-c a C \noteone}
|
||||
%\key{configure stuck projects}{C-c a ! \noteone}
|
||||
\key{agenda for date at cursor}{C-c C-o}
|
||||
|
||||
{\bf Commands available in an agenda buffer}
|
||||
|
||||
{\bf View Org file}
|
||||
|
||||
\key{show original location of item}{SPC/mouse-3}
|
||||
%\key{... also available with}{mouse-3}
|
||||
\key{show and recenter window}{L}
|
||||
\key{goto original location in other window}{TAB/mouse-2}
|
||||
%\key{... also available with}{mouse-2}
|
||||
\key{goto original location, delete other windows}{RET}
|
||||
\key{show subtree in indirect buffer, ded.\ frame}{C-c C-x b}
|
||||
\key{toggle follow-mode}{F}
|
||||
|
||||
{\bf Change display}
|
||||
|
||||
\key{delete other windows}{o}
|
||||
\key{view mode dispatcher}{v}
|
||||
\key{switch to day/week/month/year/def view}{d w vm vy vSP}
|
||||
\key{toggle diary entries / time grid / habits}{D / G / K}
|
||||
\key{toggle entry text / clock report}{E / R}
|
||||
\key{toggle display of logbook entries}{l / v l/L/c}
|
||||
\key{toggle inclusion of archived trees/files}{v a/A}
|
||||
\key{refresh agenda buffer with any changes}{r / g}
|
||||
\key{filter with respect to a tag}{/}
|
||||
\key{save all org-mode buffers}{s}
|
||||
\key{display next/previous day,week,...}{f / b}
|
||||
\key{goto today / some date (prompt)}{. / j}
|
||||
|
||||
{\bf Remote editing}
|
||||
|
||||
\key{digit argument}{0-9}
|
||||
\key{change state of current TODO item}{t}
|
||||
\key{kill item and source}{C-k}
|
||||
\key{archive default}{\$ / a}
|
||||
\key{refile the subtree}{C-c C-w}
|
||||
\key{set/show tags of current headline}{: / T}
|
||||
\key{set effort property (prefix=nth)}{e}
|
||||
\key{set / compute priority of current item}{, / P}
|
||||
\key{raise/lower priority of current item}{S-UP/DOWN\notetwo}
|
||||
\key{run an attachment command}{C-c C-a}
|
||||
\key{schedule/set deadline for this item}{C-c C-s/d}
|
||||
\metax{change timestamp one day earlier/later}{S-LEFT/RIGHT\notetwo}
|
||||
\key{change timestamp to today}{>}
|
||||
\key{insert new entry into diary}{i}
|
||||
\newcolumn
|
||||
\key{start/stop/cancel the clock on current item}{I / O / X}
|
||||
\key{jump to running clock entry}{J}
|
||||
\key{mark / unmark / execute bulk action}{m / u / B}
|
||||
|
||||
{\bf Misc}
|
||||
|
||||
\key{follow one or offer all links in current entry}{C-c C-o}
|
||||
|
||||
{\bf Calendar commands}
|
||||
|
||||
\key{find agenda cursor date in calendar}{c}
|
||||
\key{compute agenda for calendar cursor date}{c}
|
||||
\key{show phases of the moon}{M}
|
||||
\key{show sunrise/sunset times}{S}
|
||||
\key{show holidays}{H}
|
||||
\key{convert date to other calendars}{C}
|
||||
|
||||
{\bf Quit and Exit}
|
||||
|
||||
\key{quit agenda, remove agenda buffer}{q}
|
||||
\key{exit agenda, remove all agenda buffers}{x}
|
||||
|
||||
\section{LaTeX and cdlatex-mode}
|
||||
|
||||
\key{preview LaTeX fragment}{C-c C-x C-l}
|
||||
\key{expand abbreviation (cdlatex-mode)}{TAB}
|
||||
\key{insert/modify math symbol (cdlatex-mode)}{` / '}
|
||||
\key{insert citation using RefTeX}{C-c C-x [}
|
||||
|
||||
\section{Exporting and Publishing}
|
||||
|
||||
Exporting creates files with extensions {\it .txt\/} and {\it .html\/}
|
||||
in the current directory. Publishing puts the resulting file into
|
||||
some other place.
|
||||
|
||||
\key{export/publish dispatcher}{C-c C-e}
|
||||
|
||||
\key{toggle asynchronous export}{C-c C-e C-a}
|
||||
\key{toggle body/visible only export}{C-c C-e C-b/v}
|
||||
\key{toggle subtree export}{C-c C-e C-s}
|
||||
\key{insert template of export options}{C-c C-e \#}
|
||||
|
||||
\key{toggle fixed width for entry or region}{C-c :}
|
||||
\key{toggle pretty display of scripts, entities}{C-c C-x {\tt\char`\\}}
|
||||
|
||||
Lines starting with \kbd{\#} and subtrees starting with COMMENT are
|
||||
never exported.
|
||||
|
||||
\key{toggle COMMENT keyword on entry}{C-c ;}
|
||||
|
||||
\section{Dynamic Blocks}
|
||||
|
||||
\key{update dynamic block at point}{C-c C-x C-u}
|
||||
\metax{update all dynamic blocks}{C-u C-c C-x C-u}
|
||||
|
||||
\section{Notes}
|
||||
[1] This is only a suggestion for a binding of this command. Choose
|
||||
your own key as shown under ACTIVATION.
|
||||
|
||||
[2] Keybinding affected by {\tt org-support-shift-select} and also
|
||||
{\tt org-replace-disputed-keys}.
|
||||
|
||||
\copyrightnotice
|
||||
|
||||
\bye
|
||||
|
||||
% Local variables:
|
||||
% compile-command: "pdftex orgcard"
|
||||
% End:
|
||||
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,44 @@
|
||||
% Copyright (C) 2007-2013 Free Software Foundation, Inc.
|
||||
|
||||
% This file is part of GNU Emacs.
|
||||
|
||||
% GNU Emacs 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 GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
% This file defines `\pdflayout':
|
||||
% - \pdflayout=(0) is A4 portrait,
|
||||
% - \pdflayout=(1) is letter (US) portrait,
|
||||
% - \pdflayout=(0l) is A4 landscape.
|
||||
% - \pdflayout=(1l) is letter (US) landscape,
|
||||
|
||||
\input ifpdf.sty
|
||||
|
||||
\ifpdf
|
||||
\def\pdflayout=(#1#2){
|
||||
\if0#1 % A4
|
||||
\pdfpagewidth=21cm
|
||||
\pdfpageheight=29.7cm
|
||||
\else\if1#1 % Letter
|
||||
\pdfpagewidth=8.5in
|
||||
\pdfpageheight=11in
|
||||
\letterpaper=1
|
||||
\fi\fi
|
||||
\if l#2 % Landscape
|
||||
\edef\oldwidth{\the\pdfpagewidth}
|
||||
\pdfpagewidth=\pdfpageheight
|
||||
\pdfpageheight=\oldwidth
|
||||
\fi
|
||||
}
|
||||
\else
|
||||
\def\pdflayout=(#1#2){}
|
||||
\fi
|
||||
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user