Code Monkey home page Code Monkey logo

acutemsword's Introduction

Amin's Acute MSWord VBA macros

My Microsoft Word VBA macros.

MathType2Word

Convert Mathtype Equations to Microsoft Word Equations.

This is similar to what GrindEQ, which is a commercial software does.

It converts both inline and full equations

Usage:

  • Select the part of the document you want to convert its equations.
  • Then run the macro.

codePaste

to paste a code snippet into MS word and make its background gray

pasteSelected

Paste a text and keep the pasted text selected

Originally by Greg Maxey

using the Macros

Follow the instructions here for importing the macros:

acutemsword's People

Contributors

aminya avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

acutemsword's Issues

Select the result of replacement

It has an issue which puts [] around full equations. stackoverflow question: https://stackoverflow.com/questions/57032924/select-the-result-of-replacement-word-macro

I want to get and select the result of a find and replacement macro and do some operations on it.

Say, this is the text: ‎\[abc\]‎, I want to convert it to abc and then select abc.

Here is the code:

    Selection.Find.ClearFormatting
    Selection.Find.Replacement.ClearFormatting
    With Selection.Find
        .Text = "(\\\[)(*)(\\\])"
        .Replacement.Text = "\2"
        .Forward = True
        .Wrap = wdFindContinue
        .Format = False
        .MatchCase = False
        .MatchWholeWord = False
        .MatchKashida = False
        .MatchDiacritics = False
        .MatchAlefHamza = False
        .MatchControl = False
        .MatchAllWordForms = False
        .MatchSoundsLike = False
        .MatchWildcards = True
    End With
    Selection.Find.Execute Replace:=wdReplaceAll
    Selection.Cut

Here in the last line, Selection.Cut gives an error that the Selection is empty.
I want to select the output of the replacement and Cut it.

From my repository Amin MSWord VBA macros

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.