Difference between revisions of "LaTeX/C3/Customizing-Numbered-List/English"
Ketkinaina (Talk | contribs) (Created page with "'''Title of the Script''': '''Customizing Numbered List.''' '''Author''': Ambika Vanchinathan '''Keywords''': LaTeX, enumitem package, customized lists, lists in roman numer...") |
|||
| Line 14: | Line 14: | ||
'''Title Slide''' | '''Title Slide''' | ||
| − | || Welcome to the spoken tutorial on''' Customizing Numbered List | + | || Welcome to the spoken tutorial on '''Customizing Numbered List'''. |
|- | |- | ||
|| '''Slide 2''' | || '''Slide 2''' | ||
| Line 46: | Line 46: | ||
This file is provided in the Code Files link of this tutorial page. | This file is provided in the Code Files link of this tutorial page. | ||
| + | |||
|| The following Code File is required to practice this tutorial. | || The following Code File is required to practice this tutorial. | ||
| Line 56: | Line 57: | ||
'''\usepackage{enumitem}''' | '''\usepackage{enumitem}''' | ||
| − | || This command imports the enumitem package. | + | || This command imports the '''enumitem''' package. |
The '''enumitem''' package helps to customize and control the layout of lists. | The '''enumitem''' package helps to customize and control the layout of lists. | ||
| Line 170: | Line 171: | ||
|| '''As an assignment''' | || '''As an assignment''' | ||
| − | Add a custom symbol ★ before each item in a list with numbers | + | Add a custom symbol ★ before each item in a list with numbers. |
|- | |- | ||
|| '''Slide 8''' | || '''Slide 8''' | ||
'''Thank you''' | '''Thank you''' | ||
| − | || Thank you for joining | + | || Thank you for joining. |
|- | |- | ||
|} | |} | ||
Latest revision as of 11:46, 12 August 2025
Title of the Script: Customizing Numbered List.
Author: Ambika Vanchinathan
Keywords: LaTeX, enumitem package, customized lists, lists in roman numerals, lists with alphabets, video tutorial
| Visual Cue | Narration |
| Slide 1
Title Slide |
Welcome to the spoken tutorial on Customizing Numbered List. |
| Slide 2
Learning Objectives |
In this tutorial, we will learn to,
|
| Slide 3
System Requirements |
To record this tutorial, I am using:
|
| Slide 4
Pre-requisites |
To follow this tutorial,
Learners should have basic knowledge of LaTeX. |
| Slide 5
Code Files The following Code File is required to practice this tutorial: 1. enumitem-eg1.tex This file is provided in the Code Files link of this tutorial page. |
The following Code File is required to practice this tutorial.
This file is provided in the Code Files link of this tutorial page. |
| Let us get started. | |
| Highlight:
\usepackage{enumitem} |
This command imports the enumitem package.
The enumitem package helps to customize and control the layout of lists. |
| Click the green Typeset button and show the output | Click the green Typeset button to run the code.
Here is the output. Notice that the list items are displayed using numbers. |
| Comment line number 8 and
Uncomment line number 9. |
Let’s comment line number 8 and
Uncomment line number 9. |
| Highlight:
line 9 \begin{enumerate}[label=\Roman*] |
This command customizes the numbering style to uppercase Roman numerals. |
| Click the green Typeset button and show the output | Let us run the code to see the output. |
| Comment line 9
Uncomment line 10 |
Comment line number 9 and
Uncomment line number 10. |
| Highlight:
line 10 \begin{enumerate}[label=\roman*] |
This command customizes the numbering style to lowercase Roman numerals. |
| Click the green Typeset button and show the output | Let us run the code to see the output. |
| Comment line 10
Uncomment line 11 |
Comment line number 10
Uncomment line number 11. |
| Highlight:
line 11 \begin{enumerate}[label=\Alph*] |
This command customizes the numbering style to uppercase alphabets. |
| Click the green Typeset button and show the output. | Run the code to see the output. |
| Comment line 11
Uncomment line 12 |
Comment line number 11 and
Uncomment line number 12. |
| Highlight:
line 12 \begin{enumerate}[label=(\alph*)] |
This command customizes the numbering style to lowercase alphabets in parenthesis. |
| Click the green Typeset button and show the output | Let’s run the code.
Here is the output. |
| Comment line 12
Uncomment line 13 |
Comment line number 12 and
Uncomment line number 13. |
| Highlight:
line 13 \begin{enumerate}[label=\arabic*(a):] |
This command customizes the list labels to display numbers followed by a in parenthesis. |
| Click the green Typeset button and show the output | Let’s run the code to see the output. |
| Slide 6
Summary In this tutorial, we have learnt to,
|
With this we come to the end of this tutorial.
Let us summarise. |
| Slide 7
Assignment |
As an assignment
Add a custom symbol ★ before each item in a list with numbers. |
| Slide 8
Thank you |
Thank you for joining. |