Can someone give me an idea (if it is at all possible) about how the document structure will be in the LaTeX3 format. Will it still start with a \documentclass and use \begin{document} ... \end{document}, will we still load a list (hopefully shorter) of packages in the preamble, etc.? And will the awkward syntax of expl3 only affect programmers? So can I continue writing
\begin{equation}
\alpha^2 + \beta^2 = \int_a^b e^x\, dx
\end{equation}
like I have always done? Or will all of these nice and short commands be replaced by odd expl3 commands with awkwardly long names?
expl3is the code layer and is not meant to replace document syntax. On the other hand, the latter is to be decided. – Joseph Wright Mar 13 '15 at 19:05splitenvironment is unnecessary, and should be used by default, so you could use&and\\inside thatequation(just an example). – Manuel Mar 13 '15 at 20:36equation*and apply some\yesnumbercommand if I want an equation number; this is better than the current situation where you must useequationand write\nonumberafter all the other lines. – Gaussler Mar 13 '15 at 20:58