In my attempt to venture in the realm of LaTeX3 coding, I was wondering if a list of answers, in LaTeX3, can be made? That is, a list of links to answer in which users here at TeX.SX have used such coding. This will enable me to look at this post and look at samples instead of searching for examples everywhere on the website.
Asked
Active
Viewed 2,117 times
27
2 Answers
17
Almost all LaTeX3 answers will use expl3 or xparse packages, or as egreg says use \ExplSyntaxOn (which is the LaTeX3 analogue of \makeatletter to allow package code in the preamble) thus a link such as
https://tex.stackexchange.com/search?q=expl3
will show most of the things that you wish to find.
or of course those explicitly tagged:
David Carlisle
- 757,742
-
Sorry to dredge this up, but does this mean that
\ExplSyntaxOnis similarly implicit in package/class files? – Sean Allred Jul 09 '13 at 23:39 -
2@SeanAllred It means it probably would be implicit if there were a latex3 package loading mechanism, but there isn't so far:-) – David Carlisle Jul 09 '13 at 23:47
16
Though the question was asked long back, for anyone who views this and would like to learn LaTeX3 Programming, Programming LaTeX3: Creating functions provides a really good introduction with number of examples and the documentation can be used for further understanding and exploration.
Johannes_B
- 24,235
- 10
- 93
- 248
Milap
- 313
expl3, the programming layer, which is available and usable – Joseph Wright Feb 02 '13 at 20:58