stacks / stacks-website

The website for the Stacks project
http://stacks.math.columbia.edu
GNU General Public License v2.0
19 stars 12 forks source link

Fix itemized lists #59

Closed aisejohan closed 10 years ago

aisejohan commented 10 years ago

Try to write a piece of parsing code to fix listings. Here are some things to consider:

  1. Take care of explicitly given numbering \item[??]. For example here http://stacks.math.columbia.edu/tag/051T
  2. Take care of nested lists. For example here http://stacks.math.columbia.edu/tag/051Z
pbelmans commented 10 years ago

Nested lists and explicit numbering should be fine now. The problem are the list environments, you use them mostly to denote certain properties. If you change these to itemize with an explicit bullet (as in \item[...]) they should be correctly handled by the system. On 4 occasions you use a funny trick to obtain a different number, this happens in tags 03SB, 04A4, 00Z4, 0937. I guess it's the easiest solution if you'd change the LaTeX code to something that is already covered, or is the fancy numbering absolutely essential? It'd be hard to reproduce in HTML, for just 4 instances.

aisejohan commented 10 years ago

See http://github.com/stacks/stacks-project/commit/440d8d3c8a03e36514c83cbd6017282b569f82fb where I get rid of all of the list environments. So I guess you can close this issue now.