├── .gitattributes ├── .gitignore ├── Anki └── MathematicaCloze.apkg ├── Example ├── ClassicalMechanics.nb ├── ClassicalMechanics.pdf ├── ClassicalMechanics.tex ├── Mechanics.bib └── plotName.pdf ├── LICENSE ├── Mathematica ├── ScienceNotebooks │ ├── AnkiExporter │ │ ├── AnkiExporter.wl │ │ └── Kernel │ │ │ └── init.m │ ├── FrontEnd │ │ └── StyleSheets │ │ │ └── Science.nb │ ├── Kernel │ │ └── init.m │ ├── PacletInfo.m │ ├── ScienceNotebooks.wl │ └── TeXExporter │ │ ├── Kernel │ │ └── init.m │ │ └── TeXExporter.wl └── _Build │ ├── Build.nb │ ├── dir.png │ ├── screen0.png │ ├── screen1.png │ ├── screen2.png │ ├── window0.png │ ├── window1.png │ ├── window2.gif │ ├── window3.gif │ ├── window4.gif │ └── window5.png ├── Old ├── Applications │ └── ScienceReport │ │ ├── Kernel │ │ └── init.m │ │ ├── MakeDoc.nb │ │ ├── PacletInfo.m │ │ ├── ScienceReport.m │ │ └── ScienceReport.nb ├── Autoload │ ├── AnkiExporter │ │ ├── AnkiExporter.wl │ │ ├── FrontEnd │ │ │ └── StyleSheets │ │ │ │ └── Science.nb │ │ ├── Kernel │ │ │ └── init.m │ │ └── PacletInfo.m │ ├── PackageUtils │ │ ├── PackageUtils.wl │ │ └── PacletInfo.m │ └── TeXExporter │ │ ├── PackageUtils.wl │ │ └── PacletInfo.m ├── Kernel │ └── init.m ├── OtherShortcuts ├── SystemFiles │ └── FrontEnd │ │ ├── StyleSheets │ │ └── Science.nb │ │ └── TextResources │ │ ├── Macintosh │ │ └── KeyEventTranslations.tr │ │ └── MiscExpressions.tr ├── Using Mathematica-Anki.pdf ├── WorkInProgress ├── callingFrontEnd └── hardlinker.sh ├── README.md ├── Resources ├── latinmodern-math.otf └── lmroman17-regular.otf ├── Zotero └── translators │ └── zotselect-mathematica.js └── ack.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masteranza/ScienceNotebooks/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masteranza/ScienceNotebooks/HEAD/.gitignore -------------------------------------------------------------------------------- /Anki/MathematicaCloze.apkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masteranza/ScienceNotebooks/HEAD/Anki/MathematicaCloze.apkg -------------------------------------------------------------------------------- /Example/ClassicalMechanics.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masteranza/ScienceNotebooks/HEAD/Example/ClassicalMechanics.nb -------------------------------------------------------------------------------- /Example/ClassicalMechanics.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masteranza/ScienceNotebooks/HEAD/Example/ClassicalMechanics.pdf -------------------------------------------------------------------------------- /Example/ClassicalMechanics.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masteranza/ScienceNotebooks/HEAD/Example/ClassicalMechanics.tex -------------------------------------------------------------------------------- /Example/Mechanics.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masteranza/ScienceNotebooks/HEAD/Example/Mechanics.bib -------------------------------------------------------------------------------- /Example/plotName.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masteranza/ScienceNotebooks/HEAD/Example/plotName.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masteranza/ScienceNotebooks/HEAD/LICENSE -------------------------------------------------------------------------------- /Mathematica/ScienceNotebooks/AnkiExporter/AnkiExporter.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masteranza/ScienceNotebooks/HEAD/Mathematica/ScienceNotebooks/AnkiExporter/AnkiExporter.wl -------------------------------------------------------------------------------- /Mathematica/ScienceNotebooks/AnkiExporter/Kernel/init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masteranza/ScienceNotebooks/HEAD/Mathematica/ScienceNotebooks/AnkiExporter/Kernel/init.m -------------------------------------------------------------------------------- /Mathematica/ScienceNotebooks/FrontEnd/StyleSheets/Science.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masteranza/ScienceNotebooks/HEAD/Mathematica/ScienceNotebooks/FrontEnd/StyleSheets/Science.nb -------------------------------------------------------------------------------- /Mathematica/ScienceNotebooks/Kernel/init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masteranza/ScienceNotebooks/HEAD/Mathematica/ScienceNotebooks/Kernel/init.m -------------------------------------------------------------------------------- /Mathematica/ScienceNotebooks/PacletInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masteranza/ScienceNotebooks/HEAD/Mathematica/ScienceNotebooks/PacletInfo.m -------------------------------------------------------------------------------- /Mathematica/ScienceNotebooks/ScienceNotebooks.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masteranza/ScienceNotebooks/HEAD/Mathematica/ScienceNotebooks/ScienceNotebooks.wl -------------------------------------------------------------------------------- /Mathematica/ScienceNotebooks/TeXExporter/Kernel/init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masteranza/ScienceNotebooks/HEAD/Mathematica/ScienceNotebooks/TeXExporter/Kernel/init.m -------------------------------------------------------------------------------- /Mathematica/ScienceNotebooks/TeXExporter/TeXExporter.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masteranza/ScienceNotebooks/HEAD/Mathematica/ScienceNotebooks/TeXExporter/TeXExporter.wl -------------------------------------------------------------------------------- /Mathematica/_Build/Build.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masteranza/ScienceNotebooks/HEAD/Mathematica/_Build/Build.nb -------------------------------------------------------------------------------- /Mathematica/_Build/dir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masteranza/ScienceNotebooks/HEAD/Mathematica/_Build/dir.png -------------------------------------------------------------------------------- /Mathematica/_Build/screen0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masteranza/ScienceNotebooks/HEAD/Mathematica/_Build/screen0.png -------------------------------------------------------------------------------- /Mathematica/_Build/screen1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masteranza/ScienceNotebooks/HEAD/Mathematica/_Build/screen1.png -------------------------------------------------------------------------------- /Mathematica/_Build/screen2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masteranza/ScienceNotebooks/HEAD/Mathematica/_Build/screen2.png -------------------------------------------------------------------------------- /Mathematica/_Build/window0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masteranza/ScienceNotebooks/HEAD/Mathematica/_Build/window0.png -------------------------------------------------------------------------------- /Mathematica/_Build/window1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masteranza/ScienceNotebooks/HEAD/Mathematica/_Build/window1.png -------------------------------------------------------------------------------- /Mathematica/_Build/window2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masteranza/ScienceNotebooks/HEAD/Mathematica/_Build/window2.gif -------------------------------------------------------------------------------- /Mathematica/_Build/window3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masteranza/ScienceNotebooks/HEAD/Mathematica/_Build/window3.gif -------------------------------------------------------------------------------- /Mathematica/_Build/window4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masteranza/ScienceNotebooks/HEAD/Mathematica/_Build/window4.gif -------------------------------------------------------------------------------- /Mathematica/_Build/window5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masteranza/ScienceNotebooks/HEAD/Mathematica/_Build/window5.png -------------------------------------------------------------------------------- /Old/Applications/ScienceReport/Kernel/init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masteranza/ScienceNotebooks/HEAD/Old/Applications/ScienceReport/Kernel/init.m -------------------------------------------------------------------------------- /Old/Applications/ScienceReport/MakeDoc.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masteranza/ScienceNotebooks/HEAD/Old/Applications/ScienceReport/MakeDoc.nb -------------------------------------------------------------------------------- /Old/Applications/ScienceReport/PacletInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masteranza/ScienceNotebooks/HEAD/Old/Applications/ScienceReport/PacletInfo.m -------------------------------------------------------------------------------- /Old/Applications/ScienceReport/ScienceReport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masteranza/ScienceNotebooks/HEAD/Old/Applications/ScienceReport/ScienceReport.m -------------------------------------------------------------------------------- /Old/Applications/ScienceReport/ScienceReport.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masteranza/ScienceNotebooks/HEAD/Old/Applications/ScienceReport/ScienceReport.nb -------------------------------------------------------------------------------- /Old/Autoload/AnkiExporter/AnkiExporter.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masteranza/ScienceNotebooks/HEAD/Old/Autoload/AnkiExporter/AnkiExporter.wl -------------------------------------------------------------------------------- /Old/Autoload/AnkiExporter/FrontEnd/StyleSheets/Science.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masteranza/ScienceNotebooks/HEAD/Old/Autoload/AnkiExporter/FrontEnd/StyleSheets/Science.nb -------------------------------------------------------------------------------- /Old/Autoload/AnkiExporter/Kernel/init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masteranza/ScienceNotebooks/HEAD/Old/Autoload/AnkiExporter/Kernel/init.m -------------------------------------------------------------------------------- /Old/Autoload/AnkiExporter/PacletInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masteranza/ScienceNotebooks/HEAD/Old/Autoload/AnkiExporter/PacletInfo.m -------------------------------------------------------------------------------- /Old/Autoload/PackageUtils/PackageUtils.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masteranza/ScienceNotebooks/HEAD/Old/Autoload/PackageUtils/PackageUtils.wl -------------------------------------------------------------------------------- /Old/Autoload/PackageUtils/PacletInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masteranza/ScienceNotebooks/HEAD/Old/Autoload/PackageUtils/PacletInfo.m -------------------------------------------------------------------------------- /Old/Autoload/TeXExporter/PackageUtils.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masteranza/ScienceNotebooks/HEAD/Old/Autoload/TeXExporter/PackageUtils.wl -------------------------------------------------------------------------------- /Old/Autoload/TeXExporter/PacletInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masteranza/ScienceNotebooks/HEAD/Old/Autoload/TeXExporter/PacletInfo.m -------------------------------------------------------------------------------- /Old/Kernel/init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masteranza/ScienceNotebooks/HEAD/Old/Kernel/init.m -------------------------------------------------------------------------------- /Old/OtherShortcuts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masteranza/ScienceNotebooks/HEAD/Old/OtherShortcuts -------------------------------------------------------------------------------- /Old/SystemFiles/FrontEnd/StyleSheets/Science.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masteranza/ScienceNotebooks/HEAD/Old/SystemFiles/FrontEnd/StyleSheets/Science.nb -------------------------------------------------------------------------------- /Old/SystemFiles/FrontEnd/TextResources/Macintosh/KeyEventTranslations.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masteranza/ScienceNotebooks/HEAD/Old/SystemFiles/FrontEnd/TextResources/Macintosh/KeyEventTranslations.tr -------------------------------------------------------------------------------- /Old/SystemFiles/FrontEnd/TextResources/MiscExpressions.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masteranza/ScienceNotebooks/HEAD/Old/SystemFiles/FrontEnd/TextResources/MiscExpressions.tr -------------------------------------------------------------------------------- /Old/Using Mathematica-Anki.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masteranza/ScienceNotebooks/HEAD/Old/Using Mathematica-Anki.pdf -------------------------------------------------------------------------------- /Old/WorkInProgress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masteranza/ScienceNotebooks/HEAD/Old/WorkInProgress -------------------------------------------------------------------------------- /Old/callingFrontEnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masteranza/ScienceNotebooks/HEAD/Old/callingFrontEnd -------------------------------------------------------------------------------- /Old/hardlinker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masteranza/ScienceNotebooks/HEAD/Old/hardlinker.sh -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masteranza/ScienceNotebooks/HEAD/README.md -------------------------------------------------------------------------------- /Resources/latinmodern-math.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masteranza/ScienceNotebooks/HEAD/Resources/latinmodern-math.otf -------------------------------------------------------------------------------- /Resources/lmroman17-regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masteranza/ScienceNotebooks/HEAD/Resources/lmroman17-regular.otf -------------------------------------------------------------------------------- /Zotero/translators/zotselect-mathematica.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masteranza/ScienceNotebooks/HEAD/Zotero/translators/zotselect-mathematica.js -------------------------------------------------------------------------------- /ack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masteranza/ScienceNotebooks/HEAD/ack.md --------------------------------------------------------------------------------