ちょっと試してみました。(でも、写真は携帯じゃなくて、一眼レフで撮ったもの。カメラで撮影→Macでレタッチ→(mailで転送)→携帯→(mailで転送)→blog...てな経路)
以前はタイトルのエンコードが合わなくて「文字化け」状態になってしまってましたが、もう大丈夫ですね。よしよし(^_^
Ein einfaches geometrisches Beispiel veranschauliche dies. Um den Flächeninhalt aller gradlinigen Figuren zu bestimmen und zu vergleichen, löst man sie in Dreiecke auf. Das Dreieck selbst reduziert man auf einen von seiner sichtbaren Figur ganz verschiednen Ausdruck - das halbe Produkt seiner Grundlinie mit seiner Höhe. Ebenso sind die Tauschwerte der Waren zu reduzieren auf ein Gemeinsames, wovon sie ein Mehr oder Minder darstellen.
To elucidate this point I shall recur to a very simple geometrical illustration. In comparing the areas of triangles of all possible forms and magnitudes, or comparing triangles with rectangles, or any other rectilinear figure, how do we proceed? We reduce the area of any triangle whatever to an expression quite different from its visible form. Having found from the nature of the triangle that its area is equal to half the product of its base by its height, we can then compare the different values of all sorts of triangles, and of all rectilinear figures whatever, because all of them may be resolved into a certain number of triangles.


書籍・図画・碑帖をみな本といふ。

文籍を諷誦するをみな読といふ。一字一句に就きて細心に誦過するを謂ふなり。ふむふむ、音読が基本なんですね。しかも、一字一句細心にと。心しておきましょう。
$ iconv -f UTF-16LE hoge.doc | gsed -e 's/[^[:print:][:space:]]//g' > hoge.txtちょっとゴミは残りますがご勘弁。 (?_?;;
moria:~ tac$ cd Desktop/
moria:~/Desktop tac$ mkdir docx
moria:~/Desktop tac$ cd docx/
moria:~/Desktop/docx tac$ unzip ../hoge.docx
Archive: ../hoge.docx
inflating: [Content_Types].xml
inflating: _rels/.rels
inflating: word/_rels/document.xml.rels
inflating: word/document.xml
inflating: word/theme/theme1.xml
extracting: docProps/thumbnail.jpeg
inflating: word/settings.xml
inflating: word/fontTable.xml
inflating: word/webSettings.xml
inflating: docProps/core.xml
inflating: word/styles.xml
inflating: docProps/app.xml
moria:~/Desktop/docx tac$ cd word/
moria:~/Desktop/docx/word tac$ gsed -e 's#</w:p>#\n#g; s#<[^>]*>##g' document.xml > document.txt
これでもとのWord文書のテキストが「document.txt」に書き出されているはず(UTF-8テキストです)。GNU sed version 4.1.5です。
:%s#</w:p>##^M#g
:%s#<[^>]*>##g
ってやってみてください。なお、「^M」は「Ctrl+V Ctrl+M」ですけど、vi遣いには言わずもがなですな (^_^)