The problem here I am trying to solve is I have a bunch of documents which context mathematical expressions/formulas. I want to search the documents by the formula or expression.
So far based on my research I'm considering to convert the mathematical expression to latex format and store as a string in the database (elastic search).
With this approach will be I able to search for documents with the latex string?
Example latex conversion of a2 + b2 = c2 is a^{2} + b^{2} = c^{2} . Can this string be searchable in elastic search ?