Libreofficeのすべての画像を説明で置き換える方法


12

拡張TexMathsを使用して作成された多数のsvg画像を含む非常に長いドキュメントがあります。この拡張機能は、ラテックスインストールを使用して、入力された方程式(または方程式のセット)のsvgイメージを作成します。各方程式(または方程式のセット)のラテックスコードは、その説明の一部として画像に埋め込まれています。このような説明にアクセスするには、svg画像を右クリックして、[説明]オプションを選択します。

適切なマクロを使用して、埋め込まれた説明ですべてのsvg画像を置き換えたいと思います。

例えば

アインシュタインの有名な方程式、[svg埋め込み方程式:E = mc 2 ]は、質量をエネルギーに、またはその逆に変換できることを示しています。

アインシュタインの有名な方程式、E = mc ^ 2は、質量をエネルギーに、またはその逆に変換できることを示しています。

これにより、多数のTexMaths方程式を含むodtファイルをLaTeXに手動で変換できます。


4
LibreOffice Writerでドキュメントのすべての画像を削除する方法の回答をご覧ください。。やりたいことの基本を教えてくれますが、少し調整する必要があります。必要な変更を行うことができない場合、私はそれを行うことができるかもしれません。しかし、私は数日間それに到達することはできません。
chaskes

4
まあ、多くのtnx。実際、私は質問をする前に上記の投稿を見ました。一般的な計画は、各svgイメージを通過するループを作成することです。各画像について説明を読み、不要な文字を削除して、純粋な方程式または\ begin {} .. \ end {}のようなものを残します。次に、svgイメージを削除します。今私が困惑しているのは、削除された画像の場所にテキストを置くことです。そのほとんどは、キャラクターとして固定されています。
user30131

ちょうどアイデア、graphmonkeyをlibre-officeのアイコン/画像に関するソースコード部分と組み合わせてみてください。
dschinn1001 14年

@ dschinn1001ありがとう、BTW TexMathsは数式のプラグインです。もっと説明してください。graphmonkyがTexMaths描画オブジェクトをその説明に変換する方法を接着剤で作ることはできませんでした。言い換えれば、graphmonkeyについて聞いたことがありません。それにはオプションがありますか、あなたはそれが問題を解決することにつながるかもしれないと思いましたか?
user.dz 14年

回答:


2

これは、マクロを使用しない別の方法です。.odtファイルには、基本的にはZIPファイルで、メインファイルはXMLです。

  1. XMLスタイルシートを作成する texmath_raw_equation.xslt

    リンクブレーキの場合に備えて、ここに全内容があります。

    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:rpt="http://openoffice.org/2005/report" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:officeooo="http://openoffice.org/2009/office" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:css3t="http://www.w3.org/TR/css3-text/" version="1.0">
    
        <xsl:template match="@* | node()">
          <xsl:copy>
            <xsl:apply-templates select="@* | node()"/>
          </xsl:copy>
        </xsl:template>
    
        <xsl:template match="draw:g">
            <xsl:value-of select="svg:desc"/>
        </xsl:template>
    
    </xsl:stylesheet>
    
  2. .odtファイルをtmpフォルダーに抽出します、例texmath_test.odt

    7z x -otmp texmath_test.odt
    
  3. TexMathイメージ(<draw:g></draw:g>タグで保持)をその説明(<svg:desc></svg:desc>タグで保持)に置き換えます

    xsltproc -o content.xml texmath_raw_equation.xslt tmp/content.xml
    mv content.xml tmp/content.xml
    
  4. 新しい.odtファイルに圧縮して戻す

    cd tmp
    7z a -tzip ../texmath_test_new.odt *
    cd ..
    rm -r tmp
    

参照:

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.