Hi converting from pdf the text in docx file is unformatted in docx output file. this the code to convert from pdf to docx.
string fileSource = @"C:\temp\xxx.pdf";
Aspose.Words.Document x = new Aspose.Words.Document(fileSource);
string fileName = Path.ChangeExtension(fileSource, "docx");
x.Save(fileName);
is there a way to upload the source pdf file so you can try the conversion?