How do you make lettered lists using markdown?

前端 未结 6 1047
青春惊慌失措
青春惊慌失措 2020-12-08 00:07

Markdown allows ordered lists using numbers. How can I instead get an ordered list using letters? i.e.

A. the letter A
B. the letter B
C. etc
         


        
6条回答
  •  离开以前
    2020-12-08 00:10

    Late to the party, but this might help other people looking for an R Markdown solution.

    In R Markdown it's straight forward. The following minimal example lists.rmd shows different types:

    ---
    title: "Lists"
    output: pdf_document
    ---
    
    A list with bullet points:
    
    - Something
    - Something else
    
    A numeric list:
    
    1. Something
    1. Something else
    
    A list using small letters:
    
    a) Something
    a) Something else
    
    A list using capital letters:
    
    A) Something
    A) Something else
    

    This knits to:

提交回复
热议问题