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.
Asked
Active
Viewed 1,141 times
1
2 Answers
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
</td><td>to&and</tr>to\\and you are 90% of the way to having the table in tex syntax. – David Carlisle May 07 '16 at 18:39longtable. – Werner May 07 '16 at 18:45