├── .MathematicaResources ├── .gitignore ├── .project ├── CellsToTeX ├── CellsToTeX.m ├── Kernel │ └── init.m └── Tests │ ├── Integration │ ├── $cellStyleOptions.mt │ ├── $linearBoxesToTeX.mt │ ├── Association.mt │ ├── AssociationQ.mt │ ├── CellToTeX.mt │ ├── CellsToTeXPreamble.mt │ ├── FirstCase.mt │ ├── Lookup.mt │ ├── annotateSyntaxProcessor.mt │ ├── boxesToString.mt │ ├── extractCellOptionsProcessor.mt │ ├── fullNotebooks.mt │ ├── labelToKeyVal.mt │ ├── mmaCellGraphicsProcessor.mt │ ├── processorDataLookup.mt │ ├── suite.mt │ └── toInputFormProcessor.mt │ ├── Unit │ ├── CellToTeX.mt │ ├── CellsToTeXException.mt │ ├── addIncorrectArgsDefinition.mt │ ├── annotationRulesToBoxRules.mt │ ├── annotationTypesToKeyVal.mt │ ├── boxRulesProcessor.mt │ ├── boxesToInputFormBoxes.mt │ ├── boxesToString.mt │ ├── boxesToTeXProcessor.mt │ ├── catchException.mt │ ├── cellLabelProcessor.mt │ ├── charToTeX.mt │ ├── commonestAnnotationTypes.mt │ ├── dataLookup.mt │ ├── defaultAnnotationType.mt │ ├── defaultOrFirst.mt │ ├── exportProcessor.mt │ ├── extractMessageLink.mt │ ├── extractStyleOptions.mt │ ├── fileNameGenerator.mt │ ├── formatToExtension.mt │ ├── handleException.mt │ ├── headRulesToBoxRules.mt │ ├── labelToCellData.mt │ ├── mergeAdjacentTeXCommands.mt │ ├── mergeAdjacentTeXDelims.mt │ ├── messageLinkProcessor.mt │ ├── mmaCellProcessor.mt │ ├── optionValueToTeX.mt │ ├── optionsToTeX.mt │ ├── prettifyPatterns.mt │ ├── rethrowException.mt │ ├── suite.mt │ ├── templateBoxDisplayBoxes.mt │ ├── texMathReplacementRegister.mt │ ├── throwException.mt │ └── trackCellIndexProcessor.mt │ ├── Utilities.m │ └── suite.mt ├── LICENSE ├── NoInstall.m ├── PacletInfo.m └── README.md /.MathematicaResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/.MathematicaResources -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/.project -------------------------------------------------------------------------------- /CellsToTeX/CellsToTeX.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/CellsToTeX.m -------------------------------------------------------------------------------- /CellsToTeX/Kernel/init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Kernel/init.m -------------------------------------------------------------------------------- /CellsToTeX/Tests/Integration/$cellStyleOptions.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Tests/Integration/$cellStyleOptions.mt -------------------------------------------------------------------------------- /CellsToTeX/Tests/Integration/$linearBoxesToTeX.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Tests/Integration/$linearBoxesToTeX.mt -------------------------------------------------------------------------------- /CellsToTeX/Tests/Integration/Association.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Tests/Integration/Association.mt -------------------------------------------------------------------------------- /CellsToTeX/Tests/Integration/AssociationQ.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Tests/Integration/AssociationQ.mt -------------------------------------------------------------------------------- /CellsToTeX/Tests/Integration/CellToTeX.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Tests/Integration/CellToTeX.mt -------------------------------------------------------------------------------- /CellsToTeX/Tests/Integration/CellsToTeXPreamble.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Tests/Integration/CellsToTeXPreamble.mt -------------------------------------------------------------------------------- /CellsToTeX/Tests/Integration/FirstCase.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Tests/Integration/FirstCase.mt -------------------------------------------------------------------------------- /CellsToTeX/Tests/Integration/Lookup.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Tests/Integration/Lookup.mt -------------------------------------------------------------------------------- /CellsToTeX/Tests/Integration/annotateSyntaxProcessor.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Tests/Integration/annotateSyntaxProcessor.mt -------------------------------------------------------------------------------- /CellsToTeX/Tests/Integration/boxesToString.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Tests/Integration/boxesToString.mt -------------------------------------------------------------------------------- /CellsToTeX/Tests/Integration/extractCellOptionsProcessor.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Tests/Integration/extractCellOptionsProcessor.mt -------------------------------------------------------------------------------- /CellsToTeX/Tests/Integration/fullNotebooks.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Tests/Integration/fullNotebooks.mt -------------------------------------------------------------------------------- /CellsToTeX/Tests/Integration/labelToKeyVal.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Tests/Integration/labelToKeyVal.mt -------------------------------------------------------------------------------- /CellsToTeX/Tests/Integration/mmaCellGraphicsProcessor.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Tests/Integration/mmaCellGraphicsProcessor.mt -------------------------------------------------------------------------------- /CellsToTeX/Tests/Integration/processorDataLookup.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Tests/Integration/processorDataLookup.mt -------------------------------------------------------------------------------- /CellsToTeX/Tests/Integration/suite.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Tests/Integration/suite.mt -------------------------------------------------------------------------------- /CellsToTeX/Tests/Integration/toInputFormProcessor.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Tests/Integration/toInputFormProcessor.mt -------------------------------------------------------------------------------- /CellsToTeX/Tests/Unit/CellToTeX.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Tests/Unit/CellToTeX.mt -------------------------------------------------------------------------------- /CellsToTeX/Tests/Unit/CellsToTeXException.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Tests/Unit/CellsToTeXException.mt -------------------------------------------------------------------------------- /CellsToTeX/Tests/Unit/addIncorrectArgsDefinition.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Tests/Unit/addIncorrectArgsDefinition.mt -------------------------------------------------------------------------------- /CellsToTeX/Tests/Unit/annotationRulesToBoxRules.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Tests/Unit/annotationRulesToBoxRules.mt -------------------------------------------------------------------------------- /CellsToTeX/Tests/Unit/annotationTypesToKeyVal.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Tests/Unit/annotationTypesToKeyVal.mt -------------------------------------------------------------------------------- /CellsToTeX/Tests/Unit/boxRulesProcessor.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Tests/Unit/boxRulesProcessor.mt -------------------------------------------------------------------------------- /CellsToTeX/Tests/Unit/boxesToInputFormBoxes.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Tests/Unit/boxesToInputFormBoxes.mt -------------------------------------------------------------------------------- /CellsToTeX/Tests/Unit/boxesToString.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Tests/Unit/boxesToString.mt -------------------------------------------------------------------------------- /CellsToTeX/Tests/Unit/boxesToTeXProcessor.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Tests/Unit/boxesToTeXProcessor.mt -------------------------------------------------------------------------------- /CellsToTeX/Tests/Unit/catchException.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Tests/Unit/catchException.mt -------------------------------------------------------------------------------- /CellsToTeX/Tests/Unit/cellLabelProcessor.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Tests/Unit/cellLabelProcessor.mt -------------------------------------------------------------------------------- /CellsToTeX/Tests/Unit/charToTeX.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Tests/Unit/charToTeX.mt -------------------------------------------------------------------------------- /CellsToTeX/Tests/Unit/commonestAnnotationTypes.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Tests/Unit/commonestAnnotationTypes.mt -------------------------------------------------------------------------------- /CellsToTeX/Tests/Unit/dataLookup.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Tests/Unit/dataLookup.mt -------------------------------------------------------------------------------- /CellsToTeX/Tests/Unit/defaultAnnotationType.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Tests/Unit/defaultAnnotationType.mt -------------------------------------------------------------------------------- /CellsToTeX/Tests/Unit/defaultOrFirst.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Tests/Unit/defaultOrFirst.mt -------------------------------------------------------------------------------- /CellsToTeX/Tests/Unit/exportProcessor.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Tests/Unit/exportProcessor.mt -------------------------------------------------------------------------------- /CellsToTeX/Tests/Unit/extractMessageLink.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Tests/Unit/extractMessageLink.mt -------------------------------------------------------------------------------- /CellsToTeX/Tests/Unit/extractStyleOptions.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Tests/Unit/extractStyleOptions.mt -------------------------------------------------------------------------------- /CellsToTeX/Tests/Unit/fileNameGenerator.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Tests/Unit/fileNameGenerator.mt -------------------------------------------------------------------------------- /CellsToTeX/Tests/Unit/formatToExtension.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Tests/Unit/formatToExtension.mt -------------------------------------------------------------------------------- /CellsToTeX/Tests/Unit/handleException.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Tests/Unit/handleException.mt -------------------------------------------------------------------------------- /CellsToTeX/Tests/Unit/headRulesToBoxRules.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Tests/Unit/headRulesToBoxRules.mt -------------------------------------------------------------------------------- /CellsToTeX/Tests/Unit/labelToCellData.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Tests/Unit/labelToCellData.mt -------------------------------------------------------------------------------- /CellsToTeX/Tests/Unit/mergeAdjacentTeXCommands.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Tests/Unit/mergeAdjacentTeXCommands.mt -------------------------------------------------------------------------------- /CellsToTeX/Tests/Unit/mergeAdjacentTeXDelims.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Tests/Unit/mergeAdjacentTeXDelims.mt -------------------------------------------------------------------------------- /CellsToTeX/Tests/Unit/messageLinkProcessor.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Tests/Unit/messageLinkProcessor.mt -------------------------------------------------------------------------------- /CellsToTeX/Tests/Unit/mmaCellProcessor.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Tests/Unit/mmaCellProcessor.mt -------------------------------------------------------------------------------- /CellsToTeX/Tests/Unit/optionValueToTeX.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Tests/Unit/optionValueToTeX.mt -------------------------------------------------------------------------------- /CellsToTeX/Tests/Unit/optionsToTeX.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Tests/Unit/optionsToTeX.mt -------------------------------------------------------------------------------- /CellsToTeX/Tests/Unit/prettifyPatterns.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Tests/Unit/prettifyPatterns.mt -------------------------------------------------------------------------------- /CellsToTeX/Tests/Unit/rethrowException.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Tests/Unit/rethrowException.mt -------------------------------------------------------------------------------- /CellsToTeX/Tests/Unit/suite.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Tests/Unit/suite.mt -------------------------------------------------------------------------------- /CellsToTeX/Tests/Unit/templateBoxDisplayBoxes.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Tests/Unit/templateBoxDisplayBoxes.mt -------------------------------------------------------------------------------- /CellsToTeX/Tests/Unit/texMathReplacementRegister.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Tests/Unit/texMathReplacementRegister.mt -------------------------------------------------------------------------------- /CellsToTeX/Tests/Unit/throwException.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Tests/Unit/throwException.mt -------------------------------------------------------------------------------- /CellsToTeX/Tests/Unit/trackCellIndexProcessor.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Tests/Unit/trackCellIndexProcessor.mt -------------------------------------------------------------------------------- /CellsToTeX/Tests/Utilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Tests/Utilities.m -------------------------------------------------------------------------------- /CellsToTeX/Tests/suite.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/CellsToTeX/Tests/suite.mt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/LICENSE -------------------------------------------------------------------------------- /NoInstall.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/NoInstall.m -------------------------------------------------------------------------------- /PacletInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/PacletInfo.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkuczm/MathematicaCellsToTeX/HEAD/README.md --------------------------------------------------------------------------------