I have this multi page word document file which is consisted of a table with two columns. the left column is an English word in front of which in the left column the Persian translation is provided. I want to include this table in my latex document without using of converters. Is there anyway?(maybe by using datatool!)
So far what i could find in the web is as follow:
\documentclass{article}
\begin{filecontents*}{table.csv}
English ,فارسی
Euclidean geometry, هندسۀ اقلیدسی
Hippocrates, بقراط
Poetica,بوطیقا
Plato, افلاطون
Al-Hazem, ابن رشد
\end{filecontents*}
\usepackage{xepersian}
\settextfont{Tahoma}
\usepackage{csvsimple}
\begin{document}
\csvautotabular{table.csv}
\end{document}
THe folowing image is the XeLaTex output:
this way it's easier but I still have to copy one by one into my csv file the contents of each column.
now, if that direct inclusion of a word table into latex was possible I would like to know about it. If not there are three minor questions concerning the above code:
As you see the Persian and English must swap their positions. Persian in the left and English in the right position.
How can I add another column to include in it an automatic produced number for each row?
How can I add my data in
csvfile, for each line only one Persian and one English entry but make LaTeX produce a four column table so that the space used for the entire table will be reduced in half?
Sorry, I didn't know what I could do about the font.
P.S. I changed the font to Tahoma.

English ,فارسی,English ,فارسیin the first row and subsequently write four words in every line to have 4 columns. In this above form[the attached image] half of the page remains empty. You can assume that I want latex to make 2 tables in each page from the data file with a consistent numbering. I mean for example if the first table finishes with 20 the next table begin with 21 and the table on the next page begin with 41 and so on. – nima Dec 26 '15 at 15:40word, wordto your question. – Alenanno Dec 26 '15 at 16:36