├── .ert-runner ├── .github ├── FUNDING.yml └── workflows │ ├── test-melpa.yml │ └── test-org-ref.yml ├── .gitignore ├── .travis.yml ├── CLAUDE.md ├── Cask ├── LICENSE ├── Makefile ├── README.org ├── citeproc ├── csl-locales │ └── locales-en-US.xml └── csl-styles │ ├── apa-5th-edition.csl │ ├── apa-numeric-superscript-brackets.csl │ ├── chicago-author-date-16th-edition.csl │ ├── chicago-fullnote-bibliography-16th-edition.csl │ ├── elsevier-harvard.csl │ └── elsevier-with-titles.csl ├── contrib.el ├── development.org ├── doi-utils.el ├── examples ├── .ob-jupyter │ └── 46ed61e65bf11890f8772850057bb35847f984b8.png ├── FOOTNOTE-CITATIONS-README.org ├── basic-csl-path.org ├── basic-csl.org ├── basic-defaults-csl.org ├── basic.bib ├── basic.org ├── bbl-authoryear.org ├── bbl-numbers.org ├── bbl-super.org ├── biblatex-example.org ├── chicago-fullnote-bibliography.csl ├── fig.png ├── footnote-citations-example.org ├── footnote-demo.org ├── footnote-numeric-demo.org ├── natmove-example.org ├── publish │ ├── async-init.el │ ├── publish.org │ └── src │ │ └── topublish.org ├── refproc.org ├── test-footnote-functionality.el ├── test-footnotes.org └── test-numbering.el ├── melpa ├── init-helm.el ├── init-ivy.el ├── init-melpa.el ├── makefile ├── test-1.bib └── test-1.org ├── nist-webbook.el ├── openalex.el ├── org-ref-arxiv.el ├── org-ref-bibliography-links.el ├── org-ref-bibtex.el ├── org-ref-citation-links.el ├── org-ref-compat.el ├── org-ref-core.el ├── org-ref-export.el ├── org-ref-extract.el ├── org-ref-glossary.el ├── org-ref-helm.el ├── org-ref-isbn.el ├── org-ref-issues.org ├── org-ref-ivy.el ├── org-ref-label-link.el ├── org-ref-latex.el ├── org-ref-misc-links.el ├── org-ref-natbib-bbl-citeproc.el ├── org-ref-pdf.el ├── org-ref-pgk.el ├── org-ref-publish.el ├── org-ref-pubmed.el ├── org-ref-ref-links.el ├── org-ref-refproc.el ├── org-ref-sci-id.el ├── org-ref-scifinder.el ├── org-ref-scopus.el ├── org-ref-url-utils.el ├── org-ref-utils.el ├── org-ref-worldcat.el ├── org-ref-wos.el ├── org-ref.bib ├── org-ref.el ├── org-ref.org ├── screenshots ├── cite-tooltip.png ├── functional-cite-links.png ├── functional-links-2.png ├── introduction.png └── org-ref-analysis.png ├── scripts └── run-relint.sh ├── test ├── README.md ├── all-org-test.el ├── bibtex-completion-bibliography-normalization-test.el ├── csl-footnote-citations-test.el ├── equation-image-tooltips-test.el ├── glossary-examples │ ├── 01-small-example.org │ ├── 02-large-example.org │ ├── 03-multifile-acronyms.org │ ├── 03-multifile-chapter1.org │ ├── 03-multifile-chapter2.org │ ├── 03-multifile-glossary.org │ ├── 03-multifile-main.org │ └── README.md ├── glossary-tooltip-test.el ├── init-devel.el ├── init.el ├── latex-multifile │ ├── biblatex-chapter.tex │ ├── biblatex-main.tex │ ├── biblatex-single.tex │ ├── chapter1.tex │ ├── chapter2.tex │ ├── main.tex │ └── single-file.tex ├── multi-file-refs-test.el ├── multi-file-refs │ ├── chapter1.org │ ├── chapter2.org │ └── main.org ├── native-compilation-warnings-test.el ├── openalex-comprehensive-test.el ├── openalex-test.el ├── openalex-utilities-test.el ├── org-ref-latex-test.el ├── org-ref-test-init.el ├── org-test-setup.el ├── relint-regexp-test.el ├── run-tests.el ├── test-1.bib └── test-2.bib ├── x.sh └── x2bib.el /.ert-runner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/.ert-runner -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/test-melpa.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/.github/workflows/test-melpa.yml -------------------------------------------------------------------------------- /.github/workflows/test-org-ref.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/.github/workflows/test-org-ref.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/.travis.yml -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /Cask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/Cask -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/Makefile -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/README.org -------------------------------------------------------------------------------- /citeproc/csl-locales/locales-en-US.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/citeproc/csl-locales/locales-en-US.xml -------------------------------------------------------------------------------- /citeproc/csl-styles/apa-5th-edition.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/citeproc/csl-styles/apa-5th-edition.csl -------------------------------------------------------------------------------- /citeproc/csl-styles/apa-numeric-superscript-brackets.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/citeproc/csl-styles/apa-numeric-superscript-brackets.csl -------------------------------------------------------------------------------- /citeproc/csl-styles/chicago-author-date-16th-edition.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/citeproc/csl-styles/chicago-author-date-16th-edition.csl -------------------------------------------------------------------------------- /citeproc/csl-styles/chicago-fullnote-bibliography-16th-edition.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/citeproc/csl-styles/chicago-fullnote-bibliography-16th-edition.csl -------------------------------------------------------------------------------- /citeproc/csl-styles/elsevier-harvard.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/citeproc/csl-styles/elsevier-harvard.csl -------------------------------------------------------------------------------- /citeproc/csl-styles/elsevier-with-titles.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/citeproc/csl-styles/elsevier-with-titles.csl -------------------------------------------------------------------------------- /contrib.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/contrib.el -------------------------------------------------------------------------------- /development.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/development.org -------------------------------------------------------------------------------- /doi-utils.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/doi-utils.el -------------------------------------------------------------------------------- /examples/.ob-jupyter/46ed61e65bf11890f8772850057bb35847f984b8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/examples/.ob-jupyter/46ed61e65bf11890f8772850057bb35847f984b8.png -------------------------------------------------------------------------------- /examples/FOOTNOTE-CITATIONS-README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/examples/FOOTNOTE-CITATIONS-README.org -------------------------------------------------------------------------------- /examples/basic-csl-path.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/examples/basic-csl-path.org -------------------------------------------------------------------------------- /examples/basic-csl.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/examples/basic-csl.org -------------------------------------------------------------------------------- /examples/basic-defaults-csl.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/examples/basic-defaults-csl.org -------------------------------------------------------------------------------- /examples/basic.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/examples/basic.bib -------------------------------------------------------------------------------- /examples/basic.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/examples/basic.org -------------------------------------------------------------------------------- /examples/bbl-authoryear.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/examples/bbl-authoryear.org -------------------------------------------------------------------------------- /examples/bbl-numbers.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/examples/bbl-numbers.org -------------------------------------------------------------------------------- /examples/bbl-super.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/examples/bbl-super.org -------------------------------------------------------------------------------- /examples/biblatex-example.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/examples/biblatex-example.org -------------------------------------------------------------------------------- /examples/chicago-fullnote-bibliography.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/examples/chicago-fullnote-bibliography.csl -------------------------------------------------------------------------------- /examples/fig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/examples/fig.png -------------------------------------------------------------------------------- /examples/footnote-citations-example.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/examples/footnote-citations-example.org -------------------------------------------------------------------------------- /examples/footnote-demo.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/examples/footnote-demo.org -------------------------------------------------------------------------------- /examples/footnote-numeric-demo.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/examples/footnote-numeric-demo.org -------------------------------------------------------------------------------- /examples/natmove-example.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/examples/natmove-example.org -------------------------------------------------------------------------------- /examples/publish/async-init.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/examples/publish/async-init.el -------------------------------------------------------------------------------- /examples/publish/publish.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/examples/publish/publish.org -------------------------------------------------------------------------------- /examples/publish/src/topublish.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/examples/publish/src/topublish.org -------------------------------------------------------------------------------- /examples/refproc.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/examples/refproc.org -------------------------------------------------------------------------------- /examples/test-footnote-functionality.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/examples/test-footnote-functionality.el -------------------------------------------------------------------------------- /examples/test-footnotes.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/examples/test-footnotes.org -------------------------------------------------------------------------------- /examples/test-numbering.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/examples/test-numbering.el -------------------------------------------------------------------------------- /melpa/init-helm.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/melpa/init-helm.el -------------------------------------------------------------------------------- /melpa/init-ivy.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/melpa/init-ivy.el -------------------------------------------------------------------------------- /melpa/init-melpa.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/melpa/init-melpa.el -------------------------------------------------------------------------------- /melpa/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/melpa/makefile -------------------------------------------------------------------------------- /melpa/test-1.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/melpa/test-1.bib -------------------------------------------------------------------------------- /melpa/test-1.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/melpa/test-1.org -------------------------------------------------------------------------------- /nist-webbook.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/nist-webbook.el -------------------------------------------------------------------------------- /openalex.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/openalex.el -------------------------------------------------------------------------------- /org-ref-arxiv.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/org-ref-arxiv.el -------------------------------------------------------------------------------- /org-ref-bibliography-links.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/org-ref-bibliography-links.el -------------------------------------------------------------------------------- /org-ref-bibtex.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/org-ref-bibtex.el -------------------------------------------------------------------------------- /org-ref-citation-links.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/org-ref-citation-links.el -------------------------------------------------------------------------------- /org-ref-compat.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/org-ref-compat.el -------------------------------------------------------------------------------- /org-ref-core.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/org-ref-core.el -------------------------------------------------------------------------------- /org-ref-export.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/org-ref-export.el -------------------------------------------------------------------------------- /org-ref-extract.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/org-ref-extract.el -------------------------------------------------------------------------------- /org-ref-glossary.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/org-ref-glossary.el -------------------------------------------------------------------------------- /org-ref-helm.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/org-ref-helm.el -------------------------------------------------------------------------------- /org-ref-isbn.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/org-ref-isbn.el -------------------------------------------------------------------------------- /org-ref-issues.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/org-ref-issues.org -------------------------------------------------------------------------------- /org-ref-ivy.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/org-ref-ivy.el -------------------------------------------------------------------------------- /org-ref-label-link.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/org-ref-label-link.el -------------------------------------------------------------------------------- /org-ref-latex.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/org-ref-latex.el -------------------------------------------------------------------------------- /org-ref-misc-links.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/org-ref-misc-links.el -------------------------------------------------------------------------------- /org-ref-natbib-bbl-citeproc.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/org-ref-natbib-bbl-citeproc.el -------------------------------------------------------------------------------- /org-ref-pdf.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/org-ref-pdf.el -------------------------------------------------------------------------------- /org-ref-pgk.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/org-ref-pgk.el -------------------------------------------------------------------------------- /org-ref-publish.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/org-ref-publish.el -------------------------------------------------------------------------------- /org-ref-pubmed.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/org-ref-pubmed.el -------------------------------------------------------------------------------- /org-ref-ref-links.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/org-ref-ref-links.el -------------------------------------------------------------------------------- /org-ref-refproc.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/org-ref-refproc.el -------------------------------------------------------------------------------- /org-ref-sci-id.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/org-ref-sci-id.el -------------------------------------------------------------------------------- /org-ref-scifinder.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/org-ref-scifinder.el -------------------------------------------------------------------------------- /org-ref-scopus.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/org-ref-scopus.el -------------------------------------------------------------------------------- /org-ref-url-utils.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/org-ref-url-utils.el -------------------------------------------------------------------------------- /org-ref-utils.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/org-ref-utils.el -------------------------------------------------------------------------------- /org-ref-worldcat.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/org-ref-worldcat.el -------------------------------------------------------------------------------- /org-ref-wos.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/org-ref-wos.el -------------------------------------------------------------------------------- /org-ref.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/org-ref.bib -------------------------------------------------------------------------------- /org-ref.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/org-ref.el -------------------------------------------------------------------------------- /org-ref.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/org-ref.org -------------------------------------------------------------------------------- /screenshots/cite-tooltip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/screenshots/cite-tooltip.png -------------------------------------------------------------------------------- /screenshots/functional-cite-links.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/screenshots/functional-cite-links.png -------------------------------------------------------------------------------- /screenshots/functional-links-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/screenshots/functional-links-2.png -------------------------------------------------------------------------------- /screenshots/introduction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/screenshots/introduction.png -------------------------------------------------------------------------------- /screenshots/org-ref-analysis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/screenshots/org-ref-analysis.png -------------------------------------------------------------------------------- /scripts/run-relint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/scripts/run-relint.sh -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/test/README.md -------------------------------------------------------------------------------- /test/all-org-test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/test/all-org-test.el -------------------------------------------------------------------------------- /test/bibtex-completion-bibliography-normalization-test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/test/bibtex-completion-bibliography-normalization-test.el -------------------------------------------------------------------------------- /test/csl-footnote-citations-test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/test/csl-footnote-citations-test.el -------------------------------------------------------------------------------- /test/equation-image-tooltips-test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/test/equation-image-tooltips-test.el -------------------------------------------------------------------------------- /test/glossary-examples/01-small-example.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/test/glossary-examples/01-small-example.org -------------------------------------------------------------------------------- /test/glossary-examples/02-large-example.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/test/glossary-examples/02-large-example.org -------------------------------------------------------------------------------- /test/glossary-examples/03-multifile-acronyms.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/test/glossary-examples/03-multifile-acronyms.org -------------------------------------------------------------------------------- /test/glossary-examples/03-multifile-chapter1.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/test/glossary-examples/03-multifile-chapter1.org -------------------------------------------------------------------------------- /test/glossary-examples/03-multifile-chapter2.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/test/glossary-examples/03-multifile-chapter2.org -------------------------------------------------------------------------------- /test/glossary-examples/03-multifile-glossary.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/test/glossary-examples/03-multifile-glossary.org -------------------------------------------------------------------------------- /test/glossary-examples/03-multifile-main.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/test/glossary-examples/03-multifile-main.org -------------------------------------------------------------------------------- /test/glossary-examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/test/glossary-examples/README.md -------------------------------------------------------------------------------- /test/glossary-tooltip-test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/test/glossary-tooltip-test.el -------------------------------------------------------------------------------- /test/init-devel.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/test/init-devel.el -------------------------------------------------------------------------------- /test/init.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/test/init.el -------------------------------------------------------------------------------- /test/latex-multifile/biblatex-chapter.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/test/latex-multifile/biblatex-chapter.tex -------------------------------------------------------------------------------- /test/latex-multifile/biblatex-main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/test/latex-multifile/biblatex-main.tex -------------------------------------------------------------------------------- /test/latex-multifile/biblatex-single.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/test/latex-multifile/biblatex-single.tex -------------------------------------------------------------------------------- /test/latex-multifile/chapter1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/test/latex-multifile/chapter1.tex -------------------------------------------------------------------------------- /test/latex-multifile/chapter2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/test/latex-multifile/chapter2.tex -------------------------------------------------------------------------------- /test/latex-multifile/main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/test/latex-multifile/main.tex -------------------------------------------------------------------------------- /test/latex-multifile/single-file.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/test/latex-multifile/single-file.tex -------------------------------------------------------------------------------- /test/multi-file-refs-test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/test/multi-file-refs-test.el -------------------------------------------------------------------------------- /test/multi-file-refs/chapter1.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/test/multi-file-refs/chapter1.org -------------------------------------------------------------------------------- /test/multi-file-refs/chapter2.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/test/multi-file-refs/chapter2.org -------------------------------------------------------------------------------- /test/multi-file-refs/main.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/test/multi-file-refs/main.org -------------------------------------------------------------------------------- /test/native-compilation-warnings-test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/test/native-compilation-warnings-test.el -------------------------------------------------------------------------------- /test/openalex-comprehensive-test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/test/openalex-comprehensive-test.el -------------------------------------------------------------------------------- /test/openalex-test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/test/openalex-test.el -------------------------------------------------------------------------------- /test/openalex-utilities-test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/test/openalex-utilities-test.el -------------------------------------------------------------------------------- /test/org-ref-latex-test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/test/org-ref-latex-test.el -------------------------------------------------------------------------------- /test/org-ref-test-init.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/test/org-ref-test-init.el -------------------------------------------------------------------------------- /test/org-test-setup.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/test/org-test-setup.el -------------------------------------------------------------------------------- /test/relint-regexp-test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/test/relint-regexp-test.el -------------------------------------------------------------------------------- /test/run-tests.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/test/run-tests.el -------------------------------------------------------------------------------- /test/test-1.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/test/test-1.bib -------------------------------------------------------------------------------- /test/test-2.bib: -------------------------------------------------------------------------------- 1 | % purposely empty -------------------------------------------------------------------------------- /x.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/x.sh -------------------------------------------------------------------------------- /x2bib.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/org-ref/HEAD/x2bib.el --------------------------------------------------------------------------------