Auf dieser Seite gibt es VBA Code, mit dem man Word Dokumente in unterkapitel etc. zerschneiden und speichern kann. Funktioniert mit Word 2016:
https://de.extendoffice.com/documents/word/966-word-split-documents-into-multiple-documents.html
Dieser Code funktioniert z.B. mit dem Trennzeichen „///“
Sub SplitNotes(delim As String, strFilename As String)
Dim doc As Document
Dim arrNotes
Dim I As Long
Dim X As Long
Dim Response As Integer
arrNotes = Split(ActiveDocument.Range, delim)
Response = MsgBox(„This will split the document into “ & UBound(arrNotes) + 1 & “ sections.Do you wish to proceed?“, 4)
If Response = 7 Then Exit Sub
For I = LBound(arrNotes) To UBound(arrNotes)
If Trim(arrNotes(I)) <> „“ Then
X = X + 1
Set doc = Documents.Add
doc.Range = arrNotes(I)
doc.SaveAs ThisDocument.Path & „\“ & strFilename & Format(X, „000“)
doc.Close True
End If
Next I
End Sub
Sub test()
‚delimiter & filename
SplitNotes „///“, „Notes “
End Sub
https://teipublisher.com/exist/apps/tei-publisher/test/test.docx.xml
Word to TEI
This is a sample document to test conversion of word docx to TEI using the TEI processing model. It was generated by uploading the word document located in
data/doc/test.docx in your local TEI Publisher installation. You can also download it from the
TEI Publisher website , edit it and upload it via the upload panel on the start page of your local TEI Publisher.
This plugin automatically copies images, videos, documents, and any other media added through WordPress‘ media uploader to Amazon S3, DigitalOcean Spaces or Google Cloud Storage. It then automatically replaces the URL to each media file with their respective Amazon S3, DigitalOcean Spaces or Google Cloud Storage URL or, if you have configured Amazon CloudFront or another CDN with or without a custom domain, that URL instead. Image thumbnails are also copied to the bucket and delivered through the correct remote URL.
Uploading files directly to your Amazon S3, DigitalOcean Spaces or Google Cloud Storage account is not currently supported by this plugin. They are uploaded to your server first, then copied to the bucket. There is an option to automatically remove the files from your server once they are copied to the bucket however.
WP Offload Media Lite for Amazon S3, DigitalOcean Spaces, and Google Cloud Storage
Helpful Literature and Websites (collected by Wolfgang Meier TEI Publisher Course) at https://github.com/eeditiones/workshop
Working with TEI Publisher requires some knowledge of TEI, basic XPath and a little CSS. If you don’t know any XPath yet, we recommend to read the short introduction linked below.
XML
CSS
XPath
TEI
TEI Processing Model
XProc (von englisch XML Processing) ist eine vom W3C standardisierte XML-Sprache zur Definition von Verarbeitungsketten für XML-Dokumente (sogenannter XML-Pipelines).
https://www.w3.org/TR/xproc/