public interface ILatexCompiler
{
string CreateProjectByPath(string path);
string CreateProjectByStream(Stream stream, string mediaType);
string CreateProjectByPaths(params string[] paths);
bool CompileProject(string id, Dictionary<string, object> data = null);
bool CompileProject(out Stream stream, string id, Dictionary<string, object> data=null);
bool DeleteProject(string id);
}