Is onlyoffice support merge two word document? - merge

I want merge two word document createed by onlyoffice, support or not ?

Related

Joining two different word documents

I am using Microsoft Word. I have 2 different Word documents. I would like to add the first word document (coverpage) to the beginning of the other word document. Is there a way to do that easily?
Kind regards

OpenXML Word Document Split

I need help in splitting the word document using OpenXML.
I am trying to split the large word document into multiple word documents with single page in each document. I have to split the word document using OpenXML SDK 2.5 (no third party dlls are allowed). Documents after splitting should contains all the styling and formatting present in original document.
Pages do not exist in the OpenXML format until they are rendered by a word processor.
The document may contain <w:lastRenderedPageBreak/> nodes, which hint at where page breaks occurred the last time the document was rendered though not necessarily where the page break will always occur.
If you have control over the construction of the documents, you can use inline notations to mark where you want to split. For instance, its a straightforward operation to locate and segment on heading levels to split a document of chapters into chapter documents.

Mongodb Text Search Processed Query

I'm using the text search feature and I couldn't find a way to get the stemmed terms in the query. Is there a way to also return the list of words in the stemmed form together with the query results and also the parts of the document that matched the result? This would be meaningful to understand and identify which part of the document matches.
Cheers!
As of MongoDB 2.6, the only meta information about the text search that can be used is a score indicating the strength of the match. You can submit a ticket on the Core Server project to request this feature (as I looked and I don't think one exists at the moment).

How to organize my documents?

I'm pretty new to mongodb (only work with it for one small project) and I wanted to have your tips on how to organize my documents. My brain is not (yet) nosql formatted.
I have a collection storing all kind of informations and I want to add tags to it. There will be 1-5 tags by document. I want to be able to search by tags (among other things), display all the documents for 1 or more given tags, know the number of documents by tag.
What do you think is the best way to approach this simple problem ? should I give it his own collection ? should I embed it ?
How would you do ?
Thanks
Embed the tags in the document. You can search on embedded arrays and you can index them.

Sphinx search engine and related tags

I'm using Sphinx search engine to index all my Intranet documents using tags. With that I don't have any trouble to find specific documents with one ore more tags.
I want to go further with a new feature like the StackOverflow "related tags" feature.
Does anybody know the best way to do this with Sphinx ?
Thanks
You run a boolean OR query on all terms in the document you want to find related items for. It can be fairly slow because all documents in the database has to be ranked on similarity, unless you limit the search using and:ed terms. See my text here: https://stackoverflow.com/questions/3121266/efficient-item-similarity-search-using-sphinx