Giter Site home page Giter Site logo

Comments (1)

jkuczm avatar jkuczm commented on September 18, 2024

Currently builtin TeX conversion, of boxes embedded in strings, is not modified by TeXUtilities package.
Builtin conversion works by changing string-embedded boxes to ordinary boxes, and converting those ordinary boxes.
Converter never sees expressions represented by those boxes, that's why Format definitions, which are set at "expression level", are not used.

We can modify one of definitions of relevant converting function, to force reinterpretation, of string-embedded boxes, as expressions, then convert those expressions.

Import@"https://raw.githubusercontent.com/jkuczm/MathematicaTeXUtilities/master/NoInstall.m"

System`Convert`TeXFormDump`maketex[
  str_String?System`Convert`CommonDump`EmbeddedStringWithLinearSyntaxQ
] := (
  System`Convert`CommonDump`DebugPrint@"------------------------------------";
  System`Convert`CommonDump`DebugPrint@"maketex[str_String?EmbeddedStringWithLinearSyntaxQ]";
  System`Convert`CommonDump`DebugPrint["str: ", str];
  ToExpression[
    System`Convert`CommonDump`RemoveLinearSyntax[str, Recursive -> True],
    StandardForm,
    Function[, Convert`TeX`ExpressionToTeX@Unevaluated@#, HoldAllComplete]
  ]
)

Format[OverVector[x__], TeXForm] := TeXCommand["vec", {x}]

Now both:

TeXForm[\!\(\*OverscriptBox[\(x\), \(\[RightVector]\)]\)]

and

TeXForm["\!\(\*OverscriptBox[\(x\), \(\[RightVector]\)]\)"]

should give \vec{x}.

from mathematicatexutilities.

Related Issues (4)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.