GithubHelp home page GithubHelp logo

jkitchin / org-ref Goto Github PK

View Code? Open in Web Editor NEW
1.3K 40.0 243.0 6.22 MB

org-mode modules for citations, cross-references, bibliographies in org-mode and useful bibtex tools to go with it.

License: GNU General Public License v3.0

Emacs Lisp 95.47% TeX 4.07% Makefile 0.31% Shell 0.15%

org-ref's Introduction

org-ref: citations, cross-references, indexes, glossaries and bibtex utilities for org-mode

MELPA MELPA Stable

Overview of org-ref for export to PDF via LaTeX.

About org-ref

org-ref makes it easy to insert citations, cross-references, indexes and glossaries as hyper-functional links into org files. The links are fontified so you can tell them apart from other links, and each link is clickable to access functions like opening a pdf, notes or url associated with the link. Each link also can be exported to LaTeX to build a PDF. For citations, export to other formats is supported by citeproc for high quality export to HTML, markdown, plain text, or stand-alone (i.e. independent of a bibtex file) LaTeX. For a full explanation of the features in org-ref see ./org-ref.org.

What about org-cite?

A new syntax for citations was added in org-mode version 9.5. org-cite is designed to be very modular, with different processors for inserting, activating, following and exporting citations. It also uses a different cite/style type of syntax. It does not handle cross-references or provide any of the bibtex tools that are available in org-ref. The main advantages of org-cite include:

  1. It is built in to org-mode now
  2. It is highly modular, so you can configure it any way you want

It is possible to use org-cite for citation support instead of the org-ref citation links. You can configure the org-ref-insert-cite-function variable to use org-cite-insert. This will then use your org-cite configured processors to insert, follow, activate and export citations. You should avoid mixing org-ref citation links and org-cite citations. They are handled independently.

(setq org-ref-insert-cite-function
      (lambda ()
	(org-cite-insert nil)))

You can still use the org-ref cross-reference links if you use org-cite citations. These packages should be able to co-exist without issue.

Screenshots

Here are some annotated images of basic insertion of citations in org-mode. These are with the ivy backend.

./screenshots/introduction.png

This what an inserted link looks like.

./screenshots/cite-tooltip.png

The links in org-ref are hyper-functional (that means they have more than one action associated with them). They do things when your cursor is on them, or you click on them, and when the mouse hovers over them.

Here is an example of a menu of actions you get when you click on a cite link.

./screenshots/functional-cite-links.png

Here is a cross-reference link.

./screenshots/functional-links-2.png

org-ref can analyze your org-file and tell you about it, for example if there are bad citations, multiply defined labels, bad reference links, missing bibliography files, etc… You can select each one and it will jump to the location to help you fix it.

./screenshots/org-ref-analysis.png

Installation

Package installation via Melpa

org-ref has been added to Melpa. This is the recommended way to install org-ref as it should also install almost all the dependencies. It also should reflect what is in the master branch in the Github repo (https://github.com/jkitchin/org-ref).

(add-to-list 'package-archives
	     '("melpa" . "https://melpa.org/packages/") t)
(package-initialize)

Then, you should be able to do M-x package-list-packages, find org-ref and install it, or with

(use-package org-ref)

Two exceptions to packages that are not installed are helm, helm-bibtex, ivy and ivy-bibtex. You have to install those yourself. This change is to accommodate people who just can not stand having those packages installed if they do not use them.

Installation via github

Make sure all the dependencies are installed. Then clone this repo, add it to your load-path.

git clone https://github.com/jkitchin/org-ref.git

Add this to your .emacs file and see the *Configuration section.

Configuration

Version 3 has eliminated all the org-ref-* variables, and instead uses analogous variables defined in bibtex-completion.

There are some working configurations at https://github.com/jkitchin/org-ref/tree/master/melpa.

Here is how I have these variables set for myself.

(setq bibtex-completion-bibliography '("~/Dropbox/emacs/bibliography/references.bib"
					 "~/Dropbox/emacs/bibliography/dei.bib"
					 "~/Dropbox/emacs/bibliography/master.bib"
					 "~/Dropbox/emacs/bibliography/archive.bib")
	bibtex-completion-library-path '("~/Dropbox/emacs/bibliography/bibtex-pdfs/")
	bibtex-completion-notes-path "~/Dropbox/emacs/bibliography/notes/"
	bibtex-completion-notes-template-multiple-files "* ${author-or-editor}, ${title}, ${journal}, (${year}) :${=type=}: \n\nSee [[cite:&${=key=}]]\n"

	bibtex-completion-additional-search-fields '(keywords)
	bibtex-completion-display-formats
	'((article       . "${=has-pdf=:1}${=has-note=:1} ${year:4} ${author:36} ${title:*} ${journal:40}")
	  (inbook        . "${=has-pdf=:1}${=has-note=:1} ${year:4} ${author:36} ${title:*} Chapter ${chapter:32}")
	  (incollection  . "${=has-pdf=:1}${=has-note=:1} ${year:4} ${author:36} ${title:*} ${booktitle:40}")
	  (inproceedings . "${=has-pdf=:1}${=has-note=:1} ${year:4} ${author:36} ${title:*} ${booktitle:40}")
	  (t             . "${=has-pdf=:1}${=has-note=:1} ${year:4} ${author:36} ${title:*}"))
	bibtex-completion-pdf-open-function
	(lambda (fpath)
	  (call-process "open" nil 0 nil fpath)))

I also find these settings helpful for automatically generating bibtex keys.

