如何使用说明替换Libreoffice中的所有图像


12

我有一个很长的文档,其中包含许多使用扩展名TexMaths创建的svg图像。此扩展程序使用乳胶安装来创建输入方程式(或方程式集)的svg图像。每个方程式(或方程组)的乳胶代码都作为其描述的一部分嵌入到图像中。可以通过右键单击svg图像并选择选项“描述”来访问这样的描述。

我想通过嵌入的描述使用合适的宏替换所有的svg图像。

例如来自

爱因斯坦著名的方程式[svg嵌入式方程式:E = mc 2 ]告诉我们,质量可以转换为能量,反之亦然。

爱因斯坦著名的方程E = mc ^ 2,告诉我们质量可以转换为能量,反之亦然。

这将允许我手动将包含大量TexMaths方程的odt文件转换为LaTeX。


4
看一下如何在LibreOffice Writer中删除文档中的所有图像的答案。它会为您提供想要做的基础知识,但是您需要对其进行一些调整。如果您无法进行所需的更改,我也许可以做到;但几天后我将无法解决。
chaskes 2014年

4
好吧,很多。实际上,在问问题之前,我看了上面给定的帖子。总体计划是循环浏览每个svg图像。对于每个图像,请阅读说明并删除不必要的字符,以使剩下的只是一个纯等式或类似\ begin {} .. \ end {}的文字。然后删除svg图像。我现在感到困惑的是将文本放置在已删除图像的位置的问题。顺便说一下,大多数内容都被锚定为字符。
user30131

只是一个想法,尝试将graphmonkey与libre-office有关图标/图像的源代码部分结合起来?
dschinn1001 2014年

@ dschinn1001谢谢,顺便说一句TexMaths是公式的插件。您能否解释更多。我无法证明graphmonky如何将TexMaths绘制对象转换为其描述。换句话说,我以前没有听说过graphmonkey。它是否有选择,您认为它可能导致解决问题?
user.dz 2014年

Answers:


2

这是不使用宏的另一种方式。由于.odt文件基本上只是压缩文件,而主文件是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. .odttmp文件提取到文件夹,例如texmath_test.odt

    7z x -otmp texmath_test.odt
    
  3. <draw:g></draw:g>用其描述(按<svg:desc></svg:desc>标签保留)替换TexMath图像(按标签保留)

    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
    

参考文献:

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.