1

i have a table of 3 pages in the word document, and it will be very time consuming to copy and paste the individual entities from word to texstudio, please guide me any short cut to manage all these stuff.

nid
  • 11

2 Answers2

1

A basic solution within TeXstudio is this macro:

%SCRIPT
text = app.clipboard
text = text.replace(/\t/g, " & ")
text = text.replace(/\n/g, " \\\\\n")
cursor.insertText(text)

Of course, you could extend it to add the surrounding tabular environment if required.

Tim Hoffmann
  • 11,159
0
  1. Export it into Excel.

  2. Then import it into Lyx.

  3. Export the result to LaTeX.

    Then edit the table to get the desired result.

Hamid
  • 1,094