A B C D E F G H I J K L M N O P Q R S T U V W X Z

Word Dokumente in mehrere Teile aufteilen und speichern

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

WP Offload Media Lite for Amazon S3, DigitalOcean Spaces, and Google Cloud Storage

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

XML and TEI Publisher Helpful Literature and Websites

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