(require 'bibtex)

(setq bibtex-autokey-year-length 4
      bibtex-autokey-name-year-separator "-"
      bibtex-autokey-year-title-separator "-"
      bibtex-autokey-titleword-separator "-"
      bibtex-autokey-titlewords 2
      bibtex-autokey-titlewords-stretch 1
      bibtex-autokey-titleword-length 5)

(define-key bibtex-mode-map (kbd "H-b") 'org-ref-bibtex-hydra/body)

After you set those options, you have these options to load org-ref.

If you prefer ivy-bibtex, you should use this. It requires ivy-bibtex, but this is not currently automatically installed by MELPA.

(require 'org-ref)
(require 'org-ref-ivy)

If you prefer helm, you can instead use this. This uses code from helm-bibtex for citation insertion. It requires helm-bibtex, but this is not currently automatically installed by MELPA.

(require 'org-ref)
(require 'org-ref-helm)

org-ref no longer binds keyboard shortcuts for you. You have some options here. To get the behavior of version 2, use this in your init file:

(define-key org-mode-map (kbd "C-c ]") 'org-ref-insert-link)
C-c ]
insert a citation
C-u C-c ]
insert a cross-reference
Cu C-u C-c ]
insert a label

or

(define-key org-mode-map (kbd "C-c ]") 'org-ref-insert-link-hydra/body)
  • C-c ] [:: insert a citation
C-c ] ]
insert a cross-reference
C-c ] \
insert a label

You can bind each insert command separately if you want after the library is loaded like this. Here I use the hyper key as a modifier, but you can choose anything you find convenient.

(define-key org-mode-map (kbd "H-c") org-ref-insert-cite-function)
(define-key org-mode-map (kbd "H-r") org-ref-insert-ref-function)
(define-key org-mode-map (kbd "H-l") org-ref-insert-label-function)

If you use some other completing-read backend like selectrum, or ido, then for a bare-bones library that uses vanilla completing-read, you can simply require ‘org-ref. I don’t find the vanilla completing-read setup that useful on its own as it doesn’t do candidate narrowing or fuzzy matching without some external configuration. It is an option if you want it though.

(require 'org-ref)

You can use any other library that inserts links you want. Some of these include:

  1. citar (https://github.com/bdarcus/citar#configuration)
  2. ebib (https://joostkremers.github.io/ebib/)
  3. You could even roll your own insert functions.

LaTeX/PDF export

If you plan to build PDF files via LaTeX you need to make sure that org-latex-pdf-process is set to process the bibliography (using bibtex or biblatex). Here is one example of how to do that (see ./org-ref.org::*LaTeX export for other alternatives).

(setq org-latex-pdf-process (list "latexmk -shell-escape -bibtex -f -pdf %f"))

Go forth and citate.

Some other useful libraries in org-ref

Note many of these have been renamed with an org-ref prefix.

x2bib
Convert bibliography formats to and from bibtex. In most cases, it relies on the command line bibutils package (available in source form at the link; can be installed on a Mac using Homebrew with brew install bibutils.

The following libraries are not loaded by default. They may be useful in specialist cases:

doi-utils
Download bibtex entries and PDFs from doi and crossref queries.
nist-webbook
Links to NIST Webbook resources
org-ref-arxiv
arxiv links, add bibtex entries from arxiv.org.
org-ref-bibtex
Utility functions for bibtex
org-ref-isbn
Add bibtex entries from a book ISBN
org-ref-pubmed
pubmed links, add bibtex entries from PMID.
org-ref-scifinder
one small function for searching SciFinder
org-ref-scopus
Scopus links and queries
org-ref-worldcat
One small function for searching Worldcat
org-ref-wos
WebOfKnowledge links and queries

The following libraries are still included, but they have been unreliable and are no longer recommended for use:

org-ref-pdf
Add drag-n-drop PDF to create bibtex entries (this code has not been reliable, and is no longer recommended for use)
org-ref-url-utils
Add drag-n-drop urls to create bibtex entries

Manual

For more information, see the org-ref manual, or preferably use M-x org-ref-help in emacs.

Errors and issues

Please report errors here: issues.

Contributors

I would like to thank the contributors to org-ref, and everyone who has filed an issue, or asked about org-ref on the org-mode Mailing list.

If you are interested in making a contribution to org-ref, I encourage you to reach out to me to discuss the idea first. The issue handler is a great way to do that, so that others can offer opinions too.

org-ref's People

Contributors

ahmed-shariff avatar ajsteven130 avatar andreas-h avatar bennati avatar brabalan avatar chemmi avatar divinenephron avatar ericdanan avatar he-sk avatar jabranham avatar jagrg avatar jkitchin avatar johnrkitchin avatar jschaf avatar kisaragi-hiu avatar kuangdash avatar larandall avatar lechten avatar llcc avatar machc avatar marsam avatar olafmerkert avatar piater avatar plantarum avatar syohex avatar teoric avatar titan-c avatar tmalsburg avatar tompre avatar treese avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

org-ref's Issues

org-open-at-point fails with wrong-type-argument

When I try to click on a link, or C-c C-o it fails with a wrong-type-argument stringp nil error.

Steps to reproduce

git clone https://gist.github.com/32b29f1a75bd103e7037.git org-ref-issue-7
cd org-ref-issue-7
emacs -Q -l init.el
# C-x C-f test.org RET
# TAB
# C-n
# C-n
# C-c C-o

Result

The backtrace is included in backtrace.txt in the gist.

Expected result

Clicking the link and org-open-at-point do not produce an error. Instead helm pops up offering some options for doing stuff with the link.

Speculation

I looked at the issue with edebug. I think the problem is in org-ref-get-citation-string-at-point. The call to bibtex-search-entry fails to find the entry. When I looked in bibtex-search-entry it appears to fail because the variable bibtex-entry-types is nil when it should be a regex of valid bibtex types (e.g. @Article{}). This is because the variable is set when bibtex-mode is activated, and the current buffer when bibtex-search-entry is called is a temporary buffer in fundamental-mode. I'm not sure how to fix this though.

Some helm options don't seem to work

Hi John,

I am trying to use C-c ] to open up my bibtex library in helm, use the incremental search to narrow down to all articles written by a particular author, then do C-z to open the actions and I noticed some of the options give me this error,

f-absolute?: Wrong type argument: stringp, nil

For example, two common operations [f2] Open pdf and [f8] open notes give me the error while [f3] open url and [f9] show entry work as expected. Do you know what can be going wrong?

Helm-bibtex support for org-ref-style notes file is imminent.

Just a heads up that I will soon add support for an org-ref-style notes file (all notes in one org-file) to helm-bibtex. See the feature-branch note-files. The default template for notes does not duplicate the information from the BibTeX file (see example below), the property drawer only includes the BibTeX key. However, it's easy to extend the template via the variable helm-bibtex-notes-template-one-file.

* Gigerenzer, G. (1998): We need statistical thinking, not statistical rituals
  :PROPERTIES:
  :Custom_ID: Gigerenzer1998
  :END:

Deep thoughts go here: …

The default behaviour in helm-bibtex will not change (one file per article) so you can probably ignore this if you want. However, this feature perhaps allows you to simplify things on your side? Not sure.

Org-ref incorrectly passing bibliography to helm-bibtex

Before migrating to helm-bibtex, C-c ] would look at the default bibliography when inserting a link. Now, when using the helm-bibtex functionality (org-ref-helm-insert-cite-link), it complains that:
user-error: BibTeX file references.bib could not be found.

If helm-bibtex is called directly after configuring (setq helm-bibtex-bibliography "~/dropbox/bibliography/references.bib"), there is no problem using it to inserting the cite:reference in the same org file.

The code also works as is if the link bibliography:~/dropbox/bibliography/references.bib is placed in the file. However, I don't see why this should be necessary if helm-bibtex has no problem finding references.bib when the parent directory is in BIBINPUTS. With only one reference.bib file, I would prefer not to have to add this additional line to every file.

Adding this line also produces an unwanted inclusion of the reference file path when exporting with biblatex. Currently adding this line and then deleting before export is the workaround I am using.

File mode specification error

Hi John,

I am having an issue with a few items in my bibliography. I insert a citation, using either the helm-bibtex or the org-ref-insert-cite-link functions, but when I click on the link (to open the pdf, for example) I get the following in the message buffer:

File mode specification error: (invalid-function dbus-ignore-errors)
(No changes need to be saved)
File mode specification error: (invalid-function dbus-ignore-errors)
progn: Wrong type argument: stringp, nil
(No changes need to be saved)
File mode specification error: (invalid-function dbus-ignore-errors)
!!! No entry found !!!

This happens only with some references. Here is the bibtex entry for one of them, in case it is of any use:

@TechReport{Cameron2011,
Title = {EUSeaMap - Preparatory Action for development and assessment of a European broad-scale seabed habitat map final report},
Author = {Cameron, A., and Askew, N.},
Year = {2011},
Note = {Available at http://jncc.gov.uk/euseamap},
File = {:Cameron2011.pdf:PDF},
Timestamp = {2013.09.09}
}

I am using both helm-bibtext and org-ref. Let me know if you need any other information.

Invalid search bound (wrong side of point)

I have the following error when I put the point on the right of an org-ref link. For instance with the following link:

[[cite:OConnor2011]] 

If I put the cursor on the very right, then hit right arrow again to make sure I’m after the link, I get the following backtrace:

Debugger entered--Lisp error: (error "Invalid search bound (wrong side of point)")
  search-forward("," 33319 t 1)
  (if (search-forward "," link-string-end t 1) (setq key-end (- (match-end 0) 1)) (setq key-end link-string-end))
  (save-excursion (if (search-forward "," link-string-end t 1) (setq key-end (- (match-end 0) 1)) (setq key-end link-string-end)))
  (let (key-beginning key-end) (save-excursion (if (search-forward "," link-string-end t 1) (setq key-end (- (match-end 0) 1)) (setq key-end link-string-end))) (save-excursion (if (search-backward "," link-string-beginning 1 1) (setq key-beginning (+ (match-beginning 0) 1)) (setq key-beginning link-string-beginning))) (let ((bibtex-key (org-ref-strip-string (buffer-substring key-beginning key-end)))) (set-text-properties 0 (length bibtex-key) nil bibtex-key) bibtex-key))
  (let (link-string-beginning link-string-end) (save-excursion (goto-char (org-element-property :begin object)) (search-forward link-string nil nil 1) (setq link-string-beginning (match-beginning 0)) (setq link-string-end (match-end 0))) (let (key-beginning key-end) (save-excursion (if (search-forward "," link-string-end t 1) (setq key-end (- (match-end 0) 1)) (setq key-end link-string-end))) (save-excursion (if (search-backward "," link-string-beginning 1 1) (setq key-beginning (+ (match-beginning 0) 1)) (setq key-beginning link-string-beginning))) (let ((bibtex-key (org-ref-strip-string (buffer-substring key-beginning key-end)))) (set-text-properties 0 (length bibtex-key) nil bibtex-key) bibtex-key)))
  (progn (let (link-string-beginning link-string-end) (save-excursion (goto-char (org-element-property :begin object)) (search-forward link-string nil nil 1) (setq link-string-beginning (match-beginning 0)) (setq link-string-end (match-end 0))) (let (key-beginning key-end) (save-excursion (if (search-forward "," link-string-end t 1) (setq key-end (- (match-end 0) 1)) (setq key-end link-string-end))) (save-excursion (if (search-backward "," link-string-beginning 1 1) (setq key-beginning (+ (match-beginning 0) 1)) (setq key-beginning link-string-beginning))) (let ((bibtex-key (org-ref-strip-string (buffer-substring key-beginning key-end)))) (set-text-properties 0 (length bibtex-key) nil bibtex-key) bibtex-key))))
  (if (not (org-element-property :contents-begin object)) (progn (let (link-string-beginning link-string-end) (save-excursion (goto-char (org-element-property :begin object)) (search-forward link-string nil nil 1) (setq link-string-beginning (match-beginning 0)) (setq link-string-end (match-end 0))) (let (key-beginning key-end) (save-excursion (if (search-forward "," link-string-end t 1) (setq key-end (- ... 1)) (setq key-end link-string-end))) (save-excursion (if (search-backward "," link-string-beginning 1 1) (setq key-beginning (+ ... 1)) (setq key-beginning link-string-beginning))) (let ((bibtex-key (org-ref-strip-string ...))) (set-text-properties 0 (length bibtex-key) nil bibtex-key) bibtex-key)))) link-string)
  (let* ((object (org-element-context)) (link-string (org-element-property :path object))) (let ((cp (point))) (goto-char (org-element-property :begin object)) (search-forward link-string (org-element-property :end object)) (goto-char (match-beginning 0)) (if (< cp (point)) nil (goto-char cp))) (if (not (org-element-property :contents-begin object)) (progn (let (link-string-beginning link-string-end) (save-excursion (goto-char (org-element-property :begin object)) (search-forward link-string nil nil 1) (setq link-string-beginning (match-beginning 0)) (setq link-string-end (match-end 0))) (let (key-beginning key-end) (save-excursion (if (search-forward "," link-string-end t 1) (setq key-end ...) (setq key-end link-string-end))) (save-excursion (if (search-backward "," link-string-beginning 1 1) (setq key-beginning ...) (setq key-beginning link-string-beginning))) (let ((bibtex-key ...)) (set-text-properties 0 (length bibtex-key) nil bibtex-key) bibtex-key)))) link-string))
  org-ref-get-bibtex-key-under-cursor()
  (setq key (org-ref-get-bibtex-key-under-cursor))
  (if key nil (setq key (org-ref-get-bibtex-key-under-cursor)))
  (let ((org-ref-bibliography-files (org-ref-find-bibliography)) (file)) (if key nil (setq key (org-ref-get-bibtex-key-under-cursor))) (setq file (catch (quote result) (let* ((--cl-var-- org-ref-bibliography-files) (file nil)) (while (consp --cl-var--) (setq file (car --cl-var--)) (if (org-ref-key-in-file-p key (file-truename file)) (throw (quote result) file)) (setq --cl-var-- (cdr --cl-var--))) nil))) (cons key file))
  org-ref-get-bibtex-key-and-file()
  (let* ((results (org-ref-get-bibtex-key-and-file)) (key (car results)) (bibfile (cdr results))) (if bibfile (save-excursion (let ((temp-buffer (generate-new-buffer " *temp*"))) (save-current-buffer (set-buffer temp-buffer) (unwind-protect (progn (insert-file-contents bibfile) (bibtex-set-dialect ... t) (bibtex-search-entry key) (org-ref-bib-citation)) (and (buffer-name temp-buffer) (kill-buffer temp-buffer)))))) "!!! No entry found !!!"))
  org-ref-get-citation-string-at-point()
  (message (org-ref-get-citation-string-at-point))
  (cond ((-contains\? org-ref-cite-types type) (message (org-ref-get-citation-string-at-point))) ((string= type "ref") (message "%scount: %s" (org-ref-get-label-context (org-element-property :path object)) (org-ref-count-labels (org-element-property :path object)))) ((string= type "eqref") (message "%scount: %s" (org-ref-get-label-context (org-element-property :path object)) (org-ref-count-labels (org-element-property :path object)))) ((string= type "label") (let ((count (org-ref-count-labels (org-element-property :path object)))) (message (concat (number-to-string count) " occurence" (if (or (= count 0) (> count 1)) (progn "s")))))) ((string= type "custom-id") (save-excursion (org-open-link-from-string (format "[[#%s]]" (org-element-property :path object))) (message "%s" (org-get-heading)))) ((string= type "bibliography") (let* ((bibfile) (object (org-element-context)) (link-string (org-element-property :path object)) (link-string-beginning) (link-string-end)) (save-excursion (goto-char (org-element-property :begin object)) (search-forward link-string nil nil 1) (setq link-string-beginning (match-beginning 0)) (setq link-string-end (match-end 0))) (if (> link-string-beginning (point)) (progn (goto-char link-string-beginning))) (let (key-beginning key-end) (save-excursion (if (search-forward "," link-string-end 1 1) (setq key-end (- ... 1)) (setq key-end (point)))) (save-excursion (if (search-backward "," link-string-beginning 1 1) (setq key-beginning (+ ... 1)) (setq key-beginning (point)))) (setq bibfile (org-ref-strip-string (buffer-substring key-beginning key-end))) (if (file-exists-p bibfile) (message "%s exists." bibfile) (message "!!! %s NOT FOUND !!!" bibfile))))))
  (save-excursion (cond ((-contains\? org-ref-cite-types type) (message (org-ref-get-citation-string-at-point))) ((string= type "ref") (message "%scount: %s" (org-ref-get-label-context (org-element-property :path object)) (org-ref-count-labels (org-element-property :path object)))) ((string= type "eqref") (message "%scount: %s" (org-ref-get-label-context (org-element-property :path object)) (org-ref-count-labels (org-element-property :path object)))) ((string= type "label") (let ((count (org-ref-count-labels (org-element-property :path object)))) (message (concat (number-to-string count) " occurence" (if (or ... ...) (progn "s")))))) ((string= type "custom-id") (save-excursion (org-open-link-from-string (format "[[#%s]]" (org-element-property :path object))) (message "%s" (org-get-heading)))) ((string= type "bibliography") (let* ((bibfile) (object (org-element-context)) (link-string (org-element-property :path object)) (link-string-beginning) (link-string-end)) (save-excursion (goto-char (org-element-property :begin object)) (search-forward link-string nil nil 1) (setq link-string-beginning (match-beginning 0)) (setq link-string-end (match-end 0))) (if (> link-string-beginning (point)) (progn (goto-char link-string-beginning))) (let (key-beginning key-end) (save-excursion (if (search-forward "," link-string-end 1 1) (setq key-end ...) (setq key-end ...))) (save-excursion (if (search-backward "," link-string-beginning 1 1) (setq key-beginning ...) (setq key-beginning ...))) (setq bibfile (org-ref-strip-string (buffer-substring key-beginning key-end))) (if (file-exists-p bibfile) (message "%s exists." bibfile) (message "!!! %s NOT FOUND !!!" bibfile)))))))
  (let* ((object (org-element-context)) (type (org-element-property :type object))) (save-excursion (cond ((-contains\? org-ref-cite-types type) (message (org-ref-get-citation-string-at-point))) ((string= type "ref") (message "%scount: %s" (org-ref-get-label-context (org-element-property :path object)) (org-ref-count-labels (org-element-property :path object)))) ((string= type "eqref") (message "%scount: %s" (org-ref-get-label-context (org-element-property :path object)) (org-ref-count-labels (org-element-property :path object)))) ((string= type "label") (let ((count (org-ref-count-labels ...))) (message (concat (number-to-string count) " occurence" (if ... ...))))) ((string= type "custom-id") (save-excursion (org-open-link-from-string (format "[[#%s]]" (org-element-property :path object))) (message "%s" (org-get-heading)))) ((string= type "bibliography") (let* ((bibfile) (object (org-element-context)) (link-string (org-element-property :path object)) (link-string-beginning) (link-string-end)) (save-excursion (goto-char (org-element-property :begin object)) (search-forward link-string nil nil 1) (setq link-string-beginning (match-beginning 0)) (setq link-string-end (match-end 0))) (if (> link-string-beginning (point)) (progn (goto-char link-string-beginning))) (let (key-beginning key-end) (save-excursion (if ... ... ...)) (save-excursion (if ... ... ...)) (setq bibfile (org-ref-strip-string ...)) (if (file-exists-p bibfile) (message "%s exists." bibfile) (message "!!! %s NOT FOUND !!!" bibfile))))))))
  (progn (let* ((object (org-element-context)) (type (org-element-property :type object))) (save-excursion (cond ((-contains\? org-ref-cite-types type) (message (org-ref-get-citation-string-at-point))) ((string= type "ref") (message "%scount: %s" (org-ref-get-label-context (org-element-property :path object)) (org-ref-count-labels (org-element-property :path object)))) ((string= type "eqref") (message "%scount: %s" (org-ref-get-label-context (org-element-property :path object)) (org-ref-count-labels (org-element-property :path object)))) ((string= type "label") (let ((count ...)) (message (concat ... " occurence" ...)))) ((string= type "custom-id") (save-excursion (org-open-link-from-string (format "[[#%s]]" ...)) (message "%s" (org-get-heading)))) ((string= type "bibliography") (let* ((bibfile) (object ...) (link-string ...) (link-string-beginning) (link-string-end)) (save-excursion (goto-char ...) (search-forward link-string nil nil 1) (setq link-string-beginning ...) (setq link-string-end ...)) (if (> link-string-beginning ...) (progn ...)) (let (key-beginning key-end) (save-excursion ...) (save-excursion ...) (setq bibfile ...) (if ... ... ...))))))))
  (if (eq major-mode (quote org-mode)) (progn (let* ((object (org-element-context)) (type (org-element-property :type object))) (save-excursion (cond ((-contains\? org-ref-cite-types type) (message (org-ref-get-citation-string-at-point))) ((string= type "ref") (message "%scount: %s" (org-ref-get-label-context ...) (org-ref-count-labels ...))) ((string= type "eqref") (message "%scount: %s" (org-ref-get-label-context ...) (org-ref-count-labels ...))) ((string= type "label") (let (...) (message ...))) ((string= type "custom-id") (save-excursion (org-open-link-from-string ...) (message "%s" ...))) ((string= type "bibliography") (let* (... ... ... ... ...) (save-excursion ... ... ... ...) (if ... ...) (let ... ... ... ... ...))))))))
  (save-restriction (widen) (if (eq major-mode (quote org-mode)) (progn (let* ((object (org-element-context)) (type (org-element-property :type object))) (save-excursion (cond ((-contains\? org-ref-cite-types type) (message ...)) ((string= type "ref") (message "%scount: %s" ... ...)) ((string= type "eqref") (message "%scount: %s" ... ...)) ((string= type "label") (let ... ...)) ((string= type "custom-id") (save-excursion ... ...)) ((string= type "bibliography") (let* ... ... ... ...))))))))
  org-ref-link-message()
  apply(org-ref-link-message nil)
  byte-code("r\301�\302H�\303H\"\210)\301\207" [timer apply 5 6] 4)
  timer-event-handler([t 0 0 500000 t org-ref-link-message nil idle 0])

Make org-ref / doi-utils available on MELPA

Thanks for org-ref, fantastic work! Please consider making it available on MELPA. It might make sense to orthogonalize doi-utils and org-ref and to provide them as two separate packages.

Warning (emacs): Possible archaic use of (hi-lock-mode)

Setup:

  • Emacs: 24.4.1/24.3.x
  • Org-mode: 8.2.10
  • Org-ref: d060f46

Issue:
Unnecessary warning message.

Warning (emacs): Possible archaic use of (hi-lock-mode).
Use (global-hi-lock-mode 1) in .emacs to enable hi-lock for all buffers,
use (hi-lock-mode 1) for individual buffers.  For compatibility with Emacs
versions before 22 use the following in your init file:

        (if (functionp 'global-hi-lock-mode)
            (global-hi-lock-mode 1)
          (hi-lock-mode 1))

Code responsible: in org-ref.el

(when org-ref-colorize-links
  (highlight-regexp org-ref-cite-re 'org-ref-cite-face)
  (highlight-regexp org-ref-label-re 'org-ref-label-face)
  (highlight-regexp org-ref-ref-re 'org-ref-ref-face))

(global-hi-lock-mode 1) before the piece of above code does NOT lead to the warning, but same code after the piece of code leads to the error message.

Make this work with accented letters, for all export options

I don't know if this is even possible, but a Bibtex entry like this:

@article{hornavcek2012potential,
  title={Potential for high resolution systematic global surface soil moisture retrieval via change detection using Sentinel-1},
  author={Horn{\'a}{\v{c}}ek, Michael and Wagner, Wolfgang and Sabel, Daniel and Truong, Hong-Linh and Snoeij, Paul and Hahmann, Thomas and Diedrich, Erhard and Doubkov{\'a}, Marcela},
  journal={Selected Topics in Applied Earth Observations and Remote Sensing, IEEE Journal of},
  volume={5},
  number={4},
  pages={1303--1311},
  year={2012},
  publisher={IEEE}
}

formats to:

- Horn\'a\vcek, Michael, Wagner, W., Sabel, D., Truong, H., Snoeij, P., Hahmann,
  T., Diedrich, E., Doubkov\'a, Marcela, .. (2012). Potential for high
  resolution systematic global surface soil moisture retrieval via change
  detection using sentinel-1. Selected Topics in Applied Earth Observations and
  Remote Sensing, IEEE Journal of, 5(4), 1303–1311.

when exporting to html, or inserting a formatted reference into the buffer.
It works for export to PDF.

It should look like

Hornáček, M., W. Wagner, D. Sabel, H.-L. Truong, P. Snoeij, T. Hahmann, E. Diedrich, and M. Doubková
2012. Potential for high resolution systematic global surface soil moisture retrieval via change detection
using sentinel-1. Selected Topics in Applied Earth Observations and Remote Sensing, IEEE Journal of,
5(4):1303–1311.

Request for handling additional arguments

I am still struggling with how org-ref handles additional arguments. When citing a page number, I would also like to see the author and year, and not just the page number. I know you can use org-toggle-link-display, but I would rather have something like [[citep:23Jones2013]].

Ref links without descriptions insert extra brackets by default

Hi John,

I noticed when inserting ref links with C-c C-l or Alt-Esc R the completion prompt automatically inserts "]]" at the end of the label we want to refer. The resulting link looks like,

[[ref:orbital-energies%5D%5D][ref:orbital-energies]]]]

Of course, I can get rid of the brackets during the completion and it looks fine. The problem goes away if I add a description to the link.

[[ref:orbital-energies%5D%5D][a description]]

PS. Is there a helm interface for this in jmax?

'eqref' seems to be unexportable via html

the 1426 row: what's the variable 'path' referred to ?
(lambda (keyword desc format) (cond ((eq format 'html) (format "(<eqref>%s</eqref>)" path)) ((eq format 'latex) (format "\\eqref{%s}" keyword)))))

Documentation request: workflow to create or jump to a note for a paper

I think this is related to issue #48 but I could not find a solution there.

What workflow do you recommend to create an org-ref note, or jump to such note, for a given paper. Right now I open a scratch buffer, insert the citation link using helm-bibtex, then use the link to go to the note. Is there a way to avoid creating the link?

links not working on file open

I'm seeing an odd bug (at least, I think it is a bug) where the cite:xyz won't show as a link on newly opening the file. However, if I insert another citation next to the original one, it will then show as a link. I've also found that sometimes adding an extra [ to the beginning of a cite:xyz entry will turn it back into a link. The extra [ can then be deleted. Any ideas what might be causing this? Unfortunately I'm new to emacs, so this may be user error.

I'm using GNU Emacs 24.5.1, org 8.3.1, and the spacemacs starter kit.

Cannot export citations in org-ref.org to LaTeX

I've installed org-ref via el-get.

To test it out, I tried exporting org-ref.org to html and pdf. The html export seems to work fine.

The pdf export, on the other hand, does not. The citations end up as question marks in the text, and the bibliography section is empty.

For some reason I can't attach the tex output or the command output as .txt files here. I've put them on my server at http://sarnet.mooo.com/org-error/

My org-mode setup is below. I appreciate any advice you can give me.

;; Org Mode

(require 'org)

;; yasnippet support
(add-hook 'org-mode-hook
(let ((original-command (lookup-key org-mode-map [tab])))
`(lambda ()
(setq yas-fallback-behavior
'(apply ,original-command))
(local-set-key [tab] 'yas-expand))))

;; latex export
(require 'ox-latex)
(unless (boundp 'org-latex-classes)
(setq org-latex-classes nil))

(add-to-list 'org-latex-classes
'("IEEEtran"
"\documentclass[10pt,journal]{IEEEtran}"
("\section{%s}" . "\section_{%s}")
("\subsection{%s}" . "\subsection_{%s}")
("\subsubsection{%s}" . "\subsubsection*{%s}")))

;; Syntax highlighting
(require 'htmlize)
(require 'ox-latex)
(setq org-src-fontify-natively t)
(setq org-latex-create-formula-image-program 'imagemagick)
(setq org-latex-listings 'minted)
(add-to-list 'org-latex-packages-alist '("" "minted"))
(setq org-latex-pdf-process (list
"pdflatex -interaction nonstopmode -shell-escape -output-directory %o %f"
"pdflatex -interaction nonstopmode -shell-escape -output-directory %o %f"
"pdflatex -interaction nonstopmode -shell-escape -output-directory %o %f"))

;; org-ref

(require 'org-ref)
(require 'doi-utils)
(require 'jmax-bibtex)
(require 'pubmed)
(require 'arxiv)
(require 'sci-id)
(require 'helm-bibtex)

(setq reftex-default-bibliography '("~/school/misc/bib/references.bib"))

(setq org-ref-bibliography-notes "/school/misc/bib/notes.org"
org-ref-default-bibliography '("
/school/misc/bib/references.bib")
org-ref-pdf-directory "~/school/misc/bib/pdf/")

(setq org-latex-pdf-process
'("pdflatex -interaction nonstopmode -shell-escape -output-directory %o %f"
"bibtex %b"
"pdflatex -interaction nonstopmode -shell-escape -output-directory %o %f"
"pdflatex -interaction nonstopmode -shell-escape -output-directory %o %f"))

;; helm-bibtex

(setq helm-bibtex-bibliography "/school/misc/bib/references.bib")
(setq helm-bibtex-library-path "
/school/misc/bib/pdf")

(setq helm-bibtex-pdf-open-function
(lambda (fpath)
(start-process "open" "open" "open" fpath)))

(setq helm-bibtex-notes-path "~/school/misc/bib/helm-bibtex-notes")

citing space issue

Hi @jkitchin

If I do not insert a space between text and citation, the citation can not be exported to latex properly.
For example:
magnetizationcite:shilling-1974-magnet-si-fe. to magnetizationcite:shilling-1974-magnet-si-fe

But if I do add that space, the space will also be exported like magnetization [1]. The space should be deleted actually.

Thanks if you can fix it.

void-function nil error when inserting a citation

I'm running into an issue inserting citations.

I have a bibtex file with one citation in it. I can do 'helm-bibtex' and it finds it fine and inserts the string "cite:futurebuildings" at point, which tells me helm-bibtex is finding the citation OK.

Unfortunately, when doing C-c ] it goes through the same process as helm-bibtex but then tries to run nil as a function.

The backtrace leads to helm-bibtex-insert-citation("futurebuildings"), then runs nil(("futurebuildings")).

Once again, I get the "Something went really wrong, and we can’t process that file. Try again." message when I try to attach the backtrace, so I've put it at http://sarnet.mooo.com/org-error/ along with my init file for org mode. All the files and paths for the relevant variables exist.

I'm no elisp expert, but from what I can tell, in helm-bibtex-insert-citation, format function should be set to "helm-bibtex-format-org-ref." That's the value I get when I eval the following from my document:

(cdr (assoc major-mode helm-bibtex-format-citation-functions))

I've also tried the entire cdr expression as written in the function, in case my understanding of 'or' was mistaken. I got the same result.

Unless I misunderstand the backtrace, the next function to be called would be (funcall format-function keys).

helm-bibtex-format-org-ref does exist as a function (I get help for it when I C-h f it anyway).

Let me know if there is any more information you need.

Typo in helm-bibtex-candidates-formatter (?)

First, thanks for the awesome package! Second, I don't really know elisp, so what follows might not be "the" problem, but it seems to be "a" problem for me and hopefully it's a clue about what's happening.

I updated org-ref yesterday after not having updated in a couple of weeks, and helm-bibtex stopped working in the sense that after loading my bibtex file, it would display nothing. The entire window was blank, and when I inserted a citation I got 400 blank spaces. After a lot of digging, I think it boils down to "it" and "entry" being in the wrong order for the helm-bibtex-get-value function, where the function helm-bibtex-candidates-formatter is being defined in org-ref. I'm no elisp programmer, but when I checked the doctstring for helm-bibtex-get-value, it looks like "it" should be before "entry." Now helm-bibtex works---it isn't blank---but I'm still getting the org-ref citation 400 spaces long.

No information in the modeline for this entry

I have the following entry:

@Report{HondaYoshidaBerger2014,
  year =         2014,
  type =         {Technical Report},
  institution =  {Imperial College},
  number =       {2014/2},
  title =        {Control in the $\pi$-Calculus},
  author =       {Kohei Honda and Nobuko Yoshida and Martin Berger}
}

When I create a link to is (using helm-bibtex) and put my cursor on the entry, I see this in the modeline:

, "", , : ()

org-ref works for other entries, so I'm wondering if there is something wrong with this one or with org-ref.

Note that I can still jump to the bibtex entry or open the pdf using org-ref, it seems that the problem is in the displaying of the information.

Initialization error while loading doi

  • Versions
    org-ref: 471e525
    org-mode: 8.2.10
    emacs: 24.3.1
  • My org-ref setup
(require 'json)
(require 'dash)
(add-to-list 'load-path "~/.emacs.d/opt/org-ref/")
(require 'jmax-bibtex)
(org-babel-load-file "~/.emacs.d/opt/org-ref/org-ref.org")
(org-babel-load-file "~/.emacs.d/opt/org-ref/doi-utils.org")
(setq org-ref-bibliography-notes "~/work/mypapers/notes.org"
      org-ref-default-bibliography '("~/ownCloud/work/mypapers/mynewrefs.bib" "~/ownCloud/work/mypapers/KesselsWMM.bib")
      org-ref-pdf-directory "~/work/papers/")
;      org-ref-insert-cite-link (kbd "C-c i"))
(define-key org-mode-map (kbd "C-c ]") 'org-ref-insert-cite-link)
  • Error with debugger input
Debugger entered--Lisp error: (invalid-function ((fullCitation . "Ann M. Deml, Vladan Stevanovi\304\207, Christopher L. Muhich, Charles B. Musgrave, Ryan O'Hayre, 2014, 'Oxide enthalpy of formation and band gap energy as accurate descriptors of oxygen vacancy formation energetics', <i>Energy &amp; Environmental Science</i>, vol. 7, no. 6, p. 1996") (year . "2014") (coins . "ctx_ver=Z39.88-2004&amp;rft_id=info%3Adoi%2Fhttp%3A%2F%2Fdx.doi.org%2F10.1039%2Fc3ee43874k&amp;rfr_id=info%3Asid%2Fcrossref.org%3Asearch&amp;rft.atitle=Oxide+enthalpy+of+formation+and+band+gap+energy+as+accurate+descriptors+of+oxygen+vacancy+formation+energetics&amp;rft.jtitle=Energy+%26+Environmental+Science&amp;rft.date=2014&amp;rft.volume=7&amp;rft.issue=6&amp;rft.spage=1996&amp;rft.aufirst=Ann+M.&amp;rft.aulast=Deml&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=article&amp;rft.au=Ann+M.+Deml&amp;rft.au=+Vladan+Stevanovi%C4%87&amp;rft.au=+Christopher+L.+Muhich&amp;rft.au=+Charles+B.+Musgrave&amp;rft.au=+Ryan+O%27Hayre") (fullCitation . "Ann M. Deml, Vladan Stevanovi\304\207, Christopher L. Muhich, Charles B. Musgrave, Ryan O'Hayre, 2014, 'Oxide enthalpy of formation and band gap energy as accurate descriptors of oxygen vacancy formation energetics', <i>Energy &amp; Environmental Science</i>, vol. 7, no. 6, p. 1996") (title . "Oxide enthalpy of formation and band gap energy as accurate descriptors of oxygen vacancy formation energetics") (normalizedScore . 100) (score . 4.7002907) (doi . "http://dx.doi.org/10.1039/c3ee43874k")))
  (((fullCitation . "Ann M. Deml, Vladan Stevanovi\304\207, Christopher L. Muhich, Charles B. Musgrave, Ryan O'Hayre, 2014, 'Oxide enthalpy of formation and band gap energy as accurate descriptors of oxygen vacancy formation energetics', <i>Energy &amp; Environmental Science</i>, vol. 7, no. 6, p. 1996") (year . "2014") (coins . "ctx_ver=Z39.88-2004&amp;rft_id=info%3Adoi%2Fhttp%3A%2F%2Fdx.doi.org%2F10.1039%2Fc3ee43874k&amp;rfr_id=info%3Asid%2Fcrossref.org%3Asearch&amp;rft.atitle=Oxide+enthalpy+of+formation+and+band+gap+energy+as+accurate+descriptors+of+oxygen+vacancy+formation+energetics&amp;rft.jtitle=Energy+%26+Environmental+Science&amp;rft.date=2014&amp;rft.volume=7&amp;rft.issue=6&amp;rft.spage=1996&amp;rft.aufirst=Ann+M.&amp;rft.aulast=Deml&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=article&amp;rft.au=Ann+M.+Deml&amp;rft.au=+Vladan+Stevanovi%C4%87&amp;rft.au=+Christopher+L.+Muhich&amp;rft.au=+Charles+B.+Musgrave&amp;rft.au=+Ryan+O%27Hayre") (fullCitation . "Ann M. Deml, Vladan Stevanovi\304\207, Christopher L. Muhich, Charles B. Musgrave, Ryan O'Hayre, 2014, 'Oxide enthalpy of formation and band gap energy as accurate descriptors of oxygen vacancy formation energetics', <i>Energy &amp; Environmental Science</i>, vol. 7, no. 6, p. 1996") (title . "Oxide enthalpy of formation and band gap energy as accurate descriptors of oxygen vacancy formation energetics") (normalizedScore . 100) (score . 4.7002907) (doi . "http://dx.doi.org/10.1039/c3ee43874k")) ((fullCitation . "Altynbek Murat, Julia E. Medvedeva, 2012, 'Composition-dependent oxygen vacancy formation in multicomponent wide-band-gap oxides', <i>Physical Review B</i>, vol. 86, no. 8") (year . "2012") (coins . "ctx_ver=Z39.88-2004&amp;rft_id=info%3Adoi%2Fhttp%3A%2F%2Fdx.doi.org%2F10.1103%2Fphysrevb.86.085123&amp;rfr_id=info%3Asid%2Fcrossref.org%3Asearch&amp;rft.atitle=Composition-dependent+oxygen+vacancy+formation+in+multicomponent+wide-band-gap+oxides&amp;rft.jtitle=Physical+Review+B&amp;rft.date=2012&amp;rft.volume=86&amp;rft.issue=8&amp;rft.aufirst=Altynbek&amp;rft.aulast=Murat&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=article&amp;rft.au=Altynbek+Murat&amp;rft.au=+Julia+E.+Medvedeva") (fullCitation . "Altynbek Murat, Julia E. Medvedeva, 2012, 'Composition-dependent oxygen vacancy formation in multicomponent wide-band-gap oxides', <i>Physical Review B</i>, vol. 86, no. 8") (title . "Composition-dependent oxygen vacancy formation in multicomponent wide-band-gap oxides") (normalizedScore . 24) (score . 1.129964) (doi . "http://dx.doi.org/10.1103/physrevb.86.085123")) ((fullCitation . "Ann M. Deml, Vladan Stevanovi\304\207, Aaron M. Holder, Michael Sanders, Ryan O\342\200\231Hayre, Charles B. Musgrave, 2014, ' Tunable Oxygen Vacancy Formation Energetics in the Complex Perovskite Oxide Sr  x  La  1\342\200\223 x  Mn  y  Al  1\342\200\223 y  O 3 ', <i>Chemistry of Materials</i>, vol. 26, no. 22, pp. 6595-6602") (year . "2014") (coins . "ctx_ver=Z39.88-2004&amp;rft_id=info%3Adoi%2Fhttp%3A%2F%2Fdx.doi.org%2F10.1021%2Fcm5033755&amp;rfr_id=info%3Asid%2Fcrossref.org%3Asearch&amp;rft.atitle=+Tunable+Oxygen+Vacancy+Formation+Energetics+in+the+Complex+Perovskite+Oxide+Sr++x++La++1%E2%80%93+x++Mn++y++Al++1%E2%80%93+y++O+3+&amp;rft.jtitle=Chemistry+of+Materials&amp;rft.date=2014&amp;rft.volume=26&amp;rft.issue=22&amp;rft.spage=6595&amp;rft.epage=6602&amp;rft.aufirst=Ann+M.&amp;rft.aulast=Deml&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=article&amp;rft.au=Ann+M.+Deml&amp;rft.au=+Vladan+Stevanovi%C4%87&amp;rft.au=+Aaron+M.+Holder&amp;rft.au=+Michael+Sanders&amp;rft.au=+Ryan+O%E2%80%99Hayre&amp;rft.au=+Charles+B.+Musgrave") (fullCitation . "Ann M. Deml, Vladan Stevanovi\304\207, Aaron M. Holder, Michael Sanders, Ryan O\342\200\231Hayre, Charles B. Musgrave, 2014, ' Tunable Oxygen Vacancy Formation Energetics in the Complex Perovskite Oxide Sr  x  La  1\342\200\223 x  Mn  y  Al  1\342\200\223 y  O 3 ', <i>Chemistry of Materials</i>, vol. 26, no. 22, pp. 6595-6602") (title . " Tunable Oxygen Vacancy Formation Energetics in the Complex Perovskite Oxide Sr  x  La  1\342\200\223 x  Mn  y  Al  1\342\200\223 y  O 3 ") (normalizedScore . 20) (score . 0.94063884) (doi . "http://dx.doi.org/10.1021/cm5033755")) ((fullCitation . "Chuck Blue, Khaled Elgaid, Ivan Zitkovsky, P. Boolchand, Darl McDaniel, W. Joiner, Jean Oostens, Warren Huff, 1988, 'Oxygen-vacancy-formation enthalpy in YBa_{2}(Cu_{0.985}Fe_{0.015})_{3}O_{7-\316\264} oxide superconductor', <i>Physical Review B</i>, vol. 37, no. 10, pp. 5905-5908") (year . "1988") (coins . "ctx_ver=Z39.88-2004&amp;rft_id=info%3Adoi%2Fhttp%3A%2F%2Fdx.doi.org%2F10.1103%2Fphysrevb.37.5905&amp;rfr_id=info%3Asid%2Fcrossref.org%3Asearch&amp;rft.atitle=Oxygen-vacancy-formation+enthalpy+in+YBa_%7B2%7D%28Cu_%7B0.985%7DFe_%7B0.015%7D%29_%7B3%7DO_%7B7-%CE%B4%7D+oxide+superconductor&amp;rft.jtitle=Physical+Review+B&amp;rft.date=1988&amp;rft.volume=37&amp;rft.issue=10&amp;rft.spage=5905&amp;rft.epage=5908&amp;rft.aufirst=Chuck&amp;rft.aulast=Blue&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=article&amp;rft.au=Chuck+Blue&amp;rft.au=+Khaled+Elgaid&amp;rft.au=+Ivan+Zitkovsky&amp;rft.au=+P.+Boolchand&amp;rft.au=+Darl+McDaniel&amp;rft.au=+W.+Joiner&amp;rft.au=+Jean+Oostens&amp;rft.au=+Warren+Huff") (fullCitation . "Chuck Blue, Khaled Elgaid, Ivan Zitkovsky, P. Boolchand, Darl McDaniel, W. Joiner, Jean Oostens, Warren Huff, 1988, 'Oxygen-vacancy-formation enthalpy in YBa_{2}(Cu_{0.985}Fe_{0.015})_{3}O_{7-\316\264} oxide superconductor', <i>Physical Review B</i>, vol. 37, no. 10, pp. 5905-5908") (title . "Oxygen-vacancy-formation enthalpy in YBa_{2}(Cu_{0.985}Fe_{0.015})_{3}O_{7-\316\264} oxide superconductor") (normalizedScore . 17) (score . 0.8346345) (doi . "http://dx.doi.org/10.1103/physrevb.37.5905")) ((fullCitation . "H. Holloway, 1962, 'Enthalpy of Formation of Oxygen Vacancies in Barium Oxide', <i>The Journal of Chemical Physics</i>, vol. 36, no. 11, p. 2820") (year . "1962") (coins . "ctx_ver=Z39.88-2004&amp;rft_id=info%3Adoi%2Fhttp%3A%2F%2Fdx.doi.org%2F10.1063%2F1.1732384&amp;rfr_id=info%3Asid%2Fcrossref.org%3Asearch&amp;rft.atitle=Enthalpy+of+Formation+of+Oxygen+Vacancies+in+Barium+Oxide&amp;rft.jtitle=The+Journal+of+Chemical+Physics&amp;rft.date=1962&amp;rft.volume=36&amp;rft.issue=11&amp;rft.spage=2820&amp;rft.aufirst=H.&amp;rft.aulast=Holloway&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=article&amp;rft.au=H.+Holloway") (fullCitation . "H. Holloway, 1962, 'Enthalpy of Formation of Oxygen Vacancies in Barium Oxide', <i>The Journal of Chemical Physics</i>, vol. 36, no. 11, p. 2820") (title . "Enthalpy of Formation of Oxygen Vacancies in Barium Oxide") (normalizedScore . 16) (score . 0.7613335) (doi . "http://dx.doi.org/10.1063/1.1732384")) ((fullCitation . "St. Chabik, 1987, 'Vacancy formation enthalpy in AgZn alloys', <i>Crystal Research and Technology</i>, vol. 22, no. 12, pp. 1523-1527") (year . "1987") (coins . "ctx_ver=Z39.88-2004&amp;rft_id=info%3Adoi%2Fhttp%3A%2F%2Fdx.doi.org%2F10.1002%2Fcrat.2170221219&amp;rfr_id=info%3Asid%2Fcrossref.org%3Asearch&amp;rft.atitle=Vacancy+formation+enthalpy+in+AgZn+alloys&amp;rft.jtitle=Crystal+Research+and+Technology&amp;rft.date=1987&amp;rft.volume=22&amp;rft.issue=12&amp;rft.spage=1523&amp;rft.epage=1527&amp;rft.aufirst=St.&amp;rft.aulast=Chabik&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=article&amp;rft.au=St.+Chabik") (fullCitation . "St. Chabik, 1987, 'Vacancy formation enthalpy in AgZn alloys', <i>Crystal Research and Technology</i>, vol. 22, no. 12, pp. 1523-1527") (title . "Vacancy formation enthalpy in AgZn alloys") (normalizedScore . 15) (score . 0.73206276) (doi . "http://dx.doi.org/10.1002/crat.2170221219")) ((fullCitation . "Alan R. Derk, Bo Li, Sudhanshu Sharma, George M. Moore, Eric W. McFarland, Horia Metiu, 2013, 'Methane Oxidation by Lanthanum Oxide Doped with Cu, Zn, Mg, Fe, Nb, Ti, Zr, or Ta: The Connection Between the Activation Energy and the Energy of Oxygen-Vacancy Formation', <i>Catalysis Letters</i>, vol. 143, no. 5, pp. 406-410") (year . "2013") (coins . "ctx_ver=Z39.88-2004&amp;rft_id=info%3Adoi%2Fhttp%3A%2F%2Fdx.doi.org%2F10.1007%2Fs10562-013-0985-7&amp;rfr_id=info%3Asid%2Fcrossref.org%3Asearch&amp;rft.atitle=Methane+Oxidation+by+Lanthanum+Oxide+Doped+with+Cu%2C+Zn%2C+Mg%2C+Fe%2C+Nb%2C+Ti%2C+Zr%2C+or+Ta%3A+The+Connection+Between+the+Activation+Energy+and+the+Energy+of+Oxygen-Vacancy+Formation&amp;rft.jtitle=Catalysis+Letters&amp;rft.date=2013&amp;rft.volume=143&amp;rft.issue=5&amp;rft.spage=406&amp;rft.epage=410&amp;rft.aufirst=Alan+R.&amp;rft.aulast=Derk&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=article&amp;rft.au=Alan+R.+Derk&amp;rft.au=+Bo+Li&amp;rft.au=+Sudhanshu+Sharma&amp;rft.au=+George+M.+Moore&amp;rft.au=+Eric+W.+McFarland&amp;rft.au=+Horia+Metiu") (fullCitation . "Alan R. Derk, Bo Li, Sudhanshu Sharma, George M. Moore, Eric W. McFarland, Horia Metiu, 2013, 'Methane Oxidation by Lanthanum Oxide Doped with Cu, Zn, Mg, Fe, Nb, Ti, Zr, or Ta: The Connection Between the Activation Energy and the Energy of Oxygen-Vacancy Formation', <i>Catalysis Letters</i>, vol. 143, no. 5, pp. 406-410") (title . "Methane Oxidation by Lanthanum Oxide Doped with Cu, Zn, Mg, Fe, Nb, Ti, Zr, or Ta: The Connection Between the Activation Energy and the Energy of Oxygen-Vacancy Formation") (normalizedScore . 14) (score . 0.692246) (doi . "http://dx.doi.org/10.1007/s10562-013-0985-7")) ((fullCitation . "Way Foong Lim, Kuan Yew Cheong, 2014, 'Oxygen vacancy formation and annihilation in lanthanum cerium oxide as a metal reactive oxide on 4H-silicon carbide', <i>Physical Chemistry Chemical Physics</i>, vol. 16, no. 15, p. 7015") (year . "2014") (coins . "ctx_ver=Z39.88-2004&amp;rft_id=info%3Adoi%2Fhttp%3A%2F%2Fdx.doi.org%2F10.1039%2Fc3cp55214d&amp;rfr_id=info%3Asid%2Fcrossref.org%3Asearch&amp;rft.atitle=Oxygen+vacancy+formation+and+annihilation+in+lanthanum+cerium+oxide+as+a+metal+reactive+oxide+on+4H-silicon+carbide&amp;rft.jtitle=Physical+Chemistry+Chemical+Physics&amp;rft.date=2014&amp;rft.volume=16&amp;rft.issue=15&amp;rft.spage=7015&amp;rft.aufirst=Way+Foong&amp;rft.aulast=Lim&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=article&amp;rft.au=Way+Foong+Lim&amp;rft.au=+Kuan+Yew+Cheong") (fullCitation . "Way Foong Lim, Kuan Yew Cheong, 2014, 'Oxygen vacancy formation and annihilation in lanthanum cerium oxide as a metal reactive oxide on 4H-silicon carbide', <i>Physical Chemistry Chemical Physics</i>, vol. 16, no. 15, p. 7015") (title . "Oxygen vacancy formation and annihilation in lanthanum cerium oxide as a metal reactive oxide on 4H-silicon carbide") (normalizedScore . 14) (score . 0.6675249) (doi . "http://dx.doi.org/10.1039/c3cp55214d")) ((fullCitation . "Lena Mazeina, Suraj Deore, Alexandra Navrotsky, 2006, 'Energetics of Bulk and Nano-Akaganeite, \316\262-FeOOH:\302\240 Enthalpy of Formation, Surface Enthalpy, and Enthalpy of Water Adsorption', <i>Chemistry of Materials</i>, vol. 18, no. 7, pp. 1830-1838") (year . "2006") (coins . "ctx_ver=Z39.88-2004&amp;rft_id=info%3Adoi%2Fhttp%3A%2F%2Fdx.doi.org%2F10.1021%2Fcm052543j&amp;rfr_id=info%3Asid%2Fcrossref.org%3Asearch&amp;rft.atitle=Energetics+of+Bulk+and+Nano-Akaganeite%2C+%CE%B2-FeOOH%3A%C2%A0+Enthalpy+of+Formation%2C+Surface+Enthalpy%2C+and+Enthalpy+of+Water+Adsorption&amp;rft.jtitle=Chemistry+of+Materials&amp;rft.date=2006&amp;rft.volume=18&amp;rft.issue=7&amp;rft.spage=1830&amp;rft.epage=1838&amp;rft.aufirst=Lena&amp;rft.aulast=Mazeina&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=article&amp;rft.au=Lena+Mazeina&amp;rft.au=+Suraj+Deore&amp;rft.au=+Alexandra+Navrotsky") (fullCitation . "Lena Mazeina, Suraj Deore, Alexandra Navrotsky, 2006, 'Energetics of Bulk and Nano-Akaganeite, \316\262-FeOOH:\302\240 Enthalpy of Formation, Surface Enthalpy, and Enthalpy of Water Adsorption', <i>Chemistry of Materials</i>, vol. 18, no. 7, pp. 1830-1838") (title . "Energetics of Bulk and Nano-Akaganeite, \316\262-FeOOH:\302\240 Enthalpy of Formation, Surface Enthalpy, and Enthalpy of Water Adsorption") (normalizedScore . 13) (score . 0.6519111) (doi . "http://dx.doi.org/10.1021/cm052543j")) ((fullCitation . "P. A. G. O'Hare, 1972, 'Thermochemical and Theoretical Investigations of the Sodium-Oxygen System. I. The Standard Enthalpy of Formation of Sodium Oxide (Na2O)', <i>The Journal of Chemical Physics</i>, vol. 56, no. 9, p. 4513") (year . "1972") (coins . "ctx_ver=Z39.88-2004&amp;rft_id=info%3Adoi%2Fhttp%3A%2F%2Fdx.doi.org%2F10.1063%2F1.1677897&amp;rfr_id=info%3Asid%2Fcrossref.org%3Asearch&amp;rft.atitle=Thermochemical+and+Theoretical+Investigations+of+the+Sodium-Oxygen+System.+I.+The+Standard+Enthalpy+of+Formation+of+Sodium+Oxide+%28Na2O%29&amp;rft.jtitle=The+Journal+of+Chemical+Physics&amp;rft.date=1972&amp;rft.volume=56&amp;rft.issue=9&amp;rft.spage=4513&amp;rft.aufirst=P.+A.+G.&amp;rft.aulast=O%27Hare&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=article&amp;rft.au=P.+A.+G.+O%27Hare") (fullCitation . "P. A. G. O'Hare, 1972, 'Thermochemical and Theoretical Investigations of the Sodium-Oxygen System. I. The Standard Enthalpy of Formation of Sodium Oxide (Na2O)', <i>The Journal of Chemical Physics</i>, vol. 56, no. 9, p. 4513") (title . "Thermochemical and Theoretical Investigations of the Sodium-Oxygen System. I. The Standard Enthalpy of Formation of Sodium Oxide (Na2O)") (normalizedScore . 13) (score . 0.6344446) (doi . "http://dx.doi.org/10.1063/1.1677897")) \.\.\.)
  eval-buffer(#<buffer  *load*-845140> nil "/home/chaitanya/.emacs.d/opt/org-ref/doi-utils.el" nil t)  ; Reading at buffer position 59655
  load-with-code-conversion("/home/chaitanya/.emacs.d/opt/org-ref/doi-utils.el" "/home/chaitanya/.emacs.d/opt/org-ref/doi-utils.el" nil nil)
  load("/home/chaitanya/.emacs.d/opt/org-ref/doi-utils.el" nil nil t)
  load-file("~/.emacs.d/opt/org-ref/doi-utils.el")
  org-babel-load-file("~/.emacs.d/opt/org-ref/doi-utils.org")
 eval-buffer(#<buffer  *load*-639675> nil "/home/chaitanya/mytools/customizations/emacs/config/orgref-config.el" nil t)  ; Reading at buffer position 226
  load-with-code-conversion("/home/chaitanya/mytools/customizations/emacs/config/orgref-config.el" "/home/chaitanya/mytools/customizations/emacs/config/orgref-config.el" nil nil)
  load("~/mytools/customizations/emacs/config/orgref-config.el")
  eval-buffer(#<buffer  *load*> nil "/home/chaitanya/.emacs" nil t)  ; Reading at buffer position 344
  load-with-code-conversion("/home/chaitanya/.emacs" "/home/chaitanya/.emacs" t t)
  load("~/.emacs" t t)
  #[0 "�\205\262�   \306=\203��\307�\310Q\202;� \311=\204��\307�\312Q\202;�\313\307\314\315#\203*�\316\202;�\313\307\314\317#\203:�\320\nB�\321\202;�\316\322�\323�\322\211#\210�\322=\203a�\324\325\326\307�\327Q!\"\323�\322\211#\210�\322=\203`���\210�\203\243�\330�!\331\232\203\243�\332�!\211\333P\334�!\203}�\211\202\210�\334�!\203\207��\202\210�\314\262��\203\241�\335��\"\203\237�\336\337��#\210\340\341!\210��\266�\f?\205\260�\314�\323\342\322\211#)\262�\207" [init-file-user system-type delayed-warnings-list user-init-file inhibit-default-init inhibit-startup-screen ms-dos "~" "/_emacs" windows-nt "/.emacs" directory-files nil "^\\.emacs\\(\\.elc?\\)?$" "~/.emacs" "^_emacs\\(\\.elc?\\)?$" (initialization "`_emacs' init file is deprecated, please use `.emacs'") "~/_emacs" t load expand-file-name "init" file-name-as-directory "/.emacs.d" file-name-extension "elc" file-name-sans-extension ".el" file-exists-p file-newer-than-file-p message "Warning: %s is newer than %s" sit-for 1 "default"] 7 "\n\n(fn)"]()
  command-line()
  normal-top-level()

org-ref-link-message blocks Emacs every time the timer is run

Thank you John for this wonderful package! After a week of using org-ref I can safely say it's the best bibliography management solution I have found.

I have ran into an occasional problem that blocks Emacs when the function org-ref-link-message is called. This function has an idle timer associated to it, so when the problem occurs I have to constantly use C-g to unblock Emacs.

Here's the backtrace using toggle-debug-on-quit.

Debugger entered--Lisp error: (quit)
  org-element--cache-compare((planning (:closed (timestamp (:type inactive :raw-value "[2015-09-17 Thu 21:46]" :year-start 2015 :month-start 9 :day-start 17 :hour-start 21 :minute-start 46 :year-end 2015 :month-end 9 :day-end 17 :hour-end 21 :minute-end 46 :begin 413013 :end 413036 :post-blank 1)) :deadline (timestamp (:type active :raw-value "<2015-09-11 Fri>" :year-start 2015 :month-start 9 :day-start 11 :hour-start nil :minute-start nil :year-end 2015 :month-end 9 :day-end 11 :hour-end nil :minute-end nil :begin 413046 :end 413062 :post-blank 0)) :scheduled nil :begin 413005 :end 413063 :post-blank 0 :post-affiliated 413005 :parent nil)) (property-drawer (:begin 412138 :end 412206 :contents-begin 412151 :contents-end 412199 :post-blank 1 :post-affiliated 412138 :parent nil)))
  avl-tree--do-delete(org-element--cache-compare [[[[[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] (paragraph ...) 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] (drawer ...) 0] (clock (:status closed :value ... :duration "0:31" :begin 358793 :end 358856 :post-blank 0 :post-affiliated 358793 :parent nil)) 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] (planning ...) 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] (src-block ...) 0] (paragraph (:begin 361544 :end 361566 :contents-begin 361544 :contents-end 361565 :post-blank 1 :post-affiliated 361544 :parent nil)) 0] (paragraph (:begin 359669 :end 359833 :contents-begin 359669 :contents-end 359832 :post-blank 1 :post-affiliated 359669 :parent nil)) 0] [[[nil [nil nil ... 0] (clock ...) 1] [[nil nil ... 0] [nil nil ... 0] (paragraph ...) 0] (clock (:status closed :value ... :duration "0:22" :begin 364296 :end 364359 :post-blank 0 :post-affiliated 364296 :parent nil)) 0] [[[nil nil ... 0] [[nil nil ... 0] nil ... -1] (paragraph ...) 1] [[nil nil ... 0] [nil nil ... 0] (drawer ...) 0] (property-drawer (:begin 365228 :end 365295 :contents-begin 365241 :contents-end 365289 :post-blank 0 :post-affiliated 365228 :parent nil)) -1] (clock (:status closed :value (timestamp ...) :duration "0:15" :begin 364603 :end 364666 :post-blank 0 :post-affiliated 364603 :parent nil)) 1] (property-drawer (:begin 364103 :end 364170 :contents-begin 364116 :contents-end 364164 :post-blank 0 :post-affiliated 364103 :parent nil)) 0] [[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] (clock ...) 0] [[[nil nil ... 0] nil ... -1] [[nil nil ... 0] [nil nil ... 0] ... 0] (clock ...) 0] (drawer (:begin 366297 :end 366439 :drawer-name "LOGBOOK" :contents-begin 366307 :contents-end 366433 :post-blank 0 :post-affiliated 366297 :parent nil)) 0] [[[nil nil ... 0] [nil nil ... 0] (clock ...) 0] [[nil nil ... 0] [nil [nil nil ... 0] ... 1] (property-drawer ...) 1] (drawer (:begin 369844 :end 369911 :drawer-name "PROPERTIES" :contents-begin 369857 :contents-end 369905 :post-blank 0 :post-affiliated 369844 :parent nil)) 1] (property-drawer (:begin 369588 :end 369655 :contents-begin 369601 :contents-end 369649 :post-blank 0 :post-affiliated 369588 :parent nil)) 0] [[[[nil nil ... 0] [nil nil ... 0] (clock ...) 0] [[nil nil ... 0] [nil nil ... 0] (property-drawer ...) 0] (paragraph (:begin 370706 :end 371046 :contents-begin 370706 :contents-end 371046 :post-blank 0 :post-affiliated 370706 :parent nil)) 0] [[[nil nil ... 0] [nil nil ... 0] (planning ...) 0] [[nil nil ... 0] [nil nil ... 0] (clock ...) 0] (clock (:status closed :value ... :duration "0:11" :begin 373049 :end 373112 :post-blank 0 :post-affiliated 373049 :parent nil)) 0] (drawer (:begin 371247 :end 371314 :drawer-name "PROPERTIES" :contents-begin 371260 :contents-end 371308 :post-blank 0 :post-affiliated 371247 :parent nil)) 0] (planning (:closed (timestamp (:type inactive :raw-value "[2015-09-01 Tue 10:16]" :year-start 2015 :month-start 9 :day-start 1 :hour-start 10 :minute-start 16 :year-end 2015 :month-end 9 :day-end 1 :hour-end 10 :minute-end 16 :begin 370240 :end 370262 :post-blank 0)) :deadline nil :scheduled nil :begin 370478 :end 370509 :post-blank 0 :post-affiliated 370478 :parent nil)) -1] (planning (:closed (timestamp (:type inactive :raw-value "[2015-09-09 Wed 08:59]" :year-start 2015 :month-start 9 :day-start 9 :hour-start 8 :minute-start 59 :year-end 2015 :month-end 9 :day-end 9 :hour-end 8 :minute-end 59 :begin 365430 :end 365453 :post-blank 1)) :deadline (timestamp (:type active :raw-value "<2015-09-07 Mon>" :year-start 2015 :month-start 9 :day-start 7 :hour-start nil :minute-start nil :year-end 2015 :month-end 9 :day-end 7 :hour-end nil :minute-end nil :begin 365463 :end 365479 :post-blank 0)) :scheduled nil :begin 365668 :end 365726 :post-blank 0 :post-affiliated 365668 :parent nil)) 0] [[[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] (planning ...) 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] (planning ...) 0] (drawer (:begin 374302 :end 374369 :drawer-name "PROPERTIES" :contents-begin 374315 :contents-end 374363 :post-blank 0 :post-affiliated 374302 :parent nil)) 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] (clock ...) 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] (clock ...) 0] (clock (:status closed :value ... :duration "0:55" :begin 381391 :end 381454 :post-blank 0 :post-affiliated 381391 :parent nil)) 0] (clock (:status closed :value (timestamp ...) :duration "1:06" :begin 378246 :end 378309 :post-blank 0 :post-affiliated 378246 :parent nil)) 0] [[[[nil nil ... 0] [nil nil ... 0] (clock ...) 0] [[nil nil ... 0] [nil nil ... 0] (clock ...) 0] (clock (:status closed :value ... :duration "0:03" :begin 382147 :end 382210 :post-blank 0 :post-affiliated 382147 :parent nil)) 0] [[[nil nil ... 0] [nil nil ... 0] (plain-list ...) 0] [[nil nil ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] (item ...) 1] (item (:bullet "- " :begin 382607 :end 382936 :contents-begin 382613 :contents-end 382936 :checkbox trans :counter nil :structure ... :post-blank 0 :post-affiliated 382607 :tag nil :parent ...)) 1] (drawer (:begin 382399 :end 382466 :drawer-name "PROPERTIES" :contents-begin 382412 :contents-end 382460 :post-blank 0 :post-affiliated 382399 :parent nil)) 1] (clock (:status closed :value (timestamp (:type inactive-range :raw-value "[2015-08-24 Mon 13:31]--[2015-08-24 Mon 15:50]" :year-start 2015 :month-start 8 :day-start 24 :hour-start 13 :minute-start 31 :year-end 2015 :month-end 8 :day-end 24 :hour-end 15 :minute-end 50 :begin 381656 :end 381703 :post-blank 1)) :duration "2:19" :begin 381895 :end 381958 :post-blank 0 :post-affiliated 381895 :parent nil)) 0] [[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil [nil nil ... 0] ... 1] (paragraph ...) 0] [[nil [nil nil ... 0] ... 1] [nil [nil nil ... 0] ... 1] (property-drawer ...) 0] (property-drawer (:begin 383552 :end 383716 :contents-begin 383565 :contents-end 383710 :post-blank 0 :post-affiliated 383552 :parent nil)) 0] [[nil nil (paragraph ...) 0] [[nil nil ... 0] [nil nil ... 0] (paragraph ...) 0] (paragraph (:begin 388126 :end 388636 :contents-begin 388126 :contents-end 388635 :post-blank 1 :post-affiliated 388126 :parent nil)) 1] (paragraph (:begin 385867 :end 386105 :contents-begin 385867 :contents-end 386104 :post-blank 1 :post-affiliated 385867 :parent nil)) -1] [[[[nil nil ... 0] [nil nil ... 0] (paragraph ...) 0] [[nil nil ... 0] [nil nil ... 0] (paragraph ...) 0] (paragraph (:begin 396193 :end 396367 :contents-begin 396193 :contents-end 396366 :post-blank 1 :post-affiliated 396193 :parent nil)) 0] [[[nil nil ... 0] [nil nil ... 0] (paragraph ...) 0] [[nil nil ... 0] [nil nil ... 0] (paragraph ...) 0] (paragraph (:begin 397074 :end 397541 :contents-begin 397074 :contents-end 397540 :post-blank 1 :post-affiliated 397074 :parent nil)) 0] (paragraph (:begin 396720 :end 396821 :contents-begin 396720 :contents-end 396820 :post-blank 1 :post-affiliated 396720 :parent nil)) 0] (paragraph (:begin 390774 :end 390893 :contents-begin 390774 :contents-end 390892 :post-blank 1 :post-affiliated 390774 :parent nil)) -1] (property-drawer (:begin 383192 :end 383260 :contents-begin 383205 :contents-end 383253 :post-blank 1 :post-affiliated 383192 :parent nil)) 0] (clock (:status closed :value (timestamp (:type inactive-range :raw-value "[2015-04-29 Wed 09:53]--[2015-04-29 Wed 09:53]" :year-start 2015 :month-start 4 :day-start 29 :hour-start 9 :minute-start 53 :year-end 2015 :month-end 4 :day-end 29 :hour-end 9 :minute-end 53 :begin 373062 :end 373109 :post-blank 1)) :duration "0:00" :begin 373301 :end 373364 :post-blank 0 :post-affiliated 373301 :parent nil)) 0] [[[[[[nil nil (paragraph ...) 0] [nil nil (paragraph ...) 0] (paragraph (:begin 398012 :end 398095 :contents-begin 398012 :contents-end 398094 :post-blank 1 :post-affiliated 398012 :parent nil)) 0] [[nil nil (paragraph ...) 0] [nil nil (paragraph ...) 0] (paragraph (:begin 398363 :end 398961 :contents-begin 398363 :contents-end 398960 :post-blank 1 :post-affiliated 398363 :parent nil)) 0] (paragraph (:begin 398259 :end 398335 :contents-begin 398259 :contents-end 398334 :post-blank 1 :post-affiliated 398259 :parent nil)) 0] [[[nil nil (property-drawer ...) 0] [nil nil (item ...) 0] (plain-list (:type unordered :begin 402832 :end 403088 :contents-begin 402832 :contents-end 403087 :structure ... :post-blank 1 :post-affiliated 402832 :parent nil)) 0] [[nil nil (item ...) 0] [[nil nil ... 0] [nil nil ... 0] (item ...) 0] (item (:bullet "- " :begin 402882 :end 403043 :contents-begin 402888 :contents-end 403043 :checkbox on :counter nil :structure ... :post-blank 0 :post-affiliated 402882 :tag nil :parent ...)) 1] (item (:bullet "- " :begin 402853 :end 402872 :contents-begin 402859 :contents-end 402872 :checkbox on :counter nil :structure (... ... ... ... ... ... ... ...) :post-blank 0 :post-affiliated 402853 :tag nil :parent (plain-list ...))) 1] (planning (:closed (timestamp (:type inactive :raw-value "[2015-09-18 Fri 12:20]" :year-start 2015 :month-start 9 :day-start 18 :hour-start 12 :minute-start 20 :year-end 2015 :month-end 9 :day-end 18 :hour-end 12 :minute-end 20 :begin 402468 :end 402491 :post-blank 1)) :deadline (timestamp (:type active :raw-value "<2015-09-11 Fri>" :year-start 2015 :month-start 9 :day-start 11 :hour-start nil :minute-start nil :year-end 2015 :month-end 9 :day-end 11 :hour-end nil :minute-end nil :begin 402501 :end 402517 :post-blank 0)) :scheduled nil :begin 402706 :end 402764 :post-blank 0 :post-affiliated 402706 :parent nil)) 1] [[[[[nil nil ... 0] [[nil nil ... 0] nil ... -1] (property-drawer ...) 1] [nil [nil nil ... 0] (latex-environment ...) 1] (planning (:closed ... :deadline nil :scheduled nil :begin 405794 :end 405826 :post-blank 1 :post-affiliated 405794 :parent nil)) -1] [[[nil nil ... 0] [nil nil ... 0] (src-block ...) 0] [[nil nil ... 0] [nil nil ... 0] (paragraph ...) 0] (src-block (:language "ipython" :switches nil :parameters nil :begin 410059 :end 410128 :number-lines nil :preserve-indent nil :retain-labels t :use-labels t :label-fmt nil :value "import matplotlib.pyplot\nimport numpy\n" :post-blank 1 :post-affiliated 410059 :parent nil)) 0] (property-drawer (:begin 409682 :end 409804 :contents-begin 409695 :contents-end 409797 :post-blank 1 :post-affiliated 409682 :parent nil)) -1] [[[[nil nil ... 0] [nil nil ... 0] (src-block ...) 0] [[nil nil ... 0] [nil nil ... 0] (paragraph ...) 0] (paragraph (:begin 411119 :end 411179 :contents-begin 411119 :contents-end 411178 :post-blank 1 :post-affiliated 411119 :parent nil)) 0] [[nil nil (planning ...) 0] [nil nil (planning ...) 0] (property-drawer (:begin 412020 :end 412088 :contents-begin 412033 :contents-end 412081 :post-blank 1 :post-affiliated 412020 :parent nil)) 0] (property-drawer (:begin 411885 :end 411953 :contents-begin 411898 :contents-end 411946 :post-blank 1 :post-affiliated 411885 :parent nil)) -1] (keyword (:key "RESULTS" :value "" :begin 410500 :end 410512 :post-blank 1 :post-affiliated 410500 :parent nil)) -1] (planning (:closed (timestamp (:type inactive :raw-value "[2015-09-10 Thu 14:33]" :year-start 2015 :month-start 9 :day-start 10 :hour-start 14 :minute-start 33 :year-end 2015 :month-end 9 :day-end 10 :hour-end 14 :minute-end 33 :begin 402927 :end 402950 :post-blank 1)) :deadline (timestamp (:type active :raw-value "<2015-09-11 Fri>" :year-start 2015 :month-start 9 :day-start 11 :hour-start nil :minute-start nil :year-end 2015 :month-end 9 :day-end 11 :hour-end nil :minute-end nil :begin 402960 :end 402976 :post-blank 0)) :scheduled nil :begin 403165 :end 403223 :post-blank 0 :post-affiliated 403165 :parent nil)) 1] [[[[[[nil nil ... 0] [nil nil ... 0] (property-drawer ...) 0] [[nil nil ... 0] [nil nil ... 0] (clock ...) 0] (clock (:status running :value ... :duration nil :begin 412458 :end 412488 :post-blank 0 :post-affiliated 412458 :parent nil)) 0] [[nil nil (paragraph ...) 0] [nil nil (planning ...) 0] (drawer (:begin 412755 :end 412762 :drawer-name "END" :contents-begin nil :contents-end nil :post-blank 1 :post-affiliated 412755 :parent nil)) 0] (paragraph (:begin 412627 :end 412688 :contents-begin 412627 :contents-end 412688 :post-blank 0 :post-affiliated 412627 :parent (drawer ...))) -1] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] (node-property ...) -1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] (plain-list ...) 0] (node-property (:key "" :value nil :begin 413057 :end 413145 :post-blank 0 :post-affiliated 413057 :parent ...)) 0] [[[nil nil ... 0] [nil nil ... 0] (item ...) 0] [[nil nil ... 0] nil (src-block ...) -1] (planning (:closed nil :deadline ... :scheduled nil :begin 413504 :end 413531 :post-blank 0 :post-affiliated 413504 :parent nil)) 0] (paragraph (:begin 413333 :end 413384 :contents-begin 413333 :contents-end 413384 :post-blank 0 :post-affiliated 413333 :parent (item ...))) -1] (planning (:closed (timestamp (:type inactive :raw-value "[2015-09-17 Thu 21:46]" :year-start 2015 :month-start 9 :day-start 17 :hour-start 21 :minute-start 46 :year-end 2015 :month-end 9 :day-end 17 :hour-end 21 :minute-end 46 :begin 412700 :end 412723 :post-blank 1)) :deadline (timestamp (:type active :raw-value "<2015-09-11 Fri>" :year-start 2015 :month-start 9 :day-start 11 :hour-start nil :minute-start nil :year-end 2015 :month-end 9 :day-end 11 :hour-end nil :minute-end nil :begin 412733 :end 412749 :post-blank 0)) :scheduled nil :begin 412938 :end 412996 :post-blank 0 :post-affiliated 412938 :parent (planning (:closed ... :deadline ... :scheduled nil :begin 413005 :end 413063 :post-blank 0 :post-affiliated 413005 :parent nil)))) 1] [[[[[nil nil ... 0] nil (property-drawer ...) -1] [[nil nil ... 0] [nil nil ... 0] (property-drawer ...) 0] (clock (:status closed :value ... :duration "0:03" :begin 416474 :end 416537 :post-blank 0 :post-affiliated 416474 :parent nil)) 0] [[[nil nil ... 0] [nil nil ... 0] (paragraph ...) 0] [nil nil (planning ...) 0] (property-drawer (:begin 418970 :end 419037 :contents-begin 418983 :contents-end 419031 :post-blank 0 :post-affiliated 418970 :parent nil)) -1] (property-drawer (:begin 418430 :end 418498 :contents-begin 418443 :contents-end 418491 :post-blank 1 :post-affiliated 418430 :parent nil)) 0] [[[[nil nil ... 0] [nil nil ... 0] (paragraph ...) 0] [nil nil (planning ...) 0] (property-drawer (:begin 419376 :end 419438 :contents-begin 419389 :contents-end 419431 :post-blank 1 :post-affiliated 419376 :parent nil)) -1] [[[nil nil ... 0] [nil nil ... 0] (property-drawer ...) 0] [nil [nil nil ... 0] (planning ...) 1] (property-drawer (:begin 422698 :end 422727 :contents-begin 422711 :contents-end 422720 :post-blank 1 :post-affiliated 422698 :parent nil)) 0] (property-drawer (:begin 420142 :end 420204 :contents-begin 420155 :contents-end 420197 :post-blank 1 :post-affiliated 420142 :parent nil)) 0] (property-drawer (:begin 419135 :end 419202 :contents-begin 419148 :contents-end 419196 :post-blank 0 :post-affiliated 419135 :parent nil)) 0] (src-block (:language "R" :switches nil :parameters ":session :file /Users/martin/org/R_26043lAl.png :exports both :results graphics" :begin 414352 :end 414501 :number-lines nil :preserve-indent nil :retain-labels t :use-labels t :label-fmt nil :value "x <- seq(0, 10, length=100)\nplot(x, sin(x))\n" :post-blank 1 :post-affiliated 414352 :parent nil)) -1] (property-drawer (:begin 412138 :end 412206 :contents-begin 412151 :contents-end 412199 :post-blank 1 :post-affiliated 412138 :parent nil)) 0] (paragraph (:begin 397906 :end 397932 :contents-begin 397906 :contents-end 397931 :post-blank 1 :post-affiliated 397906 :parent nil)) 0] 1 (planning (:closed (timestamp (:type inactive :raw-value "[2015-09-17 Thu 21:46]" :year-start 2015 :month-start 9 :day-start 17 :hour-start 21 :minute-start 46 :year-end 2015 :month-end 9 :day-end 17 :hour-end 21 :minute-end 46 :begin 413013 :end 413036 :post-blank 1)) :deadline (timestamp (:type active :raw-value "<2015-09-11 Fri>" :year-start 2015 :month-start 9 :day-start 11 :hour-start nil :minute-start nil :year-end 2015 :month-end 9 :day-end 11 :hour-end nil :minute-end nil :begin 413046 :end 413062 :post-blank 0)) :scheduled nil :begin 413005 :end 413063 :post-blank 0 :post-affiliated 413005 :parent nil)) nil nil)
  avl-tree--do-delete(org-element--cache-compare [[[[[[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] (clock ...) 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] (paragraph ...) 0] (paragraph (:begin 359669 :end 359833 :contents-begin 359669 :contents-end 359832 :post-blank 1 :post-affiliated 359669 :parent nil)) 0] [[[nil [nil nil ... 0] ... 1] [[nil nil ... 0] [nil nil ... 0] ... 0] (clock ...) 0] [[[nil nil ... 0] [[nil nil ... 0] nil ... -1] ... 1] [[nil nil ... 0] [nil nil ... 0] ... 0] (property-drawer ...) -1] (clock (:status closed :value ... :duration "0:15" :begin 364603 :end 364666 :post-blank 0 :post-affiliated 364603 :parent nil)) 1] (property-drawer (:begin 364103 :end 364170 :contents-begin 364116 :contents-end 364164 :post-blank 0 :post-affiliated 364103 :parent nil)) 0] [[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] nil ... -1] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] (drawer ...) 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil [nil nil ... 0] ... 1] ... 1] (drawer ...) 1] (property-drawer (:begin 369588 :end 369655 :contents-begin 369601 :contents-end 369649 :post-blank 0 :post-affiliated 369588 :parent nil)) 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] (paragraph ...) 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] (clock ...) 0] (drawer (:begin 371247 :end 371314 :drawer-name "PROPERTIES" :contents-begin 371260 :contents-end 371308 :post-blank 0 :post-affiliated 371247 :parent nil)) 0] (planning (:closed (timestamp ...) :deadline nil :scheduled nil :begin 370478 :end 370509 :post-blank 0 :post-affiliated 370478 :parent nil)) -1] (planning (:closed (timestamp (:type inactive :raw-value "[2015-09-09 Wed 08:59]" :year-start 2015 :month-start 9 :day-start 9 :hour-start 8 :minute-start 59 :year-end 2015 :month-end 9 :day-end 9 :hour-end 8 :minute-end 59 :begin 365430 :end 365453 :post-blank 1)) :deadline (timestamp (:type active :raw-value "<2015-09-07 Mon>" :year-start 2015 :month-start 9 :day-start 7 :hour-start nil :minute-start nil :year-end 2015 :month-end 9 :day-end 7 :hour-end nil :minute-end nil :begin 365463 :end 365479 :post-blank 0)) :scheduled nil :begin 365668 :end 365726 :post-blank 0 :post-affiliated 365668 :parent nil)) 0] [[[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] (drawer ...) 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] (clock ...) 0] (clock (:status closed :value ... :duration "1:06" :begin 378246 :end 378309 :post-blank 0 :post-affiliated 378246 :parent nil)) 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] (clock ...) 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 1] (item ...) 1] (drawer (:begin 382399 :end 382466 :drawer-name "PROPERTIES" :contents-begin 382412 :contents-end 382460 :post-blank 0 :post-affiliated 382399 :parent nil)) 1] (clock (:status closed :value (timestamp ...) :duration "2:19" :begin 381895 :end 381958 :post-blank 0 :post-affiliated 381895 :parent nil)) 0] [[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil [nil nil ... 0] ... 1] ... 0] [[nil [nil nil ... 0] ... 1] [nil [nil nil ... 0] ... 1] ... 0] (property-drawer ...) 0] [[nil nil ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] (paragraph ...) 1] (paragraph (:begin 385867 :end 386105 :contents-begin 385867 :contents-end 386104 :post-blank 1 :post-affiliated 385867 :parent nil)) -1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] (paragraph ...) 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] (paragraph ...) 0] (paragraph (:begin 396720 :end 396821 :contents-begin 396720 :contents-end 396820 :post-blank 1 :post-affiliated 396720 :parent nil)) 0] (paragraph (:begin 390774 :end 390893 :contents-begin 390774 :contents-end 390892 :post-blank 1 :post-affiliated 390774 :parent nil)) -1] (property-drawer (:begin 383192 :end 383260 :contents-begin 383205 :contents-end 383253 :post-blank 1 :post-affiliated 383192 :parent nil)) 0] (clock (:status closed :value (timestamp (:type inactive-range :raw-value "[2015-04-29 Wed 09:53]--[2015-04-29 Wed 09:53]" :year-start 2015 :month-start 4 :day-start 29 :hour-start 9 :minute-start 53 :year-end 2015 :month-end 4 :day-end 29 :hour-end 9 :minute-end 53 :begin 373062 :end 373109 :post-blank 1)) :duration "0:00" :begin 373301 :end 373364 :post-blank 0 :post-affiliated 373301 :parent nil)) 0] [[[[[[nil nil ... 0] [nil nil ... 0] (paragraph ...) 0] [[nil nil ... 0] [nil nil ... 0] (paragraph ...) 0] (paragraph (:begin 398259 :end 398335 :contents-begin 398259 :contents-end 398334 :post-blank 1 :post-affiliated 398259 :parent nil)) 0] [[[nil nil ... 0] [nil nil ... 0] (plain-list ...) 0] [[nil nil ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] (item ...) 1] (item (:bullet "- " :begin 402853 :end 402872 :contents-begin 402859 :contents-end 402872 :checkbox on :counter nil :structure ... :post-blank 0 :post-affiliated 402853 :tag nil :parent ...)) 1] (planning (:closed (timestamp ...) :deadline (timestamp ...) :scheduled nil :begin 402706 :end 402764 :post-blank 0 :post-affiliated 402706 :parent nil)) 1] [[[[[nil nil ... 0] [[nil nil ... 0] nil ... -1] ... 1] [nil [nil nil ... 0] ... 1] (planning ...) -1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] (src-block ...) 0] (property-drawer (:begin 409682 :end 409804 :contents-begin 409695 :contents-end 409797 :post-blank 1 :post-affiliated 409682 :parent nil)) -1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] (paragraph ...) 0] [[nil nil ... 0] [nil nil ... 0] (property-drawer ...) 0] (property-drawer (:begin 411885 :end 411953 :contents-begin 411898 :contents-end 411946 :post-blank 1 :post-affiliated 411885 :parent nil)) -1] (keyword (:key "RESULTS" :value "" :begin 410500 :end 410512 :post-blank 1 :post-affiliated 410500 :parent nil)) -1] (planning (:closed (timestamp (:type inactive :raw-value "[2015-09-10 Thu 14:33]" :year-start 2015 :month-start 9 :day-start 10 :hour-start 14 :minute-start 33 :year-end 2015 :month-end 9 :day-end 10 :hour-end 14 :minute-end 33 :begin 402927 :end 402950 :post-blank 1)) :deadline (timestamp (:type active :raw-value "<2015-09-11 Fri>" :year-start 2015 :month-start 9 :day-start 11 :hour-start nil :minute-start nil :year-end 2015 :month-end 9 :day-end 11 :hour-end nil :minute-end nil :begin 402960 :end 402976 :post-blank 0)) :scheduled nil :begin 403165 :end 403223 :post-blank 0 :post-affiliated 403165 :parent nil)) 1] [[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] (clock ...) 0] [[nil nil ... 0] [nil nil ... 0] (drawer ...) 0] (paragraph (:begin 412627 :end 412688 :contents-begin 412627 :contents-end 412688 :post-blank 0 :post-affiliated 412627 :parent ...)) -1] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] (node-property ...) 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] nil ... -1] (planning ...) 0] (paragraph (:begin 413333 :end 413384 :contents-begin 413333 :contents-end 413384 :post-blank 0 :post-affiliated 413333 :parent ...)) -1] (planning (:closed (timestamp ...) :deadline (timestamp ...) :scheduled nil :begin 412938 :end 412996 :post-blank 0 :post-affiliated 412938 :parent (planning ...))) 1] [[[[[nil nil ... 0] nil ... -1] [[nil nil ... 0] [nil nil ... 0] ... 0] (clock ...) 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] (property-drawer ...) -1] (property-drawer (:begin 418430 :end 418498 :contents-begin 418443 :contents-end 418491 :post-blank 1 :post-affiliated 418430 :parent nil)) 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] (property-drawer ...) -1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil [nil nil ... 0] ... 1] (property-drawer ...) 0] (property-drawer (:begin 420142 :end 420204 :contents-begin 420155 :contents-end 420197 :post-blank 1 :post-affiliated 420142 :parent nil)) 0] (property-drawer (:begin 419135 :end 419202 :contents-begin 419148 :contents-end 419196 :post-blank 0 :post-affiliated 419135 :parent nil)) 0] (src-block (:language "R" :switches nil :parameters ":session :file /Users/martin/org/R_26043lAl.png :exports both :results graphics" :begin 414352 :end 414501 :number-lines nil :preserve-indent nil :retain-labels t :use-labels t :label-fmt nil :value "x <- seq(0, 10, length=100)\nplot(x, sin(x))\n" :post-blank 1 :post-affiliated 414352 :parent nil)) -1] (property-drawer (:begin 412138 :end 412206 :contents-begin 412151 :contents-end 412199 :post-blank 1 :post-affiliated 412138 :parent nil)) 0] (paragraph (:begin 397906 :end 397932 :contents-begin 397906 :contents-end 397931 :post-blank 1 :post-affiliated 397906 :parent nil)) 0] [[[[[[[nil nil ... 0] [nil nil ... 0] (clock ...) 0] [[nil nil ... 0] [nil nil ... 0] (property-drawer ...) 0] (paragraph (:begin 424254 :end 424693 :contents-begin 424254 :contents-end 424692 :post-blank 1 :post-affiliated 424254 :parent nil)) 0] [[[nil nil ... 0] [nil nil ... 0] (planning ...) 0] [[nil nil ... 0] [nil nil ... 0] (property-drawer ...) 0] (drawer (:begin 426335 :end 426416 :drawer-name "LOGBOOK" :contents-begin 426345 :contents-end 426408 :post-blank 2 :post-affiliated 426335 :parent nil)) 0] (paragraph (:begin 425589 :end 425753 :contents-begin 425589 :contents-end 425752 :post-blank 1 :post-affiliated 425589 :parent nil)) 0] [[[[nil nil ... 0] [nil nil ... 0] (clock ...) 0] [[nil nil ... 0] [nil nil ... 0] (clock ...) 0] (planning (:closed ... :deadline nil :scheduled nil :begin 427975 :end 428006 :post-blank 0 :post-affiliated 427975 :parent nil)) 0] [[[nil nil ... 0] [nil nil ... 0] (property-drawer ...) 0] [[nil nil ... 0] [[nil nil ... 0] nil ... -1] (planning ...) 1] (planning (:closed nil :deadline ... :scheduled nil :begin 432314 :end 432341 :post-blank 0 :post-affiliated 432314 :parent nil)) 1] (drawer (:begin 428195 :end 428264 :drawer-name "PROPERTIES" :contents-begin 428208 :contents-end 428256 :post-blank 2 :post-affiliated 428195 :parent nil)) 1] (drawer (:begin 427043 :end 427111 :drawer-name "PROPERTIES" :contents-begin 427056 :contents-end 427104 :post-blank 1 :post-affiliated 427043 :parent nil)) 1] [[[[[[nil nil ... 0] nil ... -1] [[nil nil ... 0] [nil nil ... 0] ... 0] (property-drawer ...) 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] (paragraph ...) 0] (planning (:closed ... :deadline nil :scheduled nil :begin 436147 :end 436178 :post-blank 0 :post-affiliated 436147 :parent nil)) 0] [[[nil nil ... 0] [nil nil ... 0] (plain-list ...) 0] [[nil nil ... 0] [nil nil ... 0] (paragraph ...) 0] (plain-list (:type unordered :begin 438263 :end 438441 :contents-begin 438263 :contents-end 438438 :structure ... :post-blank 1 :post-affiliated 438263 :parent nil)) 0] (paragraph (:begin 437883 :end 437943 :contents-begin 437883 :contents-end 437942 :post-blank 1 :post-affiliated 437883 :parent nil)) -1] [[[[nil nil ... 0] [nil nil ... 0] (plain-list ...) 0] [[nil nil ... 0] [nil nil ... 0] (paragraph ...) 0] (paragraph (:begin 440990 :end 441039 :contents-begin 440990 :contents-end 441038 :post-blank 1 :post-affiliated 440990 :parent nil)) 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] (paragraph ...) -1] [[nil nil ... 0] [nil nil ... 0] (paragraph ...) 0] (paragraph (:begin 443014 :end 443157 :contents-begin 443014 :contents-end 443155 :post-blank 2 :post-affiliated 443014 :parent nil)) -1] (paragraph (:begin 441722 :end 441781 :contents-begin 441722 :contents-end 441781 :post-blank 0 :post-affiliated 441722 :parent nil)) 1] (paragraph (:begin 439579 :end 439639 :contents-begin 439579 :contents-end 439638 :post-blank 1 :post-affiliated 439579 :parent nil)) 0] (paragraph (:begin 434447 :end 434642 :contents-begin 434447 :contents-end 434641 :post-blank 1 :post-affiliated 434447 :parent nil)) 0] [[[[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[nil nil ... 0] nil ... -1] (paragraph ...) -1] [[[nil nil ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 1] [[nil nil ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 1] (property-drawer ...) 0] (property-drawer (:begin 456046 :end 456126 :contents-begin 456059 :contents-end 456120 :post-blank 0 :post-affiliated 456046 :parent nil)) 0] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil [nil nil ... 0] ... 1] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] (paragraph ...) -1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [[nil nil ... 0] nil ... -1] ... 1] (paragraph ...) 1] (paragraph (:begin 467569 :end 467636 :contents-begin 467569 :contents-end 467636 :post-blank 0 :post-affiliated 467569 :parent nil)) 0] (paragraph (:begin 461655 :end 461745 :contents-begin 461655 :contents-end 461745 :post-blank 0 :post-affiliated 461655 :parent (item ...))) 0] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] (paragraph ...) -1] [[[nil nil ... 0] nil ... -1] [[nil nil ... 0] [nil nil ... 0] ... 0] (item ...) 0] (planning (:closed nil :deadline ... :scheduled nil :begin 474891 :end 474918 :post-blank 0 :post-affiliated 474891 :parent nil)) 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] (paragraph ...) -1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 1] (property-drawer ...) 1] (planning (:closed ... :deadline nil :scheduled nil :begin 476133 :end 476164 :post-blank 0 :post-affiliated 476133 :parent nil)) 1] (paragraph (:begin 475424 :end 475510 :contents-begin 475424 :contents-end 475510 :post-blank 0 :post-affiliated 475424 :parent (item ...))) 1] (paragraph (:begin 470934 :end 471084 :contents-begin 470934 :contents-end 471083 :post-blank 1 :post-affiliated 470934 :parent nil)) 0] [[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [[nil nil ... 0] nil ... -1] ... 1] (drawer ...) 1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] (property-drawer ...) -1] (property-drawer (:begin 482039 :end 482106 :contents-begin 482052 :contents-end 482100 :post-blank 0 :post-affiliated 482039 :parent nil)) -1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] (property-drawer ...) -1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil [nil nil ... 0] ... 1] (paragraph ...) 0] (property-drawer (:begin 482801 :end 482868 :contents-begin 482814 :contents-end 482862 :post-blank 0 :post-affiliated 482801 :parent nil)) 0] (property-drawer (:begin 482442 :end 482509 :contents-begin 482455 :contents-end 482503 :post-blank 0 :post-affiliated 482442 :parent nil)) -1] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] nil ... -1] ... 0] (paragraph ...) 1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] nil ... -1] ... 0] (property-drawer ...) 0] (paragraph (:begin 486066 :end 486101 :contents-begin 486066 :contents-end 486100 :post-blank 1 :post-affiliated 486066 :parent nil)) 0] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] (planning ...) 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] (clock ...) 0] (property-drawer (:begin 503875 :end 503969 :contents-begin 503897 :contents-end 503954 :post-blank 0 :post-affiliated 503875 :parent nil)) 0] (clock (:status closed :value (timestamp ...) :duration "0:32" :begin 500086 :end 500149 :post-blank 0 :post-affiliated 500086 :parent nil)) 0] (property-drawer (:begin 483646 :end 483753 :contents-begin 483659 :contents-end 483746 :post-blank 1 :post-affiliated 483646 :parent nil)) 0] (planning (:closed (timestamp (:type inactive :raw-value "[2015-09-10 Thu 21:16]" :year-start 2015 :month-start 9 :day-start 10 :hour-start 21 :minute-start 16 :year-end 2015 :month-end 9 :day-end 10 :hour-end 21 :minute-end 16 :begin 480219 :end 480241 :post-blank 0)) :deadline nil :scheduled nil :begin 480539 :end 480570 :post-blank 0 :post-affiliated 480539 :parent nil)) 0] (paragraph (:begin 444786 :end 444873 :contents-begin 444786 :contents-end 444873 :post-blank 0 :post-affiliated 444786 :parent nil)) 1] (planning (:closed (timestamp (:type inactive :raw-value "[2015-09-22 Tue 16:58]" :year-start 2015 :month-start 9 :day-start 22 :hour-start 16 :minute-start 58 :year-end 2015 :month-end 9 :day-end 22 :hour-end 16 :minute-end 58 :begin 423705 :end 423727 :post-blank 0)) :deadline nil :scheduled nil :begin 424025 :end 424056 :post-blank 0 :post-affiliated 424025 :parent nil)) 0] 0 (planning (:closed (timestamp (:type inactive :raw-value "[2015-09-17 Thu 21:46]" :year-start 2015 :month-start 9 :day-start 17 :hour-start 21 :minute-start 46 :year-end 2015 :month-end 9 :day-end 17 :hour-end 21 :minute-end 46 :begin 413013 :end 413036 :post-blank 1)) :deadline (timestamp (:type active :raw-value "<2015-09-11 Fri>" :year-start 2015 :month-start 9 :day-start 11 :hour-start nil :minute-start nil :year-end 2015 :month-end 9 :day-end 11 :hour-end nil :minute-end nil :begin 413046 :end 413062 :post-blank 0)) :scheduled nil :begin 413005 :end 413063 :post-blank 0 :post-affiliated 413005 :parent nil)) nil nil)
  avl-tree--do-delete(org-element--cache-compare [[[[[[[[[nil nil ... 0] [nil [nil nil ... 0] ... 1] ... 1] [[nil [nil nil ... 0] ... 1] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] (planning ...) 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] (clock ...) 0] (clock (:status closed :value ... :duration "0:23" :begin 182223 :end 182286 :post-blank 0 :post-affiliated 182223 :parent nil)) -1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] (planning ...) 0] [[nil nil ... 0] [nil nil ... 0] (planning ...) 0] (planning (:closed ... :deadline nil :scheduled nil :begin 183809 :end 183840 :post-blank 0 :post-affiliated 183809 :parent nil)) -1] (planning (:closed (timestamp ...) :deadline (timestamp ...) :scheduled nil :begin 183104 :end 183162 :post-blank 0 :post-affiliated 183104 :parent nil)) -1] [[[[nil nil ... 0] [nil nil ... 0] (clock ...) 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil [nil nil ... 0] ... 1] (drawer ...) 0] (clock (:status closed :value ... :duration "0:21" :begin 188816 :end 188879 :post-blank 0 :post-affiliated 188816 :parent nil)) 1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] (property-drawer ...) -1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[[nil nil ... 0] nil ... -1] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] (paragraph ...) 0] (clock (:status closed :value ... :duration "0:06" :begin 209256 :end 209319 :post-blank 0 :post-affiliated 209256 :parent nil)) 1] (planning (:closed (timestamp ...) :deadline nil :scheduled nil :begin 208189 :end 208220 :post-blank 0 :post-affiliated 208189 :parent nil)) 1] (clock (:status closed :value (timestamp (:type inactive-range :raw-value "[2015-08-21 Fri 11:54]--[2015-08-21 Fri 13:03]" :year-start 2015 :month-start 8 :day-start 21 :hour-start 11 :minute-start 54 :year-end 2015 :month-end 8 :day-end 21 :hour-end 13 :minute-end 3 :begin 188325 :end 188372 :post-blank 1)) :duration "1:09" :begin 188564 :end 188627 :post-blank 0 :post-affiliated 188564 :parent nil)) 0] [[[[[nil nil ... 0] [nil nil ... 0] (paragraph ...) 0] [[nil nil ... 0] [nil nil ... 0] (clock ...) 0] (property-drawer (:begin 249809 :end 249876 :contents-begin 249822 :contents-end 249870 :post-blank 0 :post-affiliated 249809 :parent nil)) 0] [[[nil nil ... 0] [nil nil ... 0] (clock ...) 0] [[nil nil ... 0] [nil nil ... 0] (property-drawer ...) 0] (paragraph (:begin 250317 :end 250417 :contents-begin 250317 :contents-end 250416 :post-blank 1 :post-affiliated 250317 :parent nil)) 0] (clock (:status closed :value (timestamp ...) :duration "0:01" :begin 250065 :end 250128 :post-blank 0 :post-affiliated 250065 :parent nil)) 0] [[[[nil nil ... 0] [nil nil ... 0] (clock ...) 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] (property-drawer ...) -1] (paragraph (:begin 251311 :end 251436 :contents-begin 251311 :contents-end 251436 :post-blank 0 :post-affiliated 251311 :parent nil)) 1] [[[nil nil ... 0] [nil nil ... 0] (clock ...) 0] [[nil nil ... 0] [nil nil ... 0] (clock ...) 0] (planning (:closed ... :deadline ... :scheduled nil :begin 252392 :end 252450 :post-blank 0 :post-affiliated 252392 :parent nil)) 0] (clock (:status closed :value (timestamp ...) :duration "1:40" :begin 252070 :end 252133 :post-blank 0 :post-affiliated 252070 :parent nil)) -1] (clock (:status closed :value (timestamp (:type inactive-range :raw-value "[2015-08-26 Wed 07:38]--[2015-08-26 Wed 09:41]" :year-start 2015 :month-start 8 :day-start 26 :hour-start 7 :minute-start 38 :year-end 2015 :month-end 8 :day-end 26 :hour-end 9 :minute-end 41 :begin 250816 :end 250863 :post-blank 1)) :duration "2:03" :begin 251055 :end 251118 :post-blank 0 :post-affiliated 251055 :parent nil)) 1] (property-drawer (:begin 249472 :end 249539 :contents-begin 249485 :contents-end 249533 :post-blank 0 :post-affiliated 249472 :parent nil)) -1] [[[[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[nil nil ... 0] [nil nil ... 0] ... 0] (paragraph ...) -1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] (planning ...) 0] (paragraph (:begin 253974 :end 254104 :contents-begin 253974 :contents-end 254103 :post-blank 1 :post-affiliated 253974 :parent nil)) -1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] (planning ...) 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] (clock ...) 0] (drawer (:begin 255652 :end 255731 :drawer-name "LOGBOOK" :contents-begin 255662 :contents-end 255725 :post-blank 0 :post-affiliated 255652 :parent nil)) 0] (planning (:closed (timestamp ...) :deadline nil :scheduled nil :begin 255010 :end 255041 :post-blank 0 :post-affiliated 255010 :parent nil)) -1] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] (table ...) 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] nil ... -1] ... 0] (clock ...) 0] (paragraph (:begin 261713 :end 261759 :contents-begin 261713 :contents-end 261759 :post-blank 0 :post-affiliated 261713 :parent nil)) 1] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] ... 1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] ... 0] (clock ...) 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] (planning ...) 1] (clock (:status closed :value ... :duration "0:15" :begin 266395 :end 266458 :post-blank 0 :post-affiliated 266395 :parent nil)) 0] (clock (:status closed :value (timestamp ...) :duration "0:05" :begin 264071 :end 264134 :post-blank 0 :post-affiliated 264071 :parent nil)) 1] (paragraph (:begin 256360 :end 256446 :contents-begin 256360 :contents-end 256445 :post-blank 1 :post-affiliated 256360 :parent nil)) 1] [[[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] ... 1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] (paragraph ...) -1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] (clock ...) 0] (drawer (:begin 281146 :end 281213 :drawer-name "PROPERTIES" :contents-begin 281159 :contents-end 281207 :post-blank 0 :post-affiliated 281146 :parent nil)) -1] [[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] ... 0] [[[nil nil ... 0] [nil [nil nil ... 0] ... 1] ... 1] [[nil nil ... 0] [nil nil ... 0] ... 0] ... -1] (clock ...) 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] nil ... -1] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... -1] (property-drawer ...) 1] (property-drawer (:begin 284598 :end 284665 :contents-begin 284611 :contents-end 284659 :post-blank 0 :post-affiliated 284598 :parent nil)) 0] (drawer (:begin 282513 :end 282580 :drawer-name "PROPERTIES" :contents-begin 282526 :contents-end 282574 :post-blank 0 :post-affiliated 282513 :parent nil)) 0] [[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] (planning ...) 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] nil ... -1] ... 0] [[nil [nil nil ... 0] ... 1] [nil nil ... 0] ... -1] ... 0] (drawer ...) 1] (drawer (:begin 291135 :end 291214 :drawer-name "LOGBOOK" :contents-begin 291145 :contents-end 291208 :post-blank 0 :post-affiliated 291135 :parent nil)) 1] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] nil ... -1] ... 0] (clock ...) -1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [[nil nil ... 0] nil ... -1] ... 1] ... 1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] (clock ...) 0] (clock (:status closed :value ... :duration "0:02" :begin 296405 :end 296468 :post-blank 0 :post-affiliated 296405 :parent nil)) 0] (clock (:status closed :value (timestamp ...) :duration "0:23" :begin 294638 :end 294701 :post-blank 0 :post-affiliated 294638 :parent nil)) 0] (drawer (:begin 289435 :end 289577 :drawer-name "LOGBOOK" :contents-begin 289445 :contents-end 289571 :post-blank 0 :post-affiliated 289435 :parent nil)) 0] (fixed-width (:begin 271248 :end 271308 :value "limit_reader_11_1441202949.csv\n" :post-blank 1 :post-affiliated 271274 :results ("boothsfilename") :parent nil)) 0] (paragraph (:begin 252647 :end 252860 :contents-begin 252647 :contents-end 252859 :post-blank 1 :post-affiliated 252647 :parent nil)) 1] [[[[[[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] (paragraph ...) 0] [[[nil [nil nil ... 0] ... 1] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [[nil nil ... 0] nil ... -1] ... 1] [[nil nil ... 0] [nil nil ... 0] ... 0] ... -1] (clock ...) 1] (property-drawer (:begin 364103 :end 364170 :contents-begin 364116 :contents-end 364164 :post-blank 0 :post-affiliated 364103 :parent nil)) 0] [[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] nil ... -1] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil [nil nil ... 0] ... 1] ... 1] ... 1] (property-drawer ...) 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] (drawer ...) 0] (planning (:closed ... :deadline nil :scheduled nil :begin 370478 :end 370509 :post-blank 0 :post-affiliated 370478 :parent nil)) -1] (planning (:closed (timestamp ...) :deadline (timestamp ...) :scheduled nil :begin 365668 :end 365726 :post-blank 0 :post-affiliated 365668 :parent nil)) 0] [[[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] (clock ...) 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 1] ... 1] (drawer ...) 1] (clock (:status closed :value ... :duration "2:19" :begin 381895 :end 381958 :post-blank 0 :post-affiliated 381895 :parent nil)) 0] [[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil [nil nil ... 0] ... 1] ... 0] [[nil [nil nil ... 0] ... 1] [nil [nil nil ... 0] ... 1] ... 0] ... 0] [[nil nil ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 1] (paragraph ...) -1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] (paragraph ...) 0] (paragraph (:begin 390774 :end 390893 :contents-begin 390774 :contents-end 390892 :post-blank 1 :post-affiliated 390774 :parent nil)) -1] (property-drawer (:begin 383192 :end 383260 :contents-begin 383205 :contents-end 383253 :post-blank 1 :post-affiliated 383192 :parent nil)) 0] (clock (:status closed :value (timestamp (:type inactive-range :raw-value "[2015-04-29 Wed 09:53]--[2015-04-29 Wed 09:53]" :year-start 2015 :month-start 4 :day-start 29 :hour-start 9 :minute-start 53 :year-end 2015 :month-end 4 :day-end 29 :hour-end 9 :minute-end 53 :begin 373062 :end 373109 :post-blank 1)) :duration "0:00" :begin 373301 :end 373364 :post-blank 0 :post-affiliated 373301 :parent nil)) 0] [[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] (paragraph ...) 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 1] (item ...) 1] (planning (:closed ... :deadline ... :scheduled nil :begin 402706 :end 402764 :post-blank 0 :post-affiliated 402706 :parent nil)) 1] [[[[[nil nil ... 0] [[nil nil ... 0] nil ... -1] ... 1] [nil [nil nil ... 0] ... 1] ... -1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] (property-drawer ...) -1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] (property-drawer ...) -1] (keyword (:key "RESULTS" :value "" :begin 410500 :end 410512 :post-blank 1 :post-affiliated 410500 :parent nil)) -1] (planning (:closed (timestamp ...) :deadline (timestamp ...) :scheduled nil :begin 403165 :end 403223 :post-blank 0 :post-affiliated 403165 :parent nil)) 1] [[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] (paragraph ...) -1] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] nil ... -1] ... 0] (paragraph ...) -1] (planning (:closed ... :deadline ... :scheduled nil :begin 412938 :end 412996 :post-blank 0 :post-affiliated 412938 :parent ...)) 1] [[[[[nil nil ... 0] nil ... -1] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] (property-drawer ...) 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil [nil nil ... 0] ... 1] ... 0] (property-drawer ...) 0] (property-drawer (:begin 419135 :end 419202 :contents-begin 419148 :contents-end 419196 :post-blank 0 :post-affiliated 419135 :parent nil)) 0] (src-block (:language "R" :switches nil :parameters ":session :file /Users/martin/org/R_26043lAl.png :exports both :results graphics" :begin 414352 :end 414501 :number-lines nil :preserve-indent nil :retain-labels t :use-labels t :label-fmt nil :value "x <- seq(0, 10, length=100)\nplot(x, sin(x))\n" :post-blank 1 :post-affiliated 414352 :parent nil)) -1] (property-drawer (:begin 412138 :end 412206 :contents-begin 412151 :contents-end 412199 :post-blank 1 :post-affiliated 412138 :parent nil)) 0] (paragraph (:begin 397906 :end 397932 :contents-begin 397906 :contents-end 397931 :post-blank 1 :post-affiliated 397906 :parent nil)) 0] [[[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] (paragraph ...) 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] (drawer ...) 0] (paragraph (:begin 425589 :end 425753 :contents-begin 425589 :contents-end 425752 :post-blank 1 :post-affiliated 425589 :parent nil)) 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] (planning ...) 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [[nil nil ... 0] nil ... -1] ... 1] (planning ...) 1] (drawer (:begin 428195 :end 428264 :drawer-name "PROPERTIES" :contents-begin 428208 :contents-end 428256 :post-blank 2 :post-affiliated 428195 :parent nil)) 1] (drawer (:begin 427043 :end 427111 :drawer-name "PROPERTIES" :contents-begin 427056 :contents-end 427104 :post-blank 1 :post-affiliated 427043 :parent nil)) 1] [[[[[[nil nil ... 0] nil ... -1] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] (planning ...) 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] (plain-list ...) 0] (paragraph (:begin 437883 :end 437943 :contents-begin 437883 :contents-end 437942 :post-blank 1 :post-affiliated 437883 :parent nil)) -1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] (paragraph ...) 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[nil nil ... 0] [nil nil ... 0] ... 0] (paragraph ...) -1] (paragraph (:begin 441722 :end 441781 :contents-begin 441722 :contents-end 441781 :post-blank 0 :post-affiliated 441722 :parent nil)) 1] (paragraph (:begin 439579 :end 439639 :contents-begin 439579 :contents-end 439638 :post-blank 1 :post-affiliated 439579 :parent nil)) 0] (paragraph (:begin 434447 :end 434642 :contents-begin 434447 :contents-end 434641 :post-blank 1 :post-affiliated 434447 :parent nil)) 0] [[[[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[nil nil ... 0] nil ... -1] ... -1] [[[nil nil ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 1] [[nil nil ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 1] ... 0] (property-drawer ...) 0] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil [nil nil ... 0] ... 1] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... -1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [[nil nil ... 0] nil ... -1] ... 1] ... 1] (paragraph ...) 0] (paragraph (:begin 461655 :end 461745 :contents-begin 461655 :contents-end 461745 :post-blank 0 :post-affiliated 461655 :parent ...)) 0] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[[nil nil ... 0] nil ... -1] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] (planning ...) 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 1] ... 1] (planning ...) 1] (paragraph (:begin 475424 :end 475510 :contents-begin 475424 :contents-end 475510 :post-blank 0 :post-affiliated 475424 :parent ...)) 1] (paragraph (:begin 470934 :end 471084 :contents-begin 470934 :contents-end 471083 :post-blank 1 :post-affiliated 470934 :parent nil)) 0] [[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [[nil nil ... 0] nil ... -1] ... 1] ... 1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] (property-drawer ...) -1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil [nil nil ... 0] ... 1] ... 0] (property-drawer ...) 0] (property-drawer (:begin 482442 :end 482509 :contents-begin 482455 :contents-end 482503 :post-blank 0 :post-affiliated 482442 :parent nil)) -1] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] nil ... -1] ... 0] ... 1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] nil ... -1] ... 0] ... 0] (paragraph ...) 0] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] (property-drawer ...) 0] (clock (:status closed :value ... :duration "0:32" :begin 500086 :end 500149 :post-blank 0 :post-affiliated 500086 :parent nil)) 0] (property-drawer (:begin 483646 :end 483753 :contents-begin 483659 :contents-end 483746 :post-blank 1 :post-affiliated 483646 :parent nil)) 0] (planning (:closed (timestamp (:type inactive :raw-value "[2015-09-10 Thu 21:16]" :year-start 2015 :month-start 9 :day-start 10 :hour-start 21 :minute-start 16 :year-end 2015 :month-end 9 :day-end 10 :hour-end 21 :minute-end 16 :begin 480219 :end 480241 :post-blank 0)) :deadline nil :scheduled nil :begin 480539 :end 480570 :post-blank 0 :post-affiliated 480539 :parent nil)) 0] (paragraph (:begin 444786 :end 444873 :contents-begin 444786 :contents-end 444873 :post-blank 0 :post-affiliated 444786 :parent nil)) 1] (planning (:closed (timestamp (:type inactive :raw-value "[2015-09-22 Tue 16:58]" :year-start 2015 :month-start 9 :day-start 22 :hour-start 16 :minute-start 58 :year-end 2015 :month-end 9 :day-end 22 :hour-end 16 :minute-end 58 :begin 423705 :end 423727 :post-blank 0)) :deadline nil :scheduled nil :begin 424025 :end 424056 :post-blank 0 :post-affiliated 424025 :parent nil)) 0] (planning (:closed (timestamp (:type inactive :raw-value "[2015-08-17 Mon 14:41]" :year-start 2015 :month-start 8 :day-start 17 :hour-start 14 :minute-start 41 :year-end 2015 :month-end 8 :day-end 17 :hour-end 14 :minute-end 41 :begin 356132 :end 356155 :post-blank 1)) :deadline (timestamp (:type active :raw-value "<2015-08-13 Thu>" :year-start 2015 :month-start 8 :day-start 13 :hour-start nil :minute-start nil :year-end 2015 :month-end 8 :day-end 13 :hour-end nil :minute-end nil :begin 356165 :end 356181 :post-blank 0)) :scheduled nil :begin 356370 :end 356428 :post-blank 0 :post-affiliated 356370 :parent nil)) 0] 1 (planning (:closed (timestamp (:type inactive :raw-value "[2015-09-17 Thu 21:46]" :year-start 2015 :month-start 9 :day-start 17 :hour-start 21 :minute-start 46 :year-end 2015 :month-end 9 :day-end 17 :hour-end 21 :minute-end 46 :begin 413013 :end 413036 :post-blank 1)) :deadline (timestamp (:type active :raw-value "<2015-09-11 Fri>" :year-start 2015 :month-start 9 :day-start 11 :hour-start nil :minute-start nil :year-end 2015 :month-end 9 :day-end 11 :hour-end nil :minute-end nil :begin 413046 :end 413062 :post-blank 0)) :scheduled nil :begin 413005 :end 413063 :post-blank 0 :post-affiliated 413005 :parent nil)) nil nil)
  avl-tree--do-delete(org-element--cache-compare [[[[[[[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] ... 0] (property-drawer ...) 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[[nil nil ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 1] [nil [nil nil ... 0] ... 1] ... -1] (item ...) 1] (item (:bullet "- " :begin 1779 :end 1851 :contents-begin 1793 :contents-end 1851 :checkbox off :counter nil :structure ... :post-blank 0 :post-affiliated 1779 :tag nil :parent ...)) 0] [[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] ... 0] (property-drawer ...) 0] [[[nil nil ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 1] [[[[nil nil ... 0] nil ... -1] [[nil nil ... 0] nil ... -1] ... 0] [[[nil nil ... 0] nil ... -1] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] (property-drawer ...) 1] (property-drawer (:begin 8999 :end 9066 :contents-begin 9012 :contents-end 9060 :post-blank 0 :post-affiliated 8999 :parent nil)) 0] (drawer (:begin 2902 :end 2996 :drawer-name "PROPERTIES" :contents-begin 2924 :contents-end 2981 :post-blank 0 :post-affiliated 2902 :parent nil)) 0] [[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[nil nil ... 0] nil ... -1] (item ...) -1] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[nil nil ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 1] ... 0] [[nil nil ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 1] (plain-list ...) -1] (property-drawer (:begin 14355 :end 14423 :contents-begin 14368 :contents-end 14416 :post-blank 1 :post-affiliated 14355 :parent nil)) 1] [[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] ... 0] [[nil nil ... 0] [[nil nil ... 0] nil ... -1] ... 1] (property-drawer ...) -1] [[[nil [nil nil ... 0] ... 1] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] (table-row ...) 1] (property-drawer (:begin 25852 :end 25920 :contents-begin 25865 :contents-end 25913 :post-blank 1 :post-affiliated 25852 :parent nil)) 0] (item (:bullet "- " :begin 18935 :end 19021 :contents-begin 18937 :contents-end 19021 :checkbox nil :counter nil :structure (... ... ... ... ... ...) :post-blank 0 :post-affiliated 18935 :tag nil :parent (plain-list ...))) 0] (item (:bullet "- " :begin 11358 :end 11397 :contents-begin 11364 :contents-end 11397 :checkbox on :counter nil :structure ((11358 0 "- " nil "[X]" nil 11397) (11397 0 "- " nil "[X]" nil 11611) (11574 2 "- " nil nil nil 11611) (11611 0 "- " nil "[X]" nil 11784) (11727 2 "- " nil nil nil 11784) (11784 0 "- " nil "[X]" nil 11889) (11832 2 "- " nil nil nil 11889) (11889 0 "- " nil "[X]" nil 11992) (11939 2 "- " nil nil nil 11992) (11992 0 "- " nil "[X]" nil 12077) (12031 2 "- " nil nil nil 12077) (12077 0 "- " nil nil nil 12324) (12254 2 "- " nil nil nil 12289) (12289 2 "- " nil nil nil 12324) (12324 0 "- " nil nil nil 14245) (12469 2 "- " nil nil nil 12759) (12759 2 "- " nil nil nil 12853) (12853 2 "- " nil "[ ]" nil 12904) (12904 2 "- " nil "[ ]" nil 13103) (12950 4 "- " nil nil nil 13103) (13103 2 "- " nil nil nil 14191) (13148 4 "- " nil nil nil 13198) (13198 4 "- " nil nil nil 13339) (13339 4 "- " nil nil nil 13485) (13485 4 "- " nil nil nil 13593) (13593 4 "- " nil nil nil 13700) (13700 4 "- " nil nil nil 13740) (13740 4 "- " nil nil nil 14117) (13915 6 "- " nil nil nil 14117) (14117 4 "- " nil nil nil 14191) (14191 2 "- " nil nil nil 14245)) :post-blank 0 :post-affiliated 11358 :tag nil :parent (plain-list (:type unordered :begin 11358 :end 14250 :contents-begin 11358 :contents-end 14245 :structure ... :post-blank 1 :post-affiliated 11358 :parent nil)))) 0] [[[[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil [nil nil ... 0] ... 1] ... 0] [[nil [nil nil ... 0] ... 1] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] (clock ...) -1] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] ... 0] [[[nil nil ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 1] [nil [nil nil ... 0] ... 1] ... -1] (clock ...) 0] (clock (:status closed :value ... :duration "2:55" :begin 32510 :end 32573 :post-blank 0 :post-affiliated 32510 :parent nil)) 0] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[nil nil ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 1] ... 0] (clock ...) 1] [[[nil [nil nil ... 0] ... 1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] (paragraph ...) -1] (property-drawer (:begin 39377 :end 39444 :contents-begin 39390 :contents-end 39438 :post-blank 0 :post-affiliated 39377 :parent nil)) 0] (paragraph (:begin 36504 :end 36625 :contents-begin 36504 :contents-end 36625 :post-blank 0 :post-affiliated 36504 :parent nil)) 0] [[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] (property-drawer ...) 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] (src-block ...) 0] (src-block (:language "sh" :switches nil :parameters ":dir /ssh:[email protected]:" :begin 50937 :end 51054 :number-lines nil :preserve-indent nil :retain-labels t :use-labels t :label-fmt nil :value "sleep 1\necho hello\nsleep 1\necho hello\nsleep 1\necho hello\n" :post-blank 1 :post-affiliated 50937 :parent nil)) -1] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] (paragraph ...) 0] [[[nil [nil nil ... 0] ... 1] [[[nil nil ... 0] nil ... -1] [nil nil ... 0] ... -1] ... 1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] (clock ...) -1] (property-drawer (:begin 54335 :end 54402 :contents-begin 54348 :contents-end 54396 :post-blank 0 :post-affiliated 54335 :parent nil)) 1] (plain-list (:type unordered :begin 51968 :end 52066 :contents-begin 51968 :contents-end 52066 :structure (... ... ... ...) :post-blank 0 :post-affiliated 51968 :parent nil)) 1] (fixed-width (:begin 43050 :end 43072 :value "vagrant\n" :post-blank 1 :post-affiliated 43061 :results ("") :parent nil)) 0] (table-row (:type standard :begin 28801 :end 28917 :contents-begin 28802 :contents-end 28916 :post-blank 0 :post-affiliated 28801 :parent (table (:begin 28198 :end 28917 :type org :tblfm nil :contents-begin 28269 :contents-end 28917 :value nil :post-blank 0 :post-affiliated 28269 :caption (...) :parent nil)))) 0] [[[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] (clock ...) 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil [nil nil ... 0] ... 1] ... 0] (property-drawer ...) 1] (planning (:closed ... :deadline nil :scheduled nil :begin 57882 :end 57913 :post-blank 0 :post-affiliated 57882 :parent nil)) 1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] (clock ...) 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] (clock ...) 0] (clock (:status closed :value ... :duration "3:38" :begin 61235 :end 61298 :post-blank 0 :post-affiliated 61235 :parent nil)) 0] (property-drawer (:begin 60727 :end 60794 :contents-begin 60740 :contents-end 60788 :post-blank 0 :post-affiliated 60727 :parent nil)) -1] [[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] (clock ...) 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] (property-drawer ...) -1] (planning (:closed ... :deadline nil :scheduled nil :begin 65471 :end 65502 :post-blank 0 :post-affiliated 65471 :parent nil)) -1] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] (planning ...) -1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] (clock ...) 0] (paragraph (:begin 72317 :end 72402 :contents-begin 72317 :contents-end 72402 :post-blank 0 :post-affiliated 72317 :parent nil)) 0] (property-drawer (:begin 71292 :end 71359 :contents-begin 71305 :contents-end 71353 :post-blank 0 :post-affiliated 71292 :parent nil)) 0] (clock (:status closed :value (timestamp (:type inactive-range :raw-value "[2015-07-10 Fri 14:24]--[2015-07-10 Fri 14:25]" :year-start 2015 :month-start 7 :day-start 10 :hour-start 14 :minute-start 24 :year-end 2015 :month-end 7 :day-end 10 :hour-end 14 :minute-end 25 :begin 61500 :end 61547 :post-blank 1)) :duration "0:01" :begin 61739 :end 61802 :post-blank 0 :post-affiliated 61739 :parent nil)) 0] [[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] (clock ...) 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] (planning ...) 0] (property-drawer (:begin 162534 :end 162601 :contents-begin 162547 :contents-end 162595 :post-blank 0 :post-affiliated 162534 :parent nil)) 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] (paragraph ...) 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] (property-drawer ...) 0] (property-drawer (:begin 174975 :end 175042 :contents-begin 174988 :contents-end 175036 :post-blank 0 :post-affiliated 174975 :parent nil)) 0] (clock (:status closed :value (timestamp ...) :duration "0:10" :begin 163171 :end 163234 :post-blank 0 :post-affiliated 163171 :parent nil)) 0] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] (property-drawer ...) 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] (clock ...) 0] (clock (:status closed :value ... :duration "0:06" :begin 176704 :end 176767 :post-blank 0 :post-affiliated 176704 :parent nil)) 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] (clock ...) 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] (paragraph ...) 0] (clock (:status closed :value ... :duration "0:01" :begin 179395 :end 179458 :post-blank 0 :post-affiliated 179395 :parent nil)) 0] (clock (:status closed :value (timestamp ...) :duration "0:15" :begin 177208 :end 177271 :post-blank 0 :post-affiliated 177208 :parent nil)) 0] (planning (:closed (timestamp (:type inactive :raw-value "[2015-08-11 Tue 14:26]" :year-start 2015 :month-start 8 :day-start 11 :hour-start 14 :minute-start 26 :year-end 2015 :month-end 8 :day-end 11 :hour-end 14 :minute-end 26 :begin 175900 :end 175922 :post-blank 0)) :deadline nil :scheduled nil :begin 176138 :end 176169 :post-blank 0 :post-affiliated 176138 :parent nil)) 0] (clock (:status closed :value (timestamp (:type inactive-range :raw-value "[2015-08-06 Thu 08:19]--[2015-08-06 Thu 08:29]" :year-start 2015 :month-start 8 :day-start 6 :hour-start 8 :minute-start 19 :year-end 2015 :month-end 8 :day-end 6 :hour-end 8 :minute-end 29 :begin 74190 :end 74237 :post-blank 1)) :duration "0:10" :begin 74429 :end 74492 :post-blank 0 :post-affiliated 74429 :parent nil)) -1] (property-drawer (:begin 56506 :end 56573 :contents-begin 56519 :contents-end 56567 :post-blank 0 :post-affiliated 56506 :parent nil)) -1] [[[[[[[[[nil nil ... 0] [nil [nil nil ... 0] ... 1] ... 1] [[nil [nil nil ... 0] ... 1] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] (clock ...) -1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] (planning ...) -1] (planning (:closed ... :deadline ... :scheduled nil :begin 183104 :end 183162 :post-blank 0 :post-affiliated 183104 :parent nil)) -1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil [nil nil ... 0] ... 1] ... 0] (clock ...) 1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[[nil nil ... 0] nil ... -1] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] (clock ...) 1] (planning (:closed ... :deadline nil :scheduled nil :begin 208189 :end 208220 :post-blank 0 :post-affiliated 208189 :parent nil)) 1] (clock (:status closed :value (timestamp ...) :duration "1:09" :begin 188564 :end 188627 :post-blank 0 :post-affiliated 188564 :parent nil)) 0] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] (property-drawer ...) 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] (paragraph ...) 0] (clock (:status closed :value ... :duration "0:01" :begin 250065 :end 250128 :post-blank 0 :post-affiliated 250065 :parent nil)) 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] (paragraph ...) 1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] (planning ...) 0] (clock (:status closed :value ... :duration "1:40" :begin 252070 :end 252133 :post-blank 0 :post-affiliated 252070 :parent nil)) -1] (clock (:status closed :value (timestamp ...) :duration "2:03" :begin 251055 :end 251118 :post-blank 0 :post-affiliated 251055 :parent nil)) 1] (property-drawer (:begin 249472 :end 249539 :contents-begin 249485 :contents-end 249533 :post-blank 0 :post-affiliated 249472 :parent nil)) -1] [[[[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[nil nil ... 0] [nil nil ... 0] ... 0] ... -1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] (paragraph ...) -1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] (drawer ...) 0] (planning (:closed ... :deadline nil :scheduled nil :begin 255010 :end 255041 :post-blank 0 :post-affiliated 255010 :parent nil)) -1] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] nil ... -1] ... 0] ... 0] (paragraph ...) 1] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] ... 1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] ... 0] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] ... 1] (clock ...) 0] (clock (:status closed :value ... :duration "0:05" :begin 264071 :end 264134 :post-blank 0 :post-affiliated 264071 :parent nil)) 1] (paragraph (:begin 256360 :end 256446 :contents-begin 256360 :contents-end 256445 :post-blank 1 :post-affiliated 256360 :parent nil)) 1] [[[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] ... 1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... -1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] (drawer ...) -1] [[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] ... 0] [[[nil nil ... 0] [nil [nil nil ... 0] ... 1] ... 1] [[nil nil ... 0] [nil nil ... 0] ... 0] ... -1] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] nil ... -1] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... -1] ... 1] (property-drawer ...) 0] (drawer (:begin 282513 :end 282580 :drawer-name "PROPERTIES" :contents-begin 282526 :contents-end 282574 :post-blank 0 :post-affiliated 282513 :parent nil)) 0] [[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] nil ... -1] ... 0] [[nil [nil nil ... 0] ... 1] [nil nil ... 0] ... -1] ... 0] ... 1] (drawer ...) 1] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] nil ... -1] ... 0] ... -1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [[nil nil ... 0] nil ... -1] ... 1] ... 1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] ... 0] (clock ...) 0] (clock (:status closed :value ... :duration "0:23" :begin 294638 :end 294701 :post-blank 0 :post-affiliated 294638 :parent nil)) 0] (drawer (:begin 289435 :end 289577 :drawer-name "LOGBOOK" :contents-begin 289445 :contents-end 289571 :post-blank 0 :post-affiliated 289435 :parent nil)) 0] (fixed-width (:begin 271248 :end 271308 :value "limit_reader_11_1441202949.csv\n" :post-blank 1 :post-affiliated 271274 :results ("boothsfilename") :parent nil)) 0] (paragraph (:begin 252647 :end 252860 :contents-begin 252647 :contents-end 252859 :post-blank 1 :post-affiliated 252647 :parent nil)) 1] [[[[[[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] ... 0] [[[nil [nil nil ... 0] ... 1] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [[nil nil ... 0] nil ... -1] ... 1] [[nil nil ... 0] [nil nil ... 0] ... 0] ... -1] ... 1] (property-drawer ...) 0] [[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] nil ... -1] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil [nil nil ... 0] ... 1] ... 1] ... 1] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] (planning ...) -1] (planning (:closed ... :deadline ... :scheduled nil :begin 365668 :end 365726 :post-blank 0 :post-affiliated 365668 :parent nil)) 0] [[[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 1] ... 1] ... 1] (clock ...) 0] [[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil [nil nil ... 0] ... 1] ... 0] [[nil [nil nil ... 0] ... 1] [nil [nil nil ... 0] ... 1] ... 0] ... 0] [[nil nil ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 1] ... -1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] (paragraph ...) -1] (property-drawer (:begin 383192 :end 383260 :contents-begin 383205 :contents-end 383253 :post-blank 1 :post-affiliated 383192 :parent nil)) 0] (clock (:status closed :value (timestamp ...) :duration "0:00" :begin 373301 :end 373364 :post-blank 0 :post-affiliated 373301 :parent nil)) 0] [[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 1] ... 1] (planning ...) 1] [[[[[nil nil ... 0] [[nil nil ... 0] nil ... -1] ... 1] [nil [nil nil ... 0] ... 1] ... -1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... -1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... -1] (keyword ...) -1] (planning (:closed ... :deadline ... :scheduled nil :begin 403165 :end 403223 :post-blank 0 :post-affiliated 403165 :parent nil)) 1] [[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... -1] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] nil ... -1] ... 0] ... -1] (planning ...) 1] [[[[[nil nil ... 0] nil ... -1] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil [nil nil ... 0] ... 1] ... 0] ... 0] (property-drawer ...) 0] (src-block (:language "R" :switches nil :parameters ":session :file /Users/martin/org/R_26043lAl.png :exports both :results graphics" :begin 414352 :end 414501 :number-lines nil :preserve-indent nil :retain-labels t :use-labels t :label-fmt nil :value "x <- seq(0, 10, length=100)\nplot(x, sin(x))\n" :post-blank 1 :post-affiliated 414352 :parent nil)) -1] (property-drawer (:begin 412138 :end 412206 :contents-begin 412151 :contents-end 412199 :post-blank 1 :post-affiliated 412138 :parent nil)) 0] (paragraph (:begin 397906 :end 397932 :contents-begin 397906 :contents-end 397931 :post-blank 1 :post-affiliated 397906 :parent nil)) 0] [[[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] (paragraph ...) 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [[nil nil ... 0] nil ... -1] ... 1] ... 1] (drawer ...) 1] (drawer (:begin 427043 :end 427111 :drawer-name "PROPERTIES" :contents-begin 427056 :contents-end 427104 :post-blank 1 :post-affiliated 427043 :parent nil)) 1] [[[[[[nil nil ... 0] nil ... -1] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] (paragraph ...) -1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[nil nil ... 0] [nil nil ... 0] ... 0] ... -1] (paragraph ...) 1] (paragraph (:begin 439579 :end 439639 :contents-begin 439579 :contents-end 439638 :post-blank 1 :post-affiliated 439579 :parent nil)) 0] (paragraph (:begin 434447 :end 434642 :contents-begin 434447 :contents-end 434641 :post-blank 1 :post-affiliated 434447 :parent nil)) 0] [[[[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[nil nil ... 0] nil ... -1] ... -1] [[[nil nil ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 1] [[nil nil ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 1] ... 0] ... 0] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil [nil nil ... 0] ... 1] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... -1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [[nil nil ... 0] nil ... -1] ... 1] ... 1] ... 0] (paragraph ...) 0] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[[nil nil ... 0] nil ... -1] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 1] ... 1] ... 1] (paragraph ...) 1] (paragraph (:begin 470934 :end 471084 :contents-begin 470934 :contents-end 471083 :post-blank 1 :post-affiliated 470934 :parent nil)) 0] [[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [[nil nil ... 0] nil ... -1] ... 1] ... 1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] ... -1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil [nil nil ... 0] ... 1] ... 0] ... 0] (property-drawer ...) -1] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] nil ... -1] ... 0] ... 1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] nil ... -1] ... 0] ... 0] ... 0] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] ... 0] (clock ...) 0] (property-drawer (:begin 483646 :end 483753 :contents-begin 483659 :contents-end 483746 :post-blank 1 :post-affiliated 483646 :parent nil)) 0] (planning (:closed (timestamp ...) :deadline nil :scheduled nil :begin 480539 :end 480570 :post-blank 0 :post-affiliated 480539 :parent nil)) 0] (paragraph (:begin 444786 :end 444873 :contents-begin 444786 :contents-end 444873 :post-blank 0 :post-affiliated 444786 :parent nil)) 1] (planning (:closed (timestamp (:type inactive :raw-value "[2015-09-22 Tue 16:58]" :year-start 2015 :month-start 9 :day-start 22 :hour-start 16 :minute-start 58 :year-end 2015 :month-end 9 :day-end 22 :hour-end 16 :minute-end 58 :begin 423705 :end 423727 :post-blank 0)) :deadline nil :scheduled nil :begin 424025 :end 424056 :post-blank 0 :post-affiliated 424025 :parent nil)) 0] (planning (:closed (timestamp (:type inactive :raw-value "[2015-08-17 Mon 14:41]" :year-start 2015 :month-start 8 :day-start 17 :hour-start 14 :minute-start 41 :year-end 2015 :month-end 8 :day-end 17 :hour-end 14 :minute-end 41 :begin 356132 :end 356155 :post-blank 1)) :deadline (timestamp (:type active :raw-value "<2015-08-13 Thu>" :year-start 2015 :month-start 8 :day-start 13 :hour-start nil :minute-start nil :year-end 2015 :month-end 8 :day-end 13 :hour-end nil :minute-end nil :begin 356165 :end 356181 :post-blank 0)) :scheduled nil :begin 356370 :end 356428 :post-blank 0 :post-affiliated 356370 :parent nil)) 0] (paragraph (:begin 180084 :end 180175 :contents-begin 180084 :contents-end 180174 :post-blank 1 :post-affiliated 180084 :parent nil)) 1] 1 (planning (:closed (timestamp (:type inactive :raw-value "[2015-09-17 Thu 21:46]" :year-start 2015 :month-start 9 :day-start 17 :hour-start 21 :minute-start 46 :year-end 2015 :month-end 9 :day-end 17 :hour-end 21 :minute-end 46 :begin 413013 :end 413036 :post-blank 1)) :deadline (timestamp (:type active :raw-value "<2015-09-11 Fri>" :year-start 2015 :month-start 9 :day-start 11 :hour-start nil :minute-start nil :year-end 2015 :month-end 9 :day-end 11 :hour-end nil :minute-end nil :begin 413046 :end 413062 :post-blank 0)) :scheduled nil :begin 413005 :end 413063 :post-blank 0 :post-affiliated 413005 :parent nil)) nil nil)
  avl-tree--do-delete(org-element--cache-compare [[[[[[[[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] ... 0] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[[nil nil ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 1] [nil [nil nil ... 0] ... 1] ... -1] ... 1] (item ...) 0] [[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] ... 0] ... 0] [[[nil nil ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 1] [[[[nil nil ... 0] nil ... -1] [[nil nil ... 0] nil ... -1] ... 0] [[[nil nil ... 0] nil ... -1] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] ... 1] (property-drawer ...) 0] (drawer (:begin 2902 :end 2996 :drawer-name "PROPERTIES" :contents-begin 2924 :contents-end 2981 :post-blank 0 :post-affiliated 2902 :parent nil)) 0] [[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[nil nil ... 0] nil ... -1] ... -1] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[nil nil ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 1] ... 0] [[nil nil ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 1] ... -1] (property-drawer ...) 1] [[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] ... 0] [[nil nil ... 0] [[nil nil ... 0] nil ... -1] ... 1] ... -1] [[[nil [nil nil ... 0] ... 1] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] ... 1] (property-drawer ...) 0] (item (:bullet "- " :begin 18935 :end 19021 :contents-begin 18937 :contents-end 19021 :checkbox nil :counter nil :structure ... :post-blank 0 :post-affiliated 18935 :tag nil :parent ...)) 0] (item (:bullet "- " :begin 11358 :end 11397 :contents-begin 11364 :contents-end 11397 :checkbox on :counter nil :structure (... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...) :post-blank 0 :post-affiliated 11358 :tag nil :parent (plain-list ...))) 0] [[[[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil [nil nil ... 0] ... 1] ... 0] [[nil [nil nil ... 0] ... 1] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... -1] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] ... 0] [[[nil nil ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 1] [nil [nil nil ... 0] ... 1] ... -1] ... 0] (clock ...) 0] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[nil nil ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 1] ... 0] ... 1] [[[nil [nil nil ... 0] ... 1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... -1] (property-drawer ...) 0] (paragraph (:begin 36504 :end 36625 :contents-begin 36504 :contents-end 36625 :post-blank 0 :post-affiliated 36504 :parent nil)) 0] [[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] (src-block ...) -1] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] [[[nil [nil nil ... 0] ... 1] [[[nil nil ... 0] nil ... -1] [nil nil ... 0] ... -1] ... 1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... -1] (property-drawer ...) 1] (plain-list (:type unordered :begin 51968 :end 52066 :contents-begin 51968 :contents-end 52066 :structure ... :post-blank 0 :post-affiliated 51968 :parent nil)) 1] (fixed-width (:begin 43050 :end 43072 :value "vagrant\n" :post-blank 1 :post-affiliated 43061 :results ("") :parent nil)) 0] (table-row (:type standard :begin 28801 :end 28917 :contents-begin 28802 :contents-end 28916 :post-blank 0 :post-affiliated 28801 :parent (table (:begin 28198 :end 28917 :type org :tblfm nil :contents-begin 28269 :contents-end 28917 :value nil :post-blank 0 :post-affiliated 28269 :caption ... :parent nil)))) 0] [[[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil [nil nil ... 0] ... 1] ... 0] ... 1] (planning ...) 1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] (clock ...) 0] (property-drawer (:begin 60727 :end 60794 :contents-begin 60740 :contents-end 60788 :post-blank 0 :post-affiliated 60727 :parent nil)) -1] [[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] (planning ...) -1] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... -1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] (paragraph ...) 0] (property-drawer (:begin 71292 :end 71359 :contents-begin 71305 :contents-end 71353 :post-blank 0 :post-affiliated 71292 :parent nil)) 0] (clock (:status closed :value (timestamp ...) :duration "0:01" :begin 61739 :end 61802 :post-blank 0 :post-affiliated 61739 :parent nil)) 0] [[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] (property-drawer ...) 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] (property-drawer ...) 0] (clock (:status closed :value ... :duration "0:10" :begin 163171 :end 163234 :post-blank 0 :post-affiliated 163171 :parent nil)) 0] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] (clock ...) 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] (clock ...) 0] (clock (:status closed :value ... :duration "0:15" :begin 177208 :end 177271 :post-blank 0 :post-affiliated 177208 :parent nil)) 0] (planning (:closed (timestamp ...) :deadline nil :scheduled nil :begin 176138 :end 176169 :post-blank 0 :post-affiliated 176138 :parent nil)) 0] (clock (:status closed :value (timestamp (:type inactive-range :raw-value "[2015-08-06 Thu 08:19]--[2015-08-06 Thu 08:29]" :year-start 2015 :month-start 8 :day-start 6 :hour-start 8 :minute-start 19 :year-end 2015 :month-end 8 :day-end 6 :hour-end 8 :minute-end 29 :begin 74190 :end 74237 :post-blank 1)) :duration "0:10" :begin 74429 :end 74492 :post-blank 0 :post-affiliated 74429 :parent nil)) -1] (property-drawer (:begin 56506 :end 56573 :contents-begin 56519 :contents-end 56567 :post-blank 0 :post-affiliated 56506 :parent nil)) -1] [[[[[[[[[nil nil ... 0] [nil [nil nil ... 0] ... 1] ... 1] [[nil [nil nil ... 0] ... 1] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... -1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... -1] (planning ...) -1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil [nil nil ... 0] ... 1] ... 0] ... 1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[[nil nil ... 0] nil ... -1] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] ... 1] (planning ...) 1] (clock (:status closed :value ... :duration "1:09" :begin 188564 :end 188627 :post-blank 0 :post-affiliated 188564 :parent nil)) 0] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] (clock ...) 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] ... 1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] (clock ...) -1] (clock (:status closed :value ... :duration "2:03" :begin 251055 :end 251118 :post-blank 0 :post-affiliated 251055 :parent nil)) 1] (property-drawer (:begin 249472 :end 249539 :contents-begin 249485 :contents-end 249533 :post-blank 0 :post-affiliated 249472 :parent nil)) -1] [[[[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[nil nil ... 0] [nil nil ... 0] ... 0] ... -1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... -1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] (planning ...) -1] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] nil ... -1] ... 0] ... 0] ... 1] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] ... 1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] ... 0] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] ... 1] ... 0] (clock ...) 1] (paragraph (:begin 256360 :end 256446 :contents-begin 256360 :contents-end 256445 :post-blank 1 :post-affiliated 256360 :parent nil)) 1] [[[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] ... 1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... -1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] ... -1] [[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] ... 0] [[[nil nil ... 0] [nil [nil nil ... 0] ... 1] ... 1] [[nil nil ... 0] [nil nil ... 0] ... 0] ... -1] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] nil ... -1] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... -1] ... 1] ... 0] (drawer ...) 0] [[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] nil ... -1] ... 0] [[nil [nil nil ... 0] ... 1] [nil nil ... 0] ... -1] ... 0] ... 1] ... 1] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] nil ... -1] ... 0] ... -1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [[nil nil ... 0] nil ... -1] ... 1] ... 1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] ... 0] ... 0] (clock ...) 0] (drawer (:begin 289435 :end 289577 :drawer-name "LOGBOOK" :contents-begin 289445 :contents-end 289571 :post-blank 0 :post-affiliated 289435 :parent nil)) 0] (fixed-width (:begin 271248 :end 271308 :value "limit_reader_11_1441202949.csv\n" :post-blank 1 :post-affiliated 271274 :results ("boothsfilename") :parent nil)) 0] (paragraph (:begin 252647 :end 252860 :contents-begin 252647 :contents-end 252859 :post-blank 1 :post-affiliated 252647 :parent nil)) 1] [[[[[[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] ... 0] [[[nil [nil nil ... 0] ... 1] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [[nil nil ... 0] nil ... -1] ... 1] [[nil nil ... 0] [nil nil ... 0] ... 0] ... -1] ... 1] ... 0] [[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] nil ... -1] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil [nil nil ... 0] ... 1] ... 1] ... 1] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] ... -1] (planning ...) 0] [[[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 1] ... 1] ... 1] ... 0] [[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil [nil nil ... 0] ... 1] ... 0] [[nil [nil nil ... 0] ... 1] [nil [nil nil ... 0] ... 1] ... 0] ... 0] [[nil nil ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 1] ... -1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] ... -1] (property-drawer ...) 0] (clock (:status closed :value ... :duration "0:00" :begin 373301 :end 373364 :post-blank 0 :post-affiliated 373301 :parent nil)) 0] [[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 1] ... 1] ... 1] [[[[[nil nil ... 0] [[nil nil ... 0] nil ... -1] ... 1] [nil [nil nil ... 0] ... 1] ... -1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... -1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... -1] ... -1] (planning ...) 1] [[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... -1] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] nil ... -1] ... 0] ... -1] ... 1] [[[[[nil nil ... 0] nil ... -1] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil [nil nil ... 0] ... 1] ... 0] ... 0] ... 0] (src-block ...) -1] (property-drawer (:begin 412138 :end 412206 :contents-begin 412151 :contents-end 412199 :post-blank 1 :post-affiliated 412138 :parent nil)) 0] (paragraph (:begin 397906 :end 397932 :contents-begin 397906 :contents-end 397931 :post-blank 1 :post-affiliated 397906 :parent nil)) 0] [[[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [[nil nil ... 0] nil ... -1] ... 1] ... 1] ... 1] (drawer ...) 1] [[[[[[nil nil ... 0] nil ... -1] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... -1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[nil nil ... 0] [nil nil ... 0] ... 0] ... -1] ... 1] (paragraph ...) 0] (paragraph (:begin 434447 :end 434642 :contents-begin 434447 :contents-end 434641 :post-blank 1 :post-affiliated 434447 :parent nil)) 0] [[[[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[nil nil ... 0] nil ... -1] ... -1] [[[nil nil ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 1] [[nil nil ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 1] ... 0] ... 0] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil [nil nil ... 0] ... 1] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... -1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [[nil nil ... 0] nil ... -1] ... 1] ... 1] ... 0] ... 0] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[[nil nil ... 0] nil ... -1] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 1] ... 1] ... 1] ... 1] (paragraph ...) 0] [[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [[nil nil ... 0] nil ... -1] ... 1] ... 1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] ... -1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil [nil nil ... 0] ... 1] ... 0] ... 0] ... -1] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] nil ... -1] ... 0] ... 1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] nil ... -1] ... 0] ... 0] ... 0] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] ... 0] ... 0] (property-drawer ...) 0] (planning (:closed ... :deadline nil :scheduled nil :begin 480539 :end 480570 :post-blank 0 :post-affiliated 480539 :parent nil)) 0] (paragraph (:begin 444786 :end 444873 :contents-begin 444786 :contents-end 444873 :post-blank 0 :post-affiliated 444786 :parent nil)) 1] (planning (:closed (timestamp (:type inactive :raw-value "[2015-09-22 Tue 16:58]" :year-start 2015 :month-start 9 :day-start 22 :hour-start 16 :minute-start 58 :year-end 2015 :month-end 9 :day-end 22 :hour-end 16 :minute-end 58 :begin 423705 :end 423727 :post-blank 0)) :deadline nil :scheduled nil :begin 424025 :end 424056 :post-blank 0 :post-affiliated 424025 :parent nil)) 0] (planning (:closed (timestamp (:type inactive :raw-value "[2015-08-17 Mon 14:41]" :year-start 2015 :month-start 8 :day-start 17 :hour-start 14 :minute-start 41 :year-end 2015 :month-end 8 :day-end 17 :hour-end 14 :minute-end 41 :begin 356132 :end 356155 :post-blank 1)) :deadline (timestamp (:type active :raw-value "<2015-08-13 Thu>" :year-start 2015 :month-start 8 :day-start 13 :hour-start nil :minute-start nil :year-end 2015 :month-end 8 :day-end 13 :hour-end nil :minute-end nil :begin 356165 :end 356181 :post-blank 0)) :scheduled nil :begin 356370 :end 356428 :post-blank 0 :post-affiliated 356370 :parent nil)) 0] (paragraph (:begin 180084 :end 180175 :contents-begin 180084 :contents-end 180174 :post-blank 1 :post-affiliated 180084 :parent nil)) 1] nil nil 0] 0 (planning (:closed (timestamp (:type inactive :raw-value "[2015-09-17 Thu 21:46]" :year-start 2015 :month-start 9 :day-start 17 :hour-start 21 :minute-start 46 :year-end 2015 :month-end 9 :day-end 17 :hour-end 21 :minute-end 46 :begin 413013 :end 413036 :post-blank 1)) :deadline (timestamp (:type active :raw-value "<2015-09-11 Fri>" :year-start 2015 :month-start 9 :day-start 11 :hour-start nil :minute-start nil :year-end 2015 :month-end 9 :day-end 11 :hour-end nil :minute-end nil :begin 413046 :end 413062 :post-blank 0)) :scheduled nil :begin 413005 :end 413063 :post-blank 0 :post-affiliated 413005 :parent nil)) nil nil)
  avl-tree-delete([cl-struct-avl-tree- [[[[[[[[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] ... 0] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[[nil nil ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 1] [nil [nil nil ... 0] ... 1] ... -1] ... 1] ... 0] [[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] ... 0] ... 0] [[[nil nil ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 1] [[[[nil nil ... 0] nil ... -1] [[nil nil ... 0] nil ... -1] ... 0] [[[nil nil ... 0] nil ... -1] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] ... 1] ... 0] (drawer ...) 0] [[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[nil nil ... 0] nil ... -1] ... -1] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[nil nil ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 1] ... 0] [[nil nil ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 1] ... -1] ... 1] [[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] ... 0] [[nil nil ... 0] [[nil nil ... 0] nil ... -1] ... 1] ... -1] [[[nil [nil nil ... 0] ... 1] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] ... 1] ... 0] (item ...) 0] (item (:bullet "- " :begin 11358 :end 11397 :contents-begin 11364 :contents-end 11397 :checkbox on :counter nil :structure ... :post-blank 0 :post-affiliated 11358 :tag nil :parent ...)) 0] [[[[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil [nil nil ... 0] ... 1] ... 0] [[nil [nil nil ... 0] ... 1] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... -1] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] ... 0] [[[nil nil ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 1] [nil [nil nil ... 0] ... 1] ... -1] ... 0] ... 0] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[nil nil ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 1] ... 0] ... 1] [[[nil [nil nil ... 0] ... 1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... -1] ... 0] (paragraph ...) 0] [[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... -1] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] [[[nil [nil nil ... 0] ... 1] [[[nil nil ... 0] nil ... -1] [nil nil ... 0] ... -1] ... 1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... -1] ... 1] (plain-list ...) 1] (fixed-width (:begin 43050 :end 43072 :value "vagrant\n" :post-blank 1 :post-affiliated 43061 :results ... :parent nil)) 0] (table-row (:type standard :begin 28801 :end 28917 :contents-begin 28802 :contents-end 28916 :post-blank 0 :post-affiliated 28801 :parent (table ...))) 0] [[[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil [nil nil ... 0] ... 1] ... 0] ... 1] ... 1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] (property-drawer ...) -1] [[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] ... -1] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... -1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] ... 0] (property-drawer ...) 0] (clock (:status closed :value ... :duration "0:01" :begin 61739 :end 61802 :post-blank 0 :post-affiliated 61739 :parent nil)) 0] [[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] (clock ...) 0] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] (clock ...) 0] (planning (:closed ... :deadline nil :scheduled nil :begin 176138 :end 176169 :post-blank 0 :post-affiliated 176138 :parent nil)) 0] (clock (:status closed :value (timestamp ...) :duration "0:10" :begin 74429 :end 74492 :post-blank 0 :post-affiliated 74429 :parent nil)) -1] (property-drawer (:begin 56506 :end 56573 :contents-begin 56519 :contents-end 56567 :post-blank 0 :post-affiliated 56506 :parent nil)) -1] [[[[[[[[[nil nil ... 0] [nil [nil nil ... 0] ... 1] ... 1] [[nil [nil nil ... 0] ... 1] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... -1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... -1] ... -1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil [nil nil ... 0] ... 1] ... 0] ... 1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[[nil nil ... 0] nil ... -1] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] ... 1] ... 1] (clock ...) 0] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] ... 1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... -1] (clock ...) 1] (property-drawer (:begin 249472 :end 249539 :contents-begin 249485 :contents-end 249533 :post-blank 0 :post-affiliated 249472 :parent nil)) -1] [[[[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[nil nil ... 0] [nil nil ... 0] ... 0] ... -1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... -1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] ... -1] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] nil ... -1] ... 0] ... 0] ... 1] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] ... 1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] ... 0] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] ... 1] ... 0] ... 1] (paragraph ...) 1] [[[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] ... 1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... -1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] ... -1] [[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] ... 0] [[[nil nil ... 0] [nil [nil nil ... 0] ... 1] ... 1] [[nil nil ... 0] [nil nil ... 0] ... 0] ... -1] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] nil ... -1] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... -1] ... 1] ... 0] ... 0] [[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] nil ... -1] ... 0] [[nil [nil nil ... 0] ... 1] [nil nil ... 0] ... -1] ... 0] ... 1] ... 1] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] nil ... -1] ... 0] ... -1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [[nil nil ... 0] nil ... -1] ... 1] ... 1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] ... 0] ... 0] ... 0] (drawer ...) 0] (fixed-width (:begin 271248 :end 271308 :value "limit_reader_11_1441202949.csv\n" :post-blank 1 :post-affiliated 271274 :results ... :parent nil)) 0] (paragraph (:begin 252647 :end 252860 :contents-begin 252647 :contents-end 252859 :post-blank 1 :post-affiliated 252647 :parent nil)) 1] [[[[[[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] ... 0] [[[nil [nil nil ... 0] ... 1] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [[nil nil ... 0] nil ... -1] ... 1] [[nil nil ... 0] [nil nil ... 0] ... 0] ... -1] ... 1] ... 0] [[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] nil ... -1] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil [nil nil ... 0] ... 1] ... 1] ... 1] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] ... -1] ... 0] [[[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 1] ... 1] ... 1] ... 0] [[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil [nil nil ... 0] ... 1] ... 0] [[nil [nil nil ... 0] ... 1] [nil [nil nil ... 0] ... 1] ... 0] ... 0] [[nil nil ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 1] ... -1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] ... -1] ... 0] (clock ...) 0] [[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 1] ... 1] ... 1] [[[[[nil nil ... 0] [[nil nil ... 0] nil ... -1] ... 1] [nil [nil nil ... 0] ... 1] ... -1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... -1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... -1] ... -1] ... 1] [[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... -1] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] nil ... -1] ... 0] ... -1] ... 1] [[[[[nil nil ... 0] nil ... -1] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil [nil nil ... 0] ... 1] ... 0] ... 0] ... 0] ... -1] (property-drawer ...) 0] (paragraph (:begin 397906 :end 397932 :contents-begin 397906 :contents-end 397931 :post-blank 1 :post-affiliated 397906 :parent nil)) 0] [[[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [[nil nil ... 0] nil ... -1] ... 1] ... 1] ... 1] ... 1] [[[[[[nil nil ... 0] nil ... -1] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... -1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[nil nil ... 0] [nil nil ... 0] ... 0] ... -1] ... 1] ... 0] (paragraph ...) 0] [[[[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[nil nil ... 0] nil ... -1] ... -1] [[[nil nil ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 1] [[nil nil ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 1] ... 0] ... 0] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil [nil nil ... 0] ... 1] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... -1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [[nil nil ... 0] nil ... -1] ... 1] ... 1] ... 0] ... 0] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[[nil nil ... 0] nil ... -1] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 1] ... 1] ... 1] ... 1] ... 0] [[[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [[nil nil ... 0] nil ... -1] ... 1] ... 1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] ... -1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [nil nil ... 0] ... -1] [[[nil nil ... 0] [nil nil ... 0] ... 0] [nil [nil nil ... 0] ... 1] ... 0] ... 0] ... -1] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] nil ... -1] ... 0] ... 1] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] nil ... -1] ... 0] ... 0] ... 0] [[[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] [[[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] [[[nil nil ... 0] [nil nil ... 0] ... 0] [[nil nil ... 0] [nil nil ... 0] ... 0] ... 0] ... 0] ... 0] ... 0] ... 0] (planning ...) 0] (paragraph (:begin 444786 :end 444873 :contents-begin 444786 :contents-end 444873 :post-blank 0 :post-affiliated 444786 :parent nil)) 1] (planning (:closed (timestamp ...) :deadline nil :scheduled nil :begin 424025 :end 424056 :post-blank 0 :post-affiliated 424025 :parent nil)) 0] (planning (:closed (timestamp (:type inactive :raw-value "[2015-08-17 Mon 14:41]" :year-start 2015 :month-start 8 :day-start 17 :hour-start 14 :minute-start 41 :year-end 2015 :month-end 8 :day-end 17 :hour-end 14 :minute-end 41 :begin 356132 :end 356155 :post-blank 1)) :deadline (timestamp (:type active :raw-value "<2015-08-13 Thu>" :year-start 2015 :month-start 8 :day-start 13 :hour-start nil :minute-start nil :year-end 2015 :month-end 8 :day-end 13 :hour-end nil :minute-end nil :begin 356165 :end 356181 :post-blank 0)) :scheduled nil :begin 356370 :end 356428 :post-blank 0 :post-affiliated 356370 :parent nil)) 0] (paragraph (:begin 180084 :end 180175 :contents-begin 180084 :contents-end 180174 :post-blank 1 :post-affiliated 180084 :parent nil)) 1] nil nil 0] org-element--cache-compare] (planning (:closed (timestamp (:type inactive :raw-value "[2015-09-17 Thu 21:46]" :year-start 2015 :month-start 9 :day-start 17 :hour-start 21 :minute-start 46 :year-end 2015 :month-end 9 :day-end 17 :hour-end 21 :minute-end 46 :begin 413013 :end 413036 :post-blank 1)) :deadline (timestamp (:type active :raw-value "<2015-09-11 Fri>" :year-start 2015 :month-start 9 :day-start 11 :hour-start nil :minute-start nil :year-end 2015 :month-end 9 :day-end 11 :hour-end nil :minute-end nil :begin 413046 :end 413062 :post-blank 0)) :scheduled nil :begin 413005 :end 413063 :post-blank 0 :post-affiliated 413005 :parent nil)))
  byte-code("�\211�\205��\306 \206��\307�\310 \")\203��\311\312\313\"\210   \314H   \315H\n\314H�>\204-�\316\317\320\321#\210\n\322H\314H\313\211\211���$�%�&�'�%\203U��%\315H\211�(�(\323�(�)\"\206\270�\324�(�(�*�(;\203m�\325\314�*�(#\202u�\326�(A@�*\"*�+�(\211�(:\204\213��(;\205\225�\327\202\225��(@9\205\225��(@)\330>\203\241��+T\202\243��+�,�-\203\265�\331�(�,�)#\202\267��,*)\211�,�'�.\211�/\250\203\336��.\250\203\325��/�.W\202\360��/�.@X\202\360��.\250\203\355��/@�.W\202\360�\332\333\215*\203\375��%\322H�%\202Q��'�,�.\211�/\250\203!��.\250\203���/�.W\2023��/�.@X\2023��.\250\2030��/@�.W\2023�\332\333\215*\203G��(�$�,��%\314H�%\202Q��(�$�,�\313�%*\202?��$\203\\�\324�$�(�*�(;\203q�\325\314�*�(#\202y�\326�(A@�*\"*�0�1\203\272�
�1�.\211�/\250\203\244��.\250\203\233��/�.W\202\266��/�.@X\202\266��.\250\203\263��/@�.W\202\266�\332\333\215*\203\302��0�&X\202\376�\f\203C��$\211�2\203\373��2\f=\204\373�\334�2�(�*�(;\203\354�\325\314�*�(#\202\364�\326�(A@�*\"*\211�2\204\316��2)\203C�\f\204.�\335�$�(�*�(;\203��\325\314�*�(#\202$�\326�(A@�*\"*�&V\203.��$��$�(\336\n�(\"\210\337�(�3\")\210\202X� \314
I\210   \322�0I\210 \340\322I\210\311\341\313\"\210)\202a�\311\342\343\"\210.�\202��" [time-limit request org-element--cache cl-struct-avl-tree--tags last-container data-key input-pending-p time-less-p current-time throw interrupt nil 0 2 error "%s accessing a non-%s" avl-tree--dummyroot avl-tree- 1 gethash :begin get-text-property plist-get plain-text (item table-row) puthash exit (byte-code "�\203/�    \203/�\302� \"\203��\303\304\305\"\210\202��\302    �\"\203&�\303\304\306\"\210\202���A�    A�\202���?\2055�    \207" [a b car-less-than-car throw exit t nil] 3) :parent :end avl-tree-delete remhash 5 end-phase quit t data node end beg element org-element--cache-sync-keys property begin key org-element--cache-sync-requests b a pos next ...] 7)
  byte-code("�\306H\307U\203\f�\310\311\215\210�\306H\312U\203\262��\307H�\n\203h�  \n�\211�\250\2037��\250\2030�\f�W\202F�\f�@X\202F��\250\203C�\f@�W\202F�\313\314\215*\204h�
A@\211�.\307    I\210�.\312�\312HI\210�.\306\312I\210)\315\316\317\"\210)�\312H�\320H\\�/�0\203\207��/�0V\203\207�\315\321\322\"\210\202\261��1\203\234��/�1Y\203\234��\306\323I\210\202\261�\324�/\317�2#�3�\325�3I\210�\306\323I\210))�\307H�\320H�\325H�4\307H�5>\204\313�\326\327\330\331#\210�4\312H\307H\322C\317\322�6�7�8�9�3�:�;�3\204\364�\332�:!\203\364�\315\316\317\"\210�9\203\341��9\323H\211�<�=\333�=�>\"\206i�\334�=�=�?�=;\203\"�\335\307�?�=#\202*�\336�=A@�?\"*�@�=\211�=:\204@��=;\205J�\337\202J��=@9\205J��=@)\340>\203V��@T\202X��@�
\203g�\341�=    �>#\202h�   *)��7\203\266��9\307H\203\266�  �;�\211�\250\203\223��\250\203\214�\f�W\202\242�\f�@X\202\242��\250\203\237�\f@�W\202\242�\313\314\215*\204\266��9�8B�8�9\307H�9\202\335�   �;�\211�\250\203\322��\250\203\313�\f�W\202\341�\f�@X\202\341��\250\203\336�\f@�W\202\341�\313\314\215*\204\303�    \n\232\203\360�\315\316\317\"\210�6\204\f��2\211�2\205��\342 \206��\343�2\344 \")\203���\307    I\210�\325�3I\210\315\321\322\"\210\332�:!\204���<�:\322�A�:\211�=A@�B�A\203?�\345�A>\203\300��=\211�=:\204R��=;\205\\�\337\202\\��=@9\205\\��=@)\346=\203\300�\336�B\347\"\211�=:\204x��=;\205\202�\337\202\202��=@9\205\202��=@)\350=\204\300�\336�B\345\"\322�(\211�C\203\277��C@\211�(\211�D\211@�:\\\240\210)\351�(\233\211�E\211@�:\\\240\210)�CA\211�C\204\226�*\352\322�\211�C\205\372��C@��A\203\331�  �A>\205\336�\336�B  \"\211�F\203\357�\353�B �:�F\\#\210)�CA\211�C\204\311�\322.�\210\333�<�G\"\322�H\211�C\203���C@\211�H\211AA\262�\322�I\211�C\203���C@\211�I�:\322�A�:\211�=A@�B�A\203@�\345�A>\203\301��=\211�=:\204S��=;\205]�\337\202]��=@9\205]��=@)\346=\203\301�\336�B\347\"\211�=:\204y��=;\205\203�\337\202\203��=@9\205\203��=@)\350=\204\301�\336�B\345\"\322�(\211�C\203\300��C@\211�(\211�D\211@�:\\\240\210)\351�(\233\211�E\211@�:\\\240\210)�CA\211�C\204\227�*\352\322�\211�C\205\373��C@��A\203\332�    �A>\205\337�\336�B  \"\211�F\203\360�\353�B �:�F\\#\210)�CA\211�C\204\312�\322.�\210�CA\211�C\204 �*�CA\211�C\204\f�*\334�<�=�?�=;\203)�\335\307�?�=#\2021�\336�=A@�?\"*�@�3\203\205�\354�3�=�?�=;\203P�\335\307�?�=#\202X�\336�=A@�?\"*�@X\203\205�\347�3�=�?�=;\203v�\335\307�?�=#\202~�\336�=A@�?\"*\211�3\2049��3\204\231�\332�:!\203\231�\315\316\322\"\210\202\262��3\203\262�\347�<�=�?�=;\203\265�\335\307�?�=#\202\275�\336�=A@�?\"*\211�J?\206��\334�J�=�?�=;\203\334�\335\307�?�=#\202\344�\336�=A@�?\"*\334�3�=�?�=;\203\374�\335\307�?�=#\202��\336�=A@�?\"*W)\203\262��<\347�3�F�?\211�=;\203&�\355�=\322�?�F$\2027��=A\353�=A@�?�F#\240\210�=+\210\345�3�=�?�=;\203P�\335\307�?�=#\202X�\336�=A@�?\"*\211�K\203\261�\345�<�=�?�=;\203v�\335\307�?�=#\202~�\336�=A@�?\"*\203\261��<\345�K�F�?\211�=;\203\236�\355�=\322�?�F$\202\257��=A\353�=A@�?�F#\240\210�=+\210)�0\203\302��@�0V\203\302�\317�6)�9\312H\211�7\203\324��9\312H\202\333��8\211A�8\242�9*\202\364�.�\317\207" [request key next b a org-element--cache-sync-requests 5 0 end-phase (byte-code "�\211�\205��\306 \206��\307�\310 \")\203��\311\312\313\"\210 \314H   \315H\n\314H�>\204-�\316\317\320\321#\210\n\322H\314H\313\211\211���$�%�&�'�%\203U��%\315H\211�(�(\323�(�)\"\206\270�\324�(�(�*�(;\203m�\325\314�*�(#\202u�\326�(A@�*\"*�+�(\211�(:\204\213��(;\205\225�\327\202\225��(@9\205\225��(@)\330>\203\241��+T\202\243��+�,�-\203\265�\331�(�,�)#\202\267��,*)\211�,�'�.\211�/\250\203\336��.\250\203\325��/�.W\202\360��/�.@X\202\360��.\250\203\355��/@�.W\202\360�\332\333\215*\203\375��%\322H�%\202Q��'�,�.\211�/\250\203!��.\250\203���/�.W\2023��/�.@X\2023��.\250\2030��/@�.W\2023�\332\333\215*\203G��(�$�,��%\314H�%\202Q��(�$�,�\313�%*\202?��$\203\\�\324�$�(�*�(;\203q�\325\314�*�(#\202y�\326�(A@�*\"*�0�1\203\272�
�1�.\211�/\250\203\244��.\250\203\233��/�.W\202\266��/�.@X\202\266��.\250\203\263��/@�.W\202\266�\332\333\215*\203\302��0�&X\202\376�\f\203C��$\211�2\203\373��2\f=\204\373�\334�2�(�*�(;\203\354�\325\314�*�(#\202\364�\326�(A@�*\"*\211�2\204\316��2)\203C�\f\204.�\335�$�(�*�(;\203��\325\314�*�(#\202$�\326�(A@�*\"*�&V\203.��$��$�(\336\n�(\"\210\337�(�3\")\210\202X� \314
I\210   \322�0I\210 \340\322I\210\311\341\313\"\210)\202a�\311\342\343\"\210.�\202��" [time-limit request org-element--cache cl-struct-avl-tree--tags last-container data-key input-pending-p time-less-p current-time throw interrupt nil 0 2 error "%s accessing a non-%s" avl-tree--dummyroot avl-tree- 1 gethash :begin get-text-property plist-get plain-text (item table-row) puthash exit (byte-code "�\203/�    \203/�\302� \"\203��\303\304\305\"\210\202��\302    �\"\203&�\303\304\306\"\210\202���A�    A�\202���?\2055�    \207" [a b car-less-than-car throw exit t nil] 3) :parent :end avl-tree-delete remhash 5 end-phase quit t data node end beg element org-element--cache-sync-keys property begin key org-element--cache-sync-requests b a pos next ...] 7) 1 exit (byte-code "�\203/�    \203/�\302� \"\203��\303\304\305\"\210\202��\302    �\"\203&�\303\304\306\"\210\202���A�    A�\202���?\2055�    \207" [a b car-less-than-car throw exit t nil] 3) throw quit t 3 interrupt nil 2 org-element--parse-to 4 error "%s accessing a non-%s" avl-tree--dummyroot avl-tree- zerop gethash :begin get-text-property plist-get plain-text (item table-row) puthash input-pending-p time-less-p current-time :structure plain-list :parent item 6 (:begin :contents-begin :contents-end :end :post-affiliated) plist-put :end org-add-props next-request limit threshold future-change ...] 8)
  org-element--cache-process-request([412762 412762 413011 1 (plain-list (:type unordered :begin 412762 :end 413011 :contents-begin 412762 :contents-end 413010 :structure ((412762 0 "- " nil "[X]" nil 412782) (412782 0 "- " nil "[X]" nil 412986) (412797 2 "- " nil nil nil 412879) (412815 4 "- " nil nil nil 412879) (412835 6 "- " nil nil nil 412879) (412879 2 "- " nil nil nil 412919) (412919 2 "- " nil nil nil 412960) (412960 2 "- " nil nil nil 412986) (412986 0 "- " nil "[ ]" nil 412998) (412998 0 "- " nil "[ ]" nil 413010)) :post-blank 1 :post-affiliated 412762 :parent nil)) 0] nil 412841 nil nil)
  byte-code("�\203D��@��A@�\306 \n\205��\n\307H�\211?\205��\310\311 \f\"
%\210\n\203=�\n\211�\f\312�\f\312H  \312H\\I\210)\n\313 \313HI\210�A\211�\204��\306\207" [org-element--cache-sync-requests request next threshold org-element-cache-sync-duration future-change org-element--cache-process-request 0 time-add current-time 3 2 v] 8)
  org-element--cache-sync(#<buffer gtd.org> 412841)
  org-element-at-point()
  byte-code("\212\214~\210`�    \206\f�\306 \211�\211�:\204��   ;\205%�\307\202%�   @9\205%�    @)�\310 ��  ;\2038�\311\312�    #\202>�\313 A@�\"*\211�\205G��\fW)\203\236�\314 \210\315�\316�+!\210)\317\320\321!�,\"\204h�\322\323    \"\210\202\231�\312\225�W\203x�\312\225\324 }\210\202\231�\325\224\203\224��\325\224Y\203\224��\325\225W\203\224�\325\224\325\225}\210\202\231�\322\323 \"\210\326�\2022�\n\327=\203\366�\330   ��  ;\203\265�\311\312� #\202\273�\313  A@�\"*\211�-\204\312�\322\323   \"\210\202\362�\314 \210\331�-\324 \"\210\312\224b\210�`Y\203\355��\312\225W\203\355�`\312\225}\210\202\362�\322\323    \"\210)\2022�\n\332>\2037�\333  ��  ;\203
�\311\312�  #\202��\313 A@�\"*b\210\334\335w\210�`V\203/��\324 W\203/�`\324 }\210\2022�\322\323 \"\210\2022�\n\336>\203\245�\337    ��  ;\203N�\311\312�    #\202T�\313 A@�\"*\340  ��  ;\203f�\311\312�    #\202l�\313 A@�\"*�.\211�/\203\234��.\203\234���/Y\203\234���.W\204\223���.U\203\234�m\203\234��/�.}\210\202\241�\322\323   \"\210*\2022�\n\341=\203-�\342\335�0\211�1\203$��1@\211�0   ��  ;\203\313�\311\312� #\202\321�\313  A@�\"*\211�2\203��\333�2��  ;\203\352�\311\312� #\202\360�\313  A@�\"*�X\203��\343�2��  ;\203��\311\312�    #\202��\313 A@�\"*�V\203��\322\323�2\"\210)�1A\211�1\204\265�*\322\323  \"\210\2022�\322\323    \"\210eb\210\n\211�9\203@�  \202Y�  \211�:\204P�    ;\205X�\307\202X�   @9\205X�    @)�3\236A)  �4\203t��5\203t�\344\345!\204x��6\204x�\335\202\211��7\203\205�\346 �7\"\202\211�\347 \210\335\335\211\211�8�9�:�;�<�=\350\351\215\352  �;\"\210.�\207" [pos element type property post case-fold-search org-element-at-point plain-text :post-affiliated get-text-property 0 plist-get beginning-of-line t looking-at member-ignore-case match-string 1 throw objects-forbidden line-end-position 2 keyword item :tag search-forward (headline inlinetask) :begin "*" nil (paragraph table-row verse-block) :contents-begin :contents-end planning (:closed :deadline :scheduled) :end derived-mode-p org-mode gethash org-element-cache-reset exit (byte-code "�\204��    \n\236\211�\203����\202��   \306D\211�\nB�)\307\310\215\210�\203C�\311����
;\2035�\312\313��
#\202<�\314
A@��\"*��V\203P�\315\316��\206K�    \"\210\202��\317����
;\203c�\312\313��
#\202j�\314
A@��\"*\320����
;\203~�\312\313��
#\202\205�\314
A@��\"*\321����
;\203\231�\312\313��
#\202\240�\314
A@��\"*����\211����X\203\317�d��U\204\317���b\210����U\203G�`Sf\322>\204G����\202G���\203B���\203B�����Y\203B�����W\204������U\203B�d��U\204����\206\376�`Sf\323>\204B���b\210`��}\210���\211�9\203��
\2024�
\211�:\204+�
;\2053�\324\2023�
@9\2053�
@)��\236A)��\306\211��\202G�\315\316�\"\210+\202��" [next parent cache data object-data element nil found (byte-code "�\203��\306   !�\202\344�\n\211AA\262�\nA@�\211�\204&��\203&�\307\310
\"\210\202\343�\f\2041�\306 !�\202\343�\311\f@������;\203H�\312\313����#\202P�\314��A@��\"*\211����Y\203\332�\f\315��\211��\203\316���@��\316��������;\203\200�\312\313����#\202\210�\314��A@��\"*��X\203\305�\311��������;\203\246�\312\313����#\202\256�\314��A@��\"*��Y\203\300�\307\317��\211�\"\210\202\305�\307\310
\"\210��A\211��\204d�\315��\307\310
\"\210*\202\342���b\210\306 !�)*�\203)��\320
����\211��;\203��\321��\315����$\202����A\322��A@����#\240\210��+\210\n\211��A���\211AA\262�B\241\210)\202.�\nA\323\240\210\315\207" [next restriction object-data completep objects parent org-element--object-lex throw exit :end get-text-property 0 plist-get nil :begin found :parent org-add-props plist-put t element property cache-limit pos object --dolist-tail-- value v] 6) :begin get-text-property 0 plist-get throw exit :end :contents-begin :contents-end (32 9) (32 9) plain-text property pos last cend cbeg end org-element-object-restrictions restriction] 7) org-element--cache-put org-element--affiliated-re org-element-parsed-keywords tag cend cbeg p --dolist-tail-- ...] 7)
  org-element-context()
  (let* ((object (org-element-context)) (type (org-element-property :type object))) (save-excursion (cond ((-contains\? org-ref-cite-types type) (message (org-ref-get-citation-string-at-point))) ((string= type "ref") (message "%scount: %s" (org-ref-get-label-context (org-element-property :path object)) (org-ref-count-labels (org-element-property :path object)))) ((string= type "eqref") (message "%scount: %s" (org-ref-get-label-context (org-element-property :path object)) (org-ref-count-labels (org-element-property :path object)))) ((string= type "label") (let ((count (org-ref-count-labels ...))) (message (concat (number-to-string count) " occurence" (if ... ...))))) ((string= type "custom-id") (save-excursion (org-open-link-from-string (format "[[#%s]]" (org-element-property :path object))) (message "%s" (org-get-heading)))) ((string= type "bibliography") (let* ((bibfile) (object (org-element-context)) (link-string (org-element-property :path object)) (link-string-beginning) (link-string-end)) (save-excursion (goto-char (org-element-property :begin object)) (search-forward link-string nil nil 1) (setq link-string-beginning (match-beginning 0)) (setq link-string-end (match-end 0))) (if (> link-string-beginning (point)) (progn (goto-char link-string-beginning))) (let (key-beginning key-end) (save-excursion (if ... ... ...)) (save-excursion (if ... ... ...)) (setq bibfile (org-ref-strip-string ...)) (if (file-exists-p bibfile) (message "%s exists." bibfile) (message "!!! %s NOT FOUND !!!" bibfile))))))))
  (progn (let* ((object (org-element-context)) (type (org-element-property :type object))) (save-excursion (cond ((-contains\? org-ref-cite-types type) (message (org-ref-get-citation-string-at-point))) ((string= type "ref") (message "%scount: %s" (org-ref-get-label-context (org-element-property :path object)) (org-ref-count-labels (org-element-property :path object)))) ((string= type "eqref") (message "%scount: %s" (org-ref-get-label-context (org-element-property :path object)) (org-ref-count-labels (org-element-property :path object)))) ((string= type "label") (let ((count ...)) (message (concat ... " occurence" ...)))) ((string= type "custom-id") (save-excursion (org-open-link-from-string (format "[[#%s]]" ...)) (message "%s" (org-get-heading)))) ((string= type "bibliography") (let* ((bibfile) (object ...) (link-string ...) (link-string-beginning) (link-string-end)) (save-excursion (goto-char ...) (search-forward link-string nil nil 1) (setq link-string-beginning ...) (setq link-string-end ...)) (if (> link-string-beginning ...) (progn ...)) (let (key-beginning key-end) (save-excursion ...) (save-excursion ...) (setq bibfile ...) (if ... ... ...))))))))
  (if (eq major-mode (quote org-mode)) (progn (let* ((object (org-element-context)) (type (org-element-property :type object))) (save-excursion (cond ((-contains\? org-ref-cite-types type) (message (org-ref-get-citation-string-at-point))) ((string= type "ref") (message "%scount: %s" (org-ref-get-label-context ...) (org-ref-count-labels ...))) ((string= type "eqref") (message "%scount: %s" (org-ref-get-label-context ...) (org-ref-count-labels ...))) ((string= type "label") (let (...) (message ...))) ((string= type "custom-id") (save-excursion (org-open-link-from-string ...) (message "%s" ...))) ((string= type "bibliography") (let* (... ... ... ... ...) (save-excursion ... ... ... ...) (if ... ...) (let ... ... ... ... ...))))))))
  (save-restriction (widen) (if (eq major-mode (quote org-mode)) (progn (let* ((object (org-element-context)) (type (org-element-property :type object))) (save-excursion (cond ((-contains\? org-ref-cite-types type) (message ...)) ((string= type "ref") (message "%scount: %s" ... ...)) ((string= type "eqref") (message "%scount: %s" ... ...)) ((string= type "label") (let ... ...)) ((string= type "custom-id") (save-excursion ... ...)) ((string= type "bibliography") (let* ... ... ... ...))))))))
  (progn (save-restriction (widen) (if (eq major-mode (quote org-mode)) (progn (let* ((object (org-element-context)) (type (org-element-property :type object))) (save-excursion (cond (... ...) (... ...) (... ...) (... ...) (... ...) (... ...))))))))
  (if (not (looking-at " ")) (progn (save-restriction (widen) (if (eq major-mode (quote org-mode)) (progn (let* ((object ...) (type ...)) (save-excursion (cond ... ... ... ... ... ...))))))))
  org-ref-link-message()
  apply(org-ref-link-message nil)
  byte-code("r\301�\302H�\303H\"\210)\301\207" [timer apply 5 6] 4)
  timer-event-handler([t 0 0 500000 t org-ref-link-message nil idle 0])

keymapp error

Dear John,

When I updated org-ref, emacs can not launch properly with error message "keymapp error".
Hope you can fix it. Thanks.

BibTeX for arXiv articles

I saw that you use an third-party service to retrieve BibTeX for asXiv articles. I have code for generating BibTeX for arXiv entries. It uses arXiv's API to retrieve an XML record and then formats a BibTeX entry.

(defvar arxiv-entry-format-string "@article{%s,
  title = {%s},
  author = {%s},
  archivePrefix = {arXiv},
  year = {%s},
  eprint = {%s},
  primaryClass = {%s},
  abstract = {%s},
  url = {%s},
}")

(defun retrieve-bibtex-from-arxiv (id)
  "Given an arXiv id, this function retrieves the metadata of the
article from arXiv and returns a string containing a BibTeX entry."
  (let ((url-buffer (url-retrieve-synchronously (format "http://export.arxiv.org/api/query?id_list=%s" id) t)))
    (with-current-buffer url-buffer
      (let* ((parse-tree (libxml-parse-xml-region
                         (progn (goto-char 0)
                                (search-forward "<?xml ")
                                (match-beginning 0))
                         (point-max)))
             (entry (assq 'entry parse-tree))
             (authors (--map (nth 2 (nth 2 it))
                             (--filter (and (listp it) (eq (car it) 'author)) entry)))
             (year (format-time-string "%Y" (date-to-time (nth 2 (assq 'published entry)))))
             (key (make-bibtex-key authors year))
             (title (nth 2 (assq 'title entry)))
             (names (bibtexify-authors authors))
             (id (-last-item (s-split "/" (nth 2 (assq 'id entry)))))
             (category (cdar (nth 1 (assq 'primary_category entry))))
             (abstract (s-trim (nth 2 (assq 'summary entry))))
             (url (nth 2 (assq 'id entry))))
        (format arxiv-entry-format-string key title names year id category abstract url)))))

;; Demo:
(retrieve-bibtex-from-arxiv "1506.04967v1")

If you are interested, I can make a PR for arxiv.el.

Feature request: customizing the header for org-ref-open-bibtex-notes

I'm starting to play with org-ref, and I would like to change the way the header is generated in org-ref-open-bibtex-notes. I've looked at the code and it's hard coded at the moment. Would there be a way to customize it, for instance by having a custom function that could be called with an alist containing the values of the fields?

Here is an example of a function I would use:

(defvar my-org-ref-note-header
  (lambda (f)
    (let
        ((title (cdr (assq 'title f)))
         (author (cdr (assq 'author f)))
         (year (cdr (assq 'year f))))
      (format "\n ** %s (%s, %s)" title author year))))

Produces errors unless tangled manually

org-ref has been producing errors if I do not tangle it manually.

Steps to reproduce

  1. Download a85b032.

  2. Add the following to init.el

    (require 'helm-config) ; Needed because of issue #5
    (add-to-list 'load-path "<path to org-ref directory>")
    (org-babel-load-file "<path to org-ref.org>")
  3. Run emacs --debug-init.

  4. Observe the backtrace.

  5. Run org-babel-tangle on org-ref.org.

  6. Restart emacs --debug-init.

  7. Observe no error is produced.

  8. Delete org-ref.el.

  9. Restart emacs --debug-init.

  10. The same error is produced again.

Interpretation

Somehow the tangling done by org-babel-load-file is not including the block where org-ref-cite-types is defined, while the tangling done by manually running org-babel-tangle is. If you look at the org-ref.el generated by org-babel-load-file you can verify the definition of org-ref-cite-types is absent.

Workaround

After I've run org-babel-tangle on org-ref.el, the program runs fine. I'll have to do this again every time I update org-ref however.

Fix

I'm not sure how to fix this, but doing so would make new users less confused and make it easier to update org-ref.

org-ref-default-bibliography not recognized?

I have (setq org-ref-default-bibliography "/home/ecbrown/bibliography/references.bib"), as well as the other variables including reftex. I have verified with C-h v.

But it seems that I must always specify the file in my current org file:

bibliography:/home/ecbrown/bibliography/references.bib

before the subsequent cite:key statements will work, i.e. getting the list of six or so tasks that can be done with a PDF.

Otherwise, I get !!! No entry found !!!

Am I missing something?

Emacs 25.0 devel (and Emacs 24.5) GNU/Linux
org-ref: e0f7e2b

List of citation entries of .bib file does not show up in helm

For some reason, the list of my citation entries stop showing up when I run org-ref-helm-insert-cite-link. Everything else is working (open notes, pdf file, ...) after I insert the citation link manually or using org-ref-insert-cite-link, though. Do you know what is going on?
Thanks

drag and drop PDF to add to bibliography / notes

I noticed you were experimenting with drag-and-drop in a blog post you wrote, John. What would be ideal, I think, is to connect this to org-ref in a way like how Mendeley works, where you can just drag a PDF into it, and it will store it in a central folder, extract/look-up metadata, add a bibtex entry to your default bib file, a note-entry to your bibliography-notes file, and optionally rename the stored PDF based on the metadata.

It would also be great if annotations were automatically extracted from the PDF, and added as a list under an "Annotations" sub-heading of the bibliography-notes entry, where each list-item has a corresponding link to open the PDF/page where the annotation is located. It would also be good to have the option to set up your own function for opening the PDF that can take a page number as an argument, so that a tool which allows annotating can be used. If this all were to be implemented, it would probably make sense to have an elisp function that can be used to refresh a note-entry's annotation-list.

Problem exporting to HTML

Hi, Thanks for this nice work. Following your instructions, I've mostly got it working on my site. I'm using emacs24. It looks like that might be a newer version that you're assuming? In particular, I don't see the f or s packages in the repos. I downloaded them from GitHub and pointed emacs at them, but I don't know if they're being used. That's the background.

At this point, I can export your org-ref.org file to LaTeX/PDF. However, when I try to export to HTML, I get an error. The error is occurring right here:

+BEGIN_SRC emacs-lisp

org-ref-cite-types

+END_SRC

The message is: Wrong type argument, characterp, nil. I've provided a stack trace below (and am seeing a lot of suspicious nils).

Thanks, again!
Kevin

Debugger entered--Lisp error: (wrong-type-argument characterp nil)
pretty-font-lock-compose-symbol((("sqrt" . 8730) ("nil" . 8709) ("=>" . 8658) ("->>" . 8608) ("->" . 8594) ("<-" . 8592) ("lambda" . 955) ("or" . 8744) ("and" . 8743) ("not" . 172) (">=" . 8805) ("<=" . 8804)))
eval((pretty-font-lock-compose-symbol (quote (("sqrt" . 8730) ("nil" . 8709) ("=>" . 8658) ("->>" . 8608) ("->" . 8594) ("<-" . 8592) ("lambda" . 955) ("or" . 8744) ("and" . 8743) ("not" . 172) (">=" . 8805) ("<=" . 8804)))))
font-lock-fontify-keywords-region(1 20 nil)
font-lock-default-fontify-region(1 20 nil)
font-lock-fontify-region(1 20 nil)
byte-code("\212\303 �\304\216\305ed #\210\306 \210\307\211�+\207" [save-match-data-internal verbose font-lock-fontified match-data ((byte-code "\301�\302"\207" [save-match-data-internal set-match-data evaporate] 3)) font-lock-fontify-region font-lock-after-fontify-buffer t] 4)
font-lock-default-fontify-buffer()
font-lock-fontify-buffer()
org-html-fontify-code("org-ref-cite-types\n" "emacs-lisp")
org-html-do-format-code("org-ref-cite-types\n" "emacs-lisp" nil t nil)
org-html-format-code((src-block (:language "emacs-lisp" :switches nil :parameters nil :begin 5731 :end 5783 :number-lines nil :preserve-indent nil :retain-labels t :use-labels t :label-fmt nil :hiddenp nil :value "org-ref-cite-types\n" :post-blank 0 :post-affiliated 5731 :parent (section (:begin 5731 :end 5783 :contents-begin 5731 :contents-end 5783 :post-blank 0 :parent (org-data nil #2)) #0))) (:export-options nil :input-file "/home/cs1/System/el/org-ref/org-ref.org" :input-buffer "org-ref.org" :html-extension "html" :html-link-org-as-html t :html-doctype "xhtml-strict" :html-container "div" :html-html5-fancy nil :html-link-use-abs-url nil :html-link-home "" :html-link-up "" :html-mathjax "" :html-postamble auto :html-preamble t :html-head "" :html-head-extra "" :html-head-include-default-style t :html-head-include-scripts t :html-table-attributes (:border "2" :cellspacing "0" :cellpadding "6" :rules "groups" :frame "hsides") :html-table-row-tags ("" . "") :html-xml-declaration (("html" . "") ("php" . ""; ?>")) :html-inline-images t :infojs-opt nil :creator "<a href="http://www.gnu.org/software/emacs/\">Emacs 24.4.1 (<a href="http://orgmode.org\">Org mode 8.2.10)" :with-latex t ...))
org-html-src-block((src-block (:language "emacs-lisp" :switches nil :parameters nil :begin 5731 :end 5783 :number-lines nil :preserve-indent nil :retain-labels t :use-labels t :label-fmt nil :hiddenp nil :value "org-ref-cite-types\n" :post-blank 0 :post-affiliated 5731 :parent (section (:begin 5731 :end 5783 :contents-begin 5731 :contents-end 5783 :post-blank 0 :parent (org-data nil #2)) #0))) nil (:export-options nil :input-file "/home/cs1/System/el/org-ref/org-ref.org" :input-buffer "org-ref.org" :html-extension "html" :html-link-org-as-html t :html-doctype "xhtml-strict" :html-container "div" :html-html5-fancy nil :html-link-use-abs-url nil :html-link-home "" :html-link-up "" :html-mathjax "" :html-postamble auto :html-preamble t :html-head "" :html-head-extra "" :html-head-include-default-style t :html-head-include-scripts t :html-table-attributes (:border "2" :cellspacing "0" :cellpadding "6" :rules "groups" :frame "hsides") :html-table-row-tags ("" . "") :html-xml-declaration (("html" . "") ("php" . ""; ?>")) :html-inline-images t :infojs-opt nil :creator "<a href="http://www.gnu.org/software/emacs/\">Emacs 24.4.1 (<a href="http://orgmode.org\">Org mode 8.2.10)" :with-latex t ...))
org-export-data((src-block (:language "emacs-lisp" :switches nil :parameters nil :begin 5731 :end 5783 :number-lines nil :preserve-indent nil :retain-labels t :use-labels t :label-fmt nil :hiddenp nil :value "org-ref-cite-types\n" :post-blank 0 :post-affiliated 5731 :parent (section (:begin 5731 :end 5783 :contents-begin 5731 :contents-end 5783 :post-blank 0 :parent (org-data nil #2)) #0))) (:export-options nil :input-file "/home/cs1/System/el/org-ref/org-ref.org" :input-buffer "org-ref.org" :html-extension "html" :html-link-org-as-html t :html-doctype "xhtml-strict" :html-container "div" :html-html5-fancy nil :html-link-use-abs-url nil :html-link-home "" :html-link-up "" :html-mathjax "" :html-postamble auto :html-preamble t :html-head "" :html-head-extra "" :html-head-include-default-style t :html-head-include-scripts t :html-table-attributes (:border "2" :cellspacing "0" :cellpadding "6" :rules "groups" :frame "hsides") :html-table-row-tags ("" . "") :html-xml-declaration (("html" . "") ("php" . ""; ?>")) :html-inline-images t :infojs-opt nil :creator "<a href="http://www.gnu.org/software/emacs/\">Emacs 24.4.1 (<a href="http://orgmode.org\">Org mode 8.2.10)" :with-latex t ...))
#[(element) "\302� "\207" [element info org-export-data] 3](%28src-block %28:language "emacs-lisp" :switches nil :parameters nil :begin 5731 :end 5783 :number-lines nil :preserve-indent nil :retain-labels t :use-labels t :label-fmt nil :hiddenp nil :value "org-ref-cite-typesn" :post-blank 0 :post-affiliated 5731 :parent %28section %28:begin 5731 :end 5783 :contents-begin 5731 :contents-end 5783 :post-blank 0 :parent %28org-data nil #2)) #0))))
mapconcat(#[(element) "\302� "\207" [element info org-export-data] 3](%28src-block %28:language "emacs-lisp" :switches nil :parameters nil :begin 5731 :end 5783 :number-lines nil :preserve-indent nil :retain-labels t :use-labels t :label-fmt nil :hiddenp nil :value "org-ref-cite-typesn" :post-blank 0 :post-affiliated 5731 :parent %28section %28:begin 5731 :end 5783 :contents-begin 5731 :contents-end 5783 :post-blank 0 :parent %28org-data nil #3)) #1)))) "")
org-export-data((section (:begin 5731 :end 5783 :contents-begin 5731 :contents-end 5783 :post-blank 0 :parent (org-data nil #0)) (src-block (:language "emacs-lisp" :switches nil :parameters nil :begin 5731 :end 5783 :number-lines nil :preserve-indent nil :retain-labels t :use-labels t :label-fmt nil :hiddenp nil :value "org-ref-cite-types\n" :post-blank 0 :post-affiliated 5731 :parent #0))) (:export-options nil :input-file "/home/cs1/System/el/org-ref/org-ref.org" :input-buffer "org-ref.org" :html-extension "html" :html-link-org-as-html t :html-doctype "xhtml-strict" :html-container "div" :html-html5-fancy nil :html-link-use-abs-url nil :html-link-home "" :html-link-up "" :html-mathjax "" :html-postamble auto :html-preamble t :html-head "" :html-head-extra "" :html-head-include-default-style t :html-head-include-scripts t :html-table-attributes (:border "2" :cellspacing "0" :cellpadding "6" :rules "groups" :frame "hsides") :html-table-row-tags ("" . "") :html-xml-declaration (("html" . "") ("php" . ""; ?>")) :html-inline-images t :infojs-opt nil :creator "<a href="http://www.gnu.org/software/emacs/\">Emacs 24.4.1 (<a href="http://orgmode.org\">Org mode 8.2.10)" :with-latex t ...))
#[(element) "\302� "\207" [element info org-export-data] 3](%28section %28:begin 5731 :end 5783 :contents-begin 5731 :contents-end 5783 :post-blank 0 :parent %28org-data nil #0%29%29 %28src-block %28:language "emacs-lisp" :switches nil :parameters nil :begin 5731 :end 5783 :number-lines nil :preserve-indent nil :retain-labels t :use-labels t :label-fmt nil :hiddenp nil :value "org-ref-cite-typesn" :post-blank 0 :post-affiliated 5731 :parent #0))))
mapconcat(#[(element) "\302� "\207" [element info org-export-data] 3](%28section %28:begin 5731 :end 5783 :contents-begin 5731 :contents-end 5783 :post-blank 0 :parent %28org-data nil #1%29%29 %28src-block %28:language "emacs-lisp" :switches nil :parameters nil :begin 5731 :end 5783 :number-lines nil :preserve-indent nil :retain-labels t :use-labels t :label-fmt nil :hiddenp nil :value "org-ref-cite-typesn" :post-blank 0 :post-affiliated 5731 :parent #1)))) "")
org-export-data((org-data nil (section (:begin 5731 :end 5783 :contents-begin 5731 :contents-end 5783 :post-blank 0 :parent #0) (src-block (:language "emacs-lisp" :switches nil :parameters nil :begin 5731 :end 5783 :number-lines nil :preserve-indent nil :retain-labels t :use-labels t :label-fmt nil :hiddenp nil :value "org-ref-cite-types\n" :post-blank 0 :post-affiliated 5731 :parent #1)))) (:export-options nil :input-file "/home/cs1/System/el/org-ref/org-ref.org" :input-buffer "org-ref.org" :html-extension "html" :html-link-org-as-html t :html-doctype "xhtml-strict" :html-container "div" :html-html5-fancy nil :html-link-use-abs-url nil :html-link-home "" :html-link-up "" :html-mathjax "" :html-postamble auto :html-preamble t :html-head "" :html-head-extra "" :html-head-include-default-style t :html-head-include-scripts t :html-table-attributes (:border "2" :cellspacing "0" :cellpadding "6" :rules "groups" :frame "hsides") :html-table-row-tags ("" . "") :html-xml-declaration (("html" . "") ("php" . ""; ?>")) :html-inline-images t :infojs-opt nil :creator "<a href="http://www.gnu.org/software/emacs/\">Emacs 24.4.1 (<a href="http://orgmode.org\">Org mode 8.2.10)" :with-latex t ...))
org-export-as(html nil nil nil (:output-file "./org-ref.html"))
org-export-to-file(html "./org-ref.html" nil nil nil nil nil)
org-html-export-to-html(nil nil nil nil)
(org-open-file (org-html-export-to-html nil s v b))
(if a (org-html-export-to-html t s v b) (org-open-file (org-html-export-to-html nil s v b)))
(lambda (a s v b) (if a (org-html-export-to-html t s v b) (org-open-file (org-html-export-to-html nil s v b))))(nil nil nil nil)
org-export-dispatch(nil)
call-interactively(org-export-dispatch nil nil)
command-execute(org-export-dispatch)

Multiple citations with the helm interface?

Hi John,

Is there any way of inserting multiple citations with the helm interface? I could find it in the docs (though I didn't read them very carefully). I have to do C-c ] every time to insert a new citation.

I can still do it with org-ref-insert-cite-link (I have to do Esc-Esc C to use it, M-Esc switches windows on debian), but I think helm is cooler.

Prateek

org-ref-link-message fails when a bibtex file has a local variable to say it's in biblatex

My bibtex file has this at the end, to make sure it's recognized as biblatex:

@comment{
  Local Variables:
  bibtex-dialect: biblatex
  End:
}

Unfortunately this breaks org-ref-link-message: when I put the point on an org-ref link, I get the following backtrace:

Debugger entered--Lisp error: (wrong-type-argument stringp nil)
  looking-at(nil)
  bibtex-parse-entry(t)
  (let* ((--cl-var-- (bibtex-parse-entry t)) (value nil) (key nil) (--cl-var-- nil)) (while (consp --cl-var--) (setq value (car --cl-var--) key (car-safe (prog1 value (setq value (cdr value))))) (setq --cl-var-- (cons (cons (downcase key) value) --cl-var--)) (setq --cl-var-- (cdr --cl-var--))) (nreverse --cl-var--))
  (let* ((cb (current-buffer)) (bibtex-expand-strings t) (entry (let* ((--cl-var-- (bibtex-parse-entry t)) (value nil) (key nil) (--cl-var-- nil)) (while (consp --cl-var--) (setq value (car --cl-var--) key (car-safe (prog1 value ...))) (setq --cl-var-- (cons (cons ... value) --cl-var--)) (setq --cl-var-- (cdr --cl-var--))) (nreverse --cl-var--))) (title (replace-regexp-in-string "\n\\|    \\| +" " " (reftex-get-bib-field "title" entry))) (year (reftex-get-bib-field "year" entry)) (author (replace-regexp-in-string "\n\\|   \\| +" " " (reftex-get-bib-field "author" entry))) (key (reftex-get-bib-field "=key=" entry)) (journal (reftex-get-bib-field "journal" entry)) (volume (reftex-get-bib-field "volume" entry)) (pages (reftex-get-bib-field "pages" entry)) (doi (reftex-get-bib-field "doi" entry)) (url (reftex-get-bib-field "url" entry))) (format "%s, \"%s\", %s, %s:%s (%s)" author title journal volume pages year))
  org-ref-bib-citation()
  (progn (insert-file-contents bibfile) (bibtex-search-entry key) (org-ref-bib-citation))
  (unwind-protect (progn (insert-file-contents bibfile) (bibtex-search-entry key) (org-ref-bib-citation)) (and (buffer-name temp-buffer) (kill-buffer temp-buffer)))
  (save-current-buffer (set-buffer temp-buffer) (unwind-protect (progn (insert-file-contents bibfile) (bibtex-search-entry key) (org-ref-bib-citation)) (and (buffer-name temp-buffer) (kill-buffer temp-buffer))))
  (let ((temp-buffer (generate-new-buffer " *temp*"))) (save-current-buffer (set-buffer temp-buffer) (unwind-protect (progn (insert-file-contents bibfile) (bibtex-search-entry key) (org-ref-bib-citation)) (and (buffer-name temp-buffer) (kill-buffer temp-buffer)))))
  (save-excursion (let ((temp-buffer (generate-new-buffer " *temp*"))) (save-current-buffer (set-buffer temp-buffer) (unwind-protect (progn (insert-file-contents bibfile) (bibtex-search-entry key) (org-ref-bib-citation)) (and (buffer-name temp-buffer) (kill-buffer temp-buffer))))))
  (if bibfile (save-excursion (let ((temp-buffer (generate-new-buffer " *temp*"))) (save-current-buffer (set-buffer temp-buffer) (unwind-protect (progn (insert-file-contents bibfile) (bibtex-search-entry key) (org-ref-bib-citation)) (and (buffer-name temp-buffer) (kill-buffer temp-buffer)))))) "!!! No entry found !!!")
  (let* ((results (org-ref-get-bibtex-key-and-file)) (key (car results)) (bibfile (cdr results))) (if bibfile (save-excursion (let ((temp-buffer (generate-new-buffer " *temp*"))) (save-current-buffer (set-buffer temp-buffer) (unwind-protect (progn (insert-file-contents bibfile) (bibtex-search-entry key) (org-ref-bib-citation)) (and (buffer-name temp-buffer) (kill-buffer temp-buffer)))))) "!!! No entry found !!!"))
  org-ref-get-citation-string-at-point()
  (message (org-ref-get-citation-string-at-point))
  (cond ((-contains\? org-ref-cite-types type) (message (org-ref-get-citation-string-at-point))) ((string= type "ref") (message "%scount: %s" (org-ref-get-label-context (org-element-property :path object)) (org-ref-count-labels (org-element-property :path object)))) ((string= type "eqref") (message "%scount: %s" (org-ref-get-label-context (org-element-property :path object)) (org-ref-count-labels (org-element-property :path object)))) ((string= type "label") (let ((count (org-ref-count-labels (org-element-property :path object)))) (message (concat (number-to-string count) " occurence" (if (or (= count 0) (> count 1)) (progn "s")))))) ((string= type "custom-id") (save-excursion (org-open-link-from-string (format "[[#%s]]" (org-element-property :path object))) (message "%s" (org-get-heading)))) ((string= type "bibliography") (let* ((bibfile) (object (org-element-context)) (link-string (org-element-property :path object)) (link-string-beginning) (link-string-end)) (save-excursion (goto-char (org-element-property :begin object)) (search-forward link-string nil nil 1) (setq link-string-beginning (match-beginning 0)) (setq link-string-end (match-end 0))) (if (> link-string-beginning (point)) (progn (goto-char link-string-beginning))) (let (key-beginning key-end) (save-excursion (if (search-forward "," link-string-end 1 1) (setq key-end (- ... 1)) (setq key-end (point)))) (save-excursion (if (search-backward "," link-string-beginning 1 1) (setq key-beginning (+ ... 1)) (setq key-beginning (point)))) (setq bibfile (org-ref-strip-string (buffer-substring key-beginning key-end))) (if (file-exists-p bibfile) (message "%s exists." bibfile) (message "!!! %s NOT FOUND !!!" bibfile))))))
  (save-excursion (cond ((-contains\? org-ref-cite-types type) (message (org-ref-get-citation-string-at-point))) ((string= type "ref") (message "%scount: %s" (org-ref-get-label-context (org-element-property :path object)) (org-ref-count-labels (org-element-property :path object)))) ((string= type "eqref") (message "%scount: %s" (org-ref-get-label-context (org-element-property :path object)) (org-ref-count-labels (org-element-property :path object)))) ((string= type "label") (let ((count (org-ref-count-labels (org-element-property :path object)))) (message (concat (number-to-string count) " occurence" (if (or ... ...) (progn "s")))))) ((string= type "custom-id") (save-excursion (org-open-link-from-string (format "[[#%s]]" (org-element-property :path object))) (message "%s" (org-get-heading)))) ((string= type "bibliography") (let* ((bibfile) (object (org-element-context)) (link-string (org-element-property :path object)) (link-string-beginning) (link-string-end)) (save-excursion (goto-char (org-element-property :begin object)) (search-forward link-string nil nil 1) (setq link-string-beginning (match-beginning 0)) (setq link-string-end (match-end 0))) (if (> link-string-beginning (point)) (progn (goto-char link-string-beginning))) (let (key-beginning key-end) (save-excursion (if (search-forward "," link-string-end 1 1) (setq key-end ...) (setq key-end ...))) (save-excursion (if (search-backward "," link-string-beginning 1 1) (setq key-beginning ...) (setq key-beginning ...))) (setq bibfile (org-ref-strip-string (buffer-substring key-beginning key-end))) (if (file-exists-p bibfile) (message "%s exists." bibfile) (message "!!! %s NOT FOUND !!!" bibfile)))))))
  (let* ((object (org-element-context)) (type (org-element-property :type object))) (save-excursion (cond ((-contains\? org-ref-cite-types type) (message (org-ref-get-citation-string-at-point))) ((string= type "ref") (message "%scount: %s" (org-ref-get-label-context (org-element-property :path object)) (org-ref-count-labels (org-element-property :path object)))) ((string= type "eqref") (message "%scount: %s" (org-ref-get-label-context (org-element-property :path object)) (org-ref-count-labels (org-element-property :path object)))) ((string= type "label") (let ((count (org-ref-count-labels ...))) (message (concat (number-to-string count) " occurence" (if ... ...))))) ((string= type "custom-id") (save-excursion (org-open-link-from-string (format "[[#%s]]" (org-element-property :path object))) (message "%s" (org-get-heading)))) ((string= type "bibliography") (let* ((bibfile) (object (org-element-context)) (link-string (org-element-property :path object)) (link-string-beginning) (link-string-end)) (save-excursion (goto-char (org-element-property :begin object)) (search-forward link-string nil nil 1) (setq link-string-beginning (match-beginning 0)) (setq link-string-end (match-end 0))) (if (> link-string-beginning (point)) (progn (goto-char link-string-beginning))) (let (key-beginning key-end) (save-excursion (if ... ... ...)) (save-excursion (if ... ... ...)) (setq bibfile (org-ref-strip-string ...)) (if (file-exists-p bibfile) (message "%s exists." bibfile) (message "!!! %s NOT FOUND !!!" bibfile))))))))
  (progn (let* ((object (org-element-context)) (type (org-element-property :type object))) (save-excursion (cond ((-contains\? org-ref-cite-types type) (message (org-ref-get-citation-string-at-point))) ((string= type "ref") (message "%scount: %s" (org-ref-get-label-context (org-element-property :path object)) (org-ref-count-labels (org-element-property :path object)))) ((string= type "eqref") (message "%scount: %s" (org-ref-get-label-context (org-element-property :path object)) (org-ref-count-labels (org-element-property :path object)))) ((string= type "label") (let ((count ...)) (message (concat ... " occurence" ...)))) ((string= type "custom-id") (save-excursion (org-open-link-from-string (format "[[#%s]]" ...)) (message "%s" (org-get-heading)))) ((string= type "bibliography") (let* ((bibfile) (object ...) (link-string ...) (link-string-beginning) (link-string-end)) (save-excursion (goto-char ...) (search-forward link-string nil nil 1) (setq link-string-beginning ...) (setq link-string-end ...)) (if (> link-string-beginning ...) (progn ...)) (let (key-beginning key-end) (save-excursion ...) (save-excursion ...) (setq bibfile ...) (if ... ... ...))))))))
  (if (eq major-mode (quote org-mode)) (progn (let* ((object (org-element-context)) (type (org-element-property :type object))) (save-excursion (cond ((-contains\? org-ref-cite-types type) (message (org-ref-get-citation-string-at-point))) ((string= type "ref") (message "%scount: %s" (org-ref-get-label-context ...) (org-ref-count-labels ...))) ((string= type "eqref") (message "%scount: %s" (org-ref-get-label-context ...) (org-ref-count-labels ...))) ((string= type "label") (let (...) (message ...))) ((string= type "custom-id") (save-excursion (org-open-link-from-string ...) (message "%s" ...))) ((string= type "bibliography") (let* (... ... ... ... ...) (save-excursion ... ... ... ...) (if ... ...) (let ... ... ... ... ...))))))))
  (save-restriction (widen) (if (eq major-mode (quote org-mode)) (progn (let* ((object (org-element-context)) (type (org-element-property :type object))) (save-excursion (cond ((-contains\? org-ref-cite-types type) (message ...)) ((string= type "ref") (message "%scount: %s" ... ...)) ((string= type "eqref") (message "%scount: %s" ... ...)) ((string= type "label") (let ... ...)) ((string= type "custom-id") (save-excursion ... ...)) ((string= type "bibliography") (let* ... ... ... ...))))))))
  org-ref-link-message()
  apply(org-ref-link-message nil)
  byte-code("r\301�\302H�\303H\"\210)\301\207" [timer apply 5 6] 4)
  timer-event-handler([t 0 0 500000 t org-ref-link-message nil idle 0])

open in browser chokes on urls with initial spaces

C-c-o -> open in browser chokes on urls with initial white space. I didn't test for trailing white space.

For example, it chokes on the following:

@Article{Thrower13,
  Title                    = {{I}nteraction between {C}oronene and {G}raphite from {T}emperature-{P}rogrammed {D}esorption and {DFT}-vd{W} {C}alculations: {I}mportance of {E}ntropic {E}ffects and {I}nsights into {G}raphite {I}nterlayer {B}inding},
  Author                   = {Thrower, John D. and Friis, Emil E. and Skov, Anders L. and Nilsson, Louis and Andersen, Mie and Ferrighi, Lara and Jørgensen, Bjarke and Baouche, Saoud and Balog, Richard and Hammer, Bjørk and Hornekær, Liv},
  Journal                  = {The Journal of Physical Chemistry C},
  Year                     = {2013},
  Number                   = {26},
  Pages                    = {13520-13529},
  Volume                   = {117},

  Doi                      = {10.1021/jp404240h},
  Eprint                   = { 
 http://dx.doi.org/10.1021/jp404240h

},
  File                     = {Thrower13.pdf:Thrower13.pdf:PDF},
  Keywords                 = {adsorption, entropy},
  Owner                    = {chaitanya},
  Timestamp                = {2014.11.11},
  Url                      = { 
 http://dx.doi.org/10.1021/jp404240h

}
}

It gives me a (KDE) window manager error saying:

Unable to run the command specified. The file or folder file:///home/chaitanya/ownCloud/org/testing/ %0A http:/dx.doi.org/10.1021/jp404240h%0A %0A does not exist.

But, not on:

@Article{Thrower13,
  Title                    = {{I}nteraction between {C}oronene and {G}raphite from {T}emperature-{P}rogrammed {D}esorption and {DFT}-vd{W} {C}alculations: {I}mportance of {E}ntropic {E}ffects and {I}nsights into {G}raphite {I}nterlayer {B}inding},
  Author                   = {Thrower, John D. and Friis, Emil E. and Skov, Anders L. and Nilsson, Louis and Andersen, Mie and Ferrighi, Lara and Jørgensen, Bjarke and Baouche, Saoud and Balog, Richard and Hammer, Bjørk and Hornekær, Liv},
  Journal                  = {The Journal of Physical Chemistry C},
  Year                     = {2013},
  Number                   = {26},
  Pages                    = {13520-13529},
  Volume                   = {117},

  Doi                      = {10.1021/jp404240h},
  Eprint                   = { 
 http://dx.doi.org/10.1021/jp404240h

},
  File                     = {Thrower13.pdf:Thrower13.pdf:PDF},
  Keywords                 = {adsorption, entropy},
  Owner                    = {chaitanya},
  Timestamp                = {2014.11.11},
  Url                      = {http://dx.doi.org/10.1021/jp404240h}
}

possible improvements to automatically downloading pdfs...

Hi John,

Is it possible to extend the function in doi-utils to include a library proxy when trying to get pdfs. This is a problem I face when working from home where I have to append a library proxy to the page address in order to get past the paywall.

So this,
http://pubs.acs.org/doi/10.1021/acscatal.5b01755
would become this,
http://pubs.acs.org.proxy.library.nd.edu/doi/10.1021/acscatal.5b01755

I think this should only involve adding a variable that stores the proxy and appending it to the pdf webpage when the function is called. I think many other institutions work this way too.

This does require me to login the first time I use it, so ideally it should open the browser if no pdf can be found.

I also think that it is probably more natural that the browser should open to the given bibtex entry if no pdf is found, so I can manually save it (e.g. from journals like PRB and PRL, which require a captcha).

Request for modifying helm-bibtex behaviour

I would like org-ref to run the functions, for example helm-bibtex-open-pdf, just by pressing the corresponding numbers, instead of having to also press the return key. I would also like to be able to modify these keys, and use something like "n" for notes, "p" for pdf and so on, which I think is more intuitive.

Mandatory field 'journaltitle' is missing // cant get bibtex to auto on biblatex

Hi again, i also get the Mandatory field 'journaltitle' is missing error (as in issue #40)

also i tried your suggestion and the bib file looks like this


% -*- mode:bibtex; eval: (bibtex-set-dialect 'biblatex); -*-


@article{ackerman-1998-discr-clear,
  author =   {Ackerman, {S.A.} and Strabala, {K.I.} and Menzel,
                  {W.P.} and Frey, {R.A.} and Moeller, {C.C.} and
                  Gumley, {L.E.}},
  title =    {Discriminating Clear Sky From Clouds With Modis},
  journal =  {Journal of Geophysical Research},
  volume =   103,
  number =   {D24},
  pages =    {32,141--32,157},
  year =     1998,
  shorttitle =   {Discriminating clear sky from clouds with {MODIS}},
}

yet it dosent come up as biblatex, and when issuing C-x C-e i get the following error

Debugger entered--Lisp error: (void-variable %)
  eval(% nil)
  eval-last-sexp-1(nil)
  eval-last-sexp(nil)
  call-interactively(eval-last-sexp nil nil)
  command-execute(eval-last-sexp)

if this is purely a bibtex issue i can try and look in the biblatex forums (if they have any :))

best

Itau

org-ref-open-pdf-at-point

Line 1583 of org-ref.el is to open existing pdf file with org-open-file.
However I noticed there is a customisable function named helm-bibtex-pdf-open-function in helm-bibtex which is already imported by org-ref.el.
I am not familiar with Lisp, but is it possible to use helm-bibtex-pdf-open-function instead of org-open-file which I think is more friendly.

The original function definition is:

(defun org-ref-open-pdf-at-point ()
  "Open the pdf for bibtex key under point if it exists."
  (interactive)
  (let* ((results (org-ref-get-bibtex-key-and-file))
     (key (car results))
         (pdf-file (funcall org-ref-get-pdf-filename-function key)))
    (if (file-exists-p pdf-file)
        (org-open-file pdf-file)
(message "no pdf found for %s" key))))

org-ref overrides helm-bibtex

There were a few changes in the way helm-bibtex inserts citation (see tmalsburg/helm-bibtex#68), but org-ref overrides those changes. Is there something I can do to use helm-bibtex as a standalone application?

I noticed that If I eval my init file then helm-bibtex overrides org-ref. I'm not sure why. Maybe @tmalsburg would know.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.