* Internal function to generate the LaTeX output. * This has to be implemented by every Node * * @param {Object} [options] * @throws {Error}
(options)
| 342 | * @throws {Error} |
| 343 | */ |
| 344 | _toTex (options) { |
| 345 | // must be implemented by each of the Node implementations |
| 346 | throw new Error('_toTex not implemented for ' + this.type) |
| 347 | } |
| 348 | |
| 349 | /** |
| 350 | * Helper used by `to...` functions. |
no outgoing calls
no test coverage detected