SlideShare a Scribd company logo
1 of 26
Presenting By
P Srinivasa Rao
IT Mentor
2/14/2023 1
Basic typesetting
commands, font
families sizes and styles
Basic typesetting commands
• Latex typesetting is made by using special tags
or commands that provide a handful of ways
to format your document.
• Sometimes standard commands are not
enough to fulfill some specific needs, in such
cases new commands can be defined.
• Commands are preceded by a backslash and
may take some parameters
2/14/2023 2
Continue..
• Most of the LATEX commands are simple
words preceded by a special character.
• Latex commands are case sensitive
• Syntax:
commandname[opt1][opt2]{arguement1}{arg
uement2}
2/14/2023 3
Example..
documentclass[options]{article/report/beamer
/letter….etc}
begin{document}
Body of the Text
end{document}
2/14/2023 4
Task 1
• Task-I
Create a document with two pages one should
be the title page with information of your
name, id, class, college, branch and second
page should contain bit information about our
college.
2/14/2023 5
Latex environments
• Environments are used to format blocks of
text in a LATEX documents.
• Environments are delimited by an opening tag
begin and a closing tag end.
• Everything inside those tags will be formatted
in a special manner depending on the type of
the environment.
2/14/2023 6
Continue..
• Syntax:
• begin{environment_name}
• Text to be inserted
• end{environment_name}
•
• Example-I:
• begin{tabular}{ c c c } %opening tag
• cell1 & cell2 & cell3 
• cell4 & cell5 & cell6 
• end{tabular} %Ending tag
•
• Example-2:
• begin{center}
• Contents ……………………..
• end{center}
2/14/2023 7
Document Class Options
2/14/2023 8
Document Classes
2/14/2023 9
Font Families Sizes and Styles
2/14/2023 10
Font Styles
2/14/2023 11
Font Sizes
• There are LATEX commands for a range of font sizes:
• Command Output in latex
• {tiny tiny words} tiny words
• {scriptsize scriptsize words} scriptsize words
• {footnotesize footnotesize words} footnotesize words
• {small small words} small words
• {normalsize normalsize words} normalsize words
• {large large words} large words
• {Large Large words} Large words
• {huge huge words} huge words
2/14/2023 12
Example
• For example the text is….
Hello Welcome toRGUIIIT
• If you want to show hello as large just insert
the command like below
{huge Hello } Welcome toRGUIIIT
2/14/2023 13
Tasks
Task-II
• Practice the above commands and observe the outputs
Task –III
• Practice the above font sizes and observe the outputs
Example code
documentclass{report}
begin{document}
Hello RGUKT 
Hello welcome to rgukt
I am studying Pre University Course.
end{document}
2/14/2023 14
Spaces
• quad will produce a current font size space if
you are using 12 pt fonts, then the space
provided by quad will also be 12 pt(
horizontally).
• qquad will produce double amount space.
Similarly you can use
, : ; ! > ~ space
enspace etc
2/14/2023 15
Example
• Example code
documentclass{article}
begin{document}
Demo code on giving spaces in text  
• ax+by+c=0  
• ax+by+c=, 0 
• ax+by+c=: 0 
• ax+by+c=; 0 
• ax+by+c=! 0 
• ax+by+c=quad 0 
• ax+by+c=qquad 0
end{document}
2/14/2023 16
Using hspace and vspace
• hspace is used to give horizontal space
between text
• vspace is used to give space vertically
between text.
• These are followed by some recognized units,
hspace and vspace followed by these units
like hspace{cm}, vspace{mm}, hspace{3sp},
vspace{3pt} etc..
2/14/2023 17
Units in Latex
2/14/2023 18
Example
documentclass{book}
begin{document}
• Hellohspace{2cm} welcome to rgukt 
• This is the first paragraph of some text.
vspace{15 mm}
•
• This is the second paragraph.
end{document}
2/14/2023 19
Basic formatting in latex
Bold ,Bold Italic & Under Line a text
• Some of the textbf{greatest} %textbf means text bold
• Discoveries in underline{science} %for underlined
text
• Were made by textbf{textit{accident}}.
% for underlined and italic
• This is for textit{italic text}
% for italicized text
2/14/2023 20
Emphasizing text
• Text can be emphasized by using emph
command.
• Sometimes the emph command behaves just
as textit, but is not exactly the same:
• Some of the greatest emph{discoveries}in science were
made by accident.
• textit{Some of the greatest emph{discoveries}in
science were made by accident.}
• textbf{Some of the greatest emph{discoveries} in
science were made by accident.}
2/14/2023 21
Paragraphs and new lines
begin{center}
This text will be placed in the middle of the document
end{center}
New paragraph
• par command will be used to start a new paragraph
• This is the text in first paragraph. This is the text in first
paragraph. This is the text in first paragraph. parThis is
the text in second paragraph. This is the text in second
paragraph. This is the text in second paragraph.
2/14/2023 22
Paragraph Indentation
• setlength{parindent}{10ex}This is the text
in first paragraph. This is the text in first
paragraph. This is the text in first paragraph.
parnoindent%The next paragraph is not
indentedThis is the text in second paragraph.
This is the text in second paragraph. This is the
text in second paragraph.
• noindent means there will be no space given
at second line starting.
2/14/2023 23
Text alignment
Left –justified text
Right-justified text
• The default environment for left-alignment is
flushleft
begin{flushleft}Hello! Welcome to latex, this
module is about text alignment.This is the left
alignment text. Happy learning latex.
end{flushleft}
2/14/2023 24
Right alignment
begin{flushright}
Hello! Welcome to latex, this module is about
text alignment.This is the right alignment text.
Happy learning latex.
end{flushright}
2/14/2023 25
Centered text
• To centre a block of text use the environment center
• begin{center} and end{center} environment will be used
for centered text.
• Similarly centering and justify commands will be used….
• Example:
• centering
• Text will come here………….
•
• justify
• Text will come here………………..
2/14/2023 26

More Related Content

Similar to LaTeX-Module 3 & 4.pptx

Similar to LaTeX-Module 3 & 4.pptx (20)

LaTex tutorial with Texstudio
LaTex tutorial with TexstudioLaTex tutorial with Texstudio
LaTex tutorial with Texstudio
 
Head first latex
Head first latexHead first latex
Head first latex
 
A Hitchhiker S Guide To LaTex (Or How I Learned To Stop Worrying And Love Wri...
A Hitchhiker S Guide To LaTex (Or How I Learned To Stop Worrying And Love Wri...A Hitchhiker S Guide To LaTex (Or How I Learned To Stop Worrying And Love Wri...
A Hitchhiker S Guide To LaTex (Or How I Learned To Stop Worrying And Love Wri...
 
latex document for IT workshop Lab . B.Tech
latex document for IT workshop Lab . B.Techlatex document for IT workshop Lab . B.Tech
latex document for IT workshop Lab . B.Tech
 
LATEX.ppt
LATEX.pptLATEX.ppt
LATEX.ppt
 
Latex Notes
Latex NotesLatex Notes
Latex Notes
 
Importanat
ImportanatImportanat
Importanat
 
Ltxprimer 1.0
Ltxprimer 1.0Ltxprimer 1.0
Ltxprimer 1.0
 
Latex intro
Latex introLatex intro
Latex intro
 
Electronic Grading of Paper Assessments
Electronic Grading of Paper AssessmentsElectronic Grading of Paper Assessments
Electronic Grading of Paper Assessments
 
Introduction Latex
Introduction LatexIntroduction Latex
Introduction Latex
 
Latex Tuitorial
Latex TuitorialLatex Tuitorial
Latex Tuitorial
 
LaTeX for B.Sc. Mathematics,an introduction
LaTeX for B.Sc. Mathematics,an introductionLaTeX for B.Sc. Mathematics,an introduction
LaTeX for B.Sc. Mathematics,an introduction
 
Latex workshop
Latex workshopLatex workshop
Latex workshop
 
Latex Tutorial by Dr. M. C. Hanumantharaju
Latex Tutorial by Dr. M. C. HanumantharajuLatex Tutorial by Dr. M. C. Hanumantharaju
Latex Tutorial by Dr. M. C. Hanumantharaju
 
abc12
abc12abc12
abc12
 
popopo
popopopopopo
popopo
 
abc
abcabc
abc
 
JSUG - TeX Day by Christoph Pickl
JSUG - TeX Day by Christoph PicklJSUG - TeX Day by Christoph Pickl
JSUG - TeX Day by Christoph Pickl
 
Write effectlively in late x
Write effectlively in late xWrite effectlively in late x
Write effectlively in late x
 

Recently uploaded

Improved Approval Flow in Odoo 17 Studio App
Improved Approval Flow in Odoo 17 Studio AppImproved Approval Flow in Odoo 17 Studio App
Improved Approval Flow in Odoo 17 Studio AppCeline George
 
An overview of the various scriptures in Hinduism
An overview of the various scriptures in HinduismAn overview of the various scriptures in Hinduism
An overview of the various scriptures in HinduismDabee Kamal
 
When Quality Assurance Meets Innovation in Higher Education - Report launch w...
When Quality Assurance Meets Innovation in Higher Education - Report launch w...When Quality Assurance Meets Innovation in Higher Education - Report launch w...
When Quality Assurance Meets Innovation in Higher Education - Report launch w...Gary Wood
 
philosophy and it's principles based on the life
philosophy and it's principles based on the lifephilosophy and it's principles based on the life
philosophy and it's principles based on the lifeNitinDeodare
 
Envelope of Discrepancy in Orthodontics: Enhancing Precision in Treatment
 Envelope of Discrepancy in Orthodontics: Enhancing Precision in Treatment Envelope of Discrepancy in Orthodontics: Enhancing Precision in Treatment
Envelope of Discrepancy in Orthodontics: Enhancing Precision in Treatmentsaipooja36
 
Features of Video Calls in the Discuss Module in Odoo 17
Features of Video Calls in the Discuss Module in Odoo 17Features of Video Calls in the Discuss Module in Odoo 17
Features of Video Calls in the Discuss Module in Odoo 17Celine George
 
Basic Civil Engineering notes on Transportation Engineering, Modes of Transpo...
Basic Civil Engineering notes on Transportation Engineering, Modes of Transpo...Basic Civil Engineering notes on Transportation Engineering, Modes of Transpo...
Basic Civil Engineering notes on Transportation Engineering, Modes of Transpo...Denish Jangid
 
Implanted Devices - VP Shunts: EMGuidewire's Radiology Reading Room
Implanted Devices - VP Shunts: EMGuidewire's Radiology Reading RoomImplanted Devices - VP Shunts: EMGuidewire's Radiology Reading Room
Implanted Devices - VP Shunts: EMGuidewire's Radiology Reading RoomSean M. Fox
 
SURVEY I created for uni project research
SURVEY I created for uni project researchSURVEY I created for uni project research
SURVEY I created for uni project researchCaitlinCummins3
 
The Ball Poem- John Berryman_20240518_001617_0000.pptx
The Ball Poem- John Berryman_20240518_001617_0000.pptxThe Ball Poem- John Berryman_20240518_001617_0000.pptx
The Ball Poem- John Berryman_20240518_001617_0000.pptxNehaChandwani11
 
Benefits and Challenges of OER by Shweta Babel.pptx
Benefits and Challenges of OER by Shweta Babel.pptxBenefits and Challenges of OER by Shweta Babel.pptx
Benefits and Challenges of OER by Shweta Babel.pptxsbabel
 
II BIOSENSOR PRINCIPLE APPLICATIONS AND WORKING II
II BIOSENSOR PRINCIPLE APPLICATIONS AND WORKING IIII BIOSENSOR PRINCIPLE APPLICATIONS AND WORKING II
II BIOSENSOR PRINCIPLE APPLICATIONS AND WORKING IIagpharmacy11
 
會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文
會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文
會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文中 央社
 
How to Analyse Profit of a Sales Order in Odoo 17
How to Analyse Profit of a Sales Order in Odoo 17How to Analyse Profit of a Sales Order in Odoo 17
How to Analyse Profit of a Sales Order in Odoo 17Celine George
 
Stl Algorithms in C++ jjjjjjjjjjjjjjjjjj
Stl Algorithms in C++ jjjjjjjjjjjjjjjjjjStl Algorithms in C++ jjjjjjjjjjjjjjjjjj
Stl Algorithms in C++ jjjjjjjjjjjjjjjjjjMohammed Sikander
 
The Liver & Gallbladder (Anatomy & Physiology).pptx
The Liver &  Gallbladder (Anatomy & Physiology).pptxThe Liver &  Gallbladder (Anatomy & Physiology).pptx
The Liver & Gallbladder (Anatomy & Physiology).pptxVishal Singh
 
ĐỀ THAM KHẢO KÌ THI TUYỂN SINH VÀO LỚP 10 MÔN TIẾNG ANH FORM 50 CÂU TRẮC NGHI...
ĐỀ THAM KHẢO KÌ THI TUYỂN SINH VÀO LỚP 10 MÔN TIẾNG ANH FORM 50 CÂU TRẮC NGHI...ĐỀ THAM KHẢO KÌ THI TUYỂN SINH VÀO LỚP 10 MÔN TIẾNG ANH FORM 50 CÂU TRẮC NGHI...
ĐỀ THAM KHẢO KÌ THI TUYỂN SINH VÀO LỚP 10 MÔN TIẾNG ANH FORM 50 CÂU TRẮC NGHI...Nguyen Thanh Tu Collection
 
PSYPACT- Practicing Over State Lines May 2024.pptx
PSYPACT- Practicing Over State Lines May 2024.pptxPSYPACT- Practicing Over State Lines May 2024.pptx
PSYPACT- Practicing Over State Lines May 2024.pptxMarlene Maheu
 

Recently uploaded (20)

Improved Approval Flow in Odoo 17 Studio App
Improved Approval Flow in Odoo 17 Studio AppImproved Approval Flow in Odoo 17 Studio App
Improved Approval Flow in Odoo 17 Studio App
 
“O BEIJO” EM ARTE .
“O BEIJO” EM ARTE                       .“O BEIJO” EM ARTE                       .
“O BEIJO” EM ARTE .
 
An overview of the various scriptures in Hinduism
An overview of the various scriptures in HinduismAn overview of the various scriptures in Hinduism
An overview of the various scriptures in Hinduism
 
When Quality Assurance Meets Innovation in Higher Education - Report launch w...
When Quality Assurance Meets Innovation in Higher Education - Report launch w...When Quality Assurance Meets Innovation in Higher Education - Report launch w...
When Quality Assurance Meets Innovation in Higher Education - Report launch w...
 
philosophy and it's principles based on the life
philosophy and it's principles based on the lifephilosophy and it's principles based on the life
philosophy and it's principles based on the life
 
Envelope of Discrepancy in Orthodontics: Enhancing Precision in Treatment
 Envelope of Discrepancy in Orthodontics: Enhancing Precision in Treatment Envelope of Discrepancy in Orthodontics: Enhancing Precision in Treatment
Envelope of Discrepancy in Orthodontics: Enhancing Precision in Treatment
 
Features of Video Calls in the Discuss Module in Odoo 17
Features of Video Calls in the Discuss Module in Odoo 17Features of Video Calls in the Discuss Module in Odoo 17
Features of Video Calls in the Discuss Module in Odoo 17
 
Basic Civil Engineering notes on Transportation Engineering, Modes of Transpo...
Basic Civil Engineering notes on Transportation Engineering, Modes of Transpo...Basic Civil Engineering notes on Transportation Engineering, Modes of Transpo...
Basic Civil Engineering notes on Transportation Engineering, Modes of Transpo...
 
Including Mental Health Support in Project Delivery, 14 May.pdf
Including Mental Health Support in Project Delivery, 14 May.pdfIncluding Mental Health Support in Project Delivery, 14 May.pdf
Including Mental Health Support in Project Delivery, 14 May.pdf
 
Implanted Devices - VP Shunts: EMGuidewire's Radiology Reading Room
Implanted Devices - VP Shunts: EMGuidewire's Radiology Reading RoomImplanted Devices - VP Shunts: EMGuidewire's Radiology Reading Room
Implanted Devices - VP Shunts: EMGuidewire's Radiology Reading Room
 
SURVEY I created for uni project research
SURVEY I created for uni project researchSURVEY I created for uni project research
SURVEY I created for uni project research
 
The Ball Poem- John Berryman_20240518_001617_0000.pptx
The Ball Poem- John Berryman_20240518_001617_0000.pptxThe Ball Poem- John Berryman_20240518_001617_0000.pptx
The Ball Poem- John Berryman_20240518_001617_0000.pptx
 
Benefits and Challenges of OER by Shweta Babel.pptx
Benefits and Challenges of OER by Shweta Babel.pptxBenefits and Challenges of OER by Shweta Babel.pptx
Benefits and Challenges of OER by Shweta Babel.pptx
 
II BIOSENSOR PRINCIPLE APPLICATIONS AND WORKING II
II BIOSENSOR PRINCIPLE APPLICATIONS AND WORKING IIII BIOSENSOR PRINCIPLE APPLICATIONS AND WORKING II
II BIOSENSOR PRINCIPLE APPLICATIONS AND WORKING II
 
會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文
會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文
會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文
 
How to Analyse Profit of a Sales Order in Odoo 17
How to Analyse Profit of a Sales Order in Odoo 17How to Analyse Profit of a Sales Order in Odoo 17
How to Analyse Profit of a Sales Order in Odoo 17
 
Stl Algorithms in C++ jjjjjjjjjjjjjjjjjj
Stl Algorithms in C++ jjjjjjjjjjjjjjjjjjStl Algorithms in C++ jjjjjjjjjjjjjjjjjj
Stl Algorithms in C++ jjjjjjjjjjjjjjjjjj
 
The Liver & Gallbladder (Anatomy & Physiology).pptx
The Liver &  Gallbladder (Anatomy & Physiology).pptxThe Liver &  Gallbladder (Anatomy & Physiology).pptx
The Liver & Gallbladder (Anatomy & Physiology).pptx
 
ĐỀ THAM KHẢO KÌ THI TUYỂN SINH VÀO LỚP 10 MÔN TIẾNG ANH FORM 50 CÂU TRẮC NGHI...
ĐỀ THAM KHẢO KÌ THI TUYỂN SINH VÀO LỚP 10 MÔN TIẾNG ANH FORM 50 CÂU TRẮC NGHI...ĐỀ THAM KHẢO KÌ THI TUYỂN SINH VÀO LỚP 10 MÔN TIẾNG ANH FORM 50 CÂU TRẮC NGHI...
ĐỀ THAM KHẢO KÌ THI TUYỂN SINH VÀO LỚP 10 MÔN TIẾNG ANH FORM 50 CÂU TRẮC NGHI...
 
PSYPACT- Practicing Over State Lines May 2024.pptx
PSYPACT- Practicing Over State Lines May 2024.pptxPSYPACT- Practicing Over State Lines May 2024.pptx
PSYPACT- Practicing Over State Lines May 2024.pptx
 

LaTeX-Module 3 & 4.pptx

  • 1. Presenting By P Srinivasa Rao IT Mentor 2/14/2023 1 Basic typesetting commands, font families sizes and styles
  • 2. Basic typesetting commands • Latex typesetting is made by using special tags or commands that provide a handful of ways to format your document. • Sometimes standard commands are not enough to fulfill some specific needs, in such cases new commands can be defined. • Commands are preceded by a backslash and may take some parameters 2/14/2023 2
  • 3. Continue.. • Most of the LATEX commands are simple words preceded by a special character. • Latex commands are case sensitive • Syntax: commandname[opt1][opt2]{arguement1}{arg uement2} 2/14/2023 3
  • 5. Task 1 • Task-I Create a document with two pages one should be the title page with information of your name, id, class, college, branch and second page should contain bit information about our college. 2/14/2023 5
  • 6. Latex environments • Environments are used to format blocks of text in a LATEX documents. • Environments are delimited by an opening tag begin and a closing tag end. • Everything inside those tags will be formatted in a special manner depending on the type of the environment. 2/14/2023 6
  • 7. Continue.. • Syntax: • begin{environment_name} • Text to be inserted • end{environment_name} • • Example-I: • begin{tabular}{ c c c } %opening tag • cell1 & cell2 & cell3 • cell4 & cell5 & cell6 • end{tabular} %Ending tag • • Example-2: • begin{center} • Contents …………………….. • end{center} 2/14/2023 7
  • 10. Font Families Sizes and Styles 2/14/2023 10
  • 12. Font Sizes • There are LATEX commands for a range of font sizes: • Command Output in latex • {tiny tiny words} tiny words • {scriptsize scriptsize words} scriptsize words • {footnotesize footnotesize words} footnotesize words • {small small words} small words • {normalsize normalsize words} normalsize words • {large large words} large words • {Large Large words} Large words • {huge huge words} huge words 2/14/2023 12
  • 13. Example • For example the text is…. Hello Welcome toRGUIIIT • If you want to show hello as large just insert the command like below {huge Hello } Welcome toRGUIIIT 2/14/2023 13
  • 14. Tasks Task-II • Practice the above commands and observe the outputs Task –III • Practice the above font sizes and observe the outputs Example code documentclass{report} begin{document} Hello RGUKT Hello welcome to rgukt I am studying Pre University Course. end{document} 2/14/2023 14
  • 15. Spaces • quad will produce a current font size space if you are using 12 pt fonts, then the space provided by quad will also be 12 pt( horizontally). • qquad will produce double amount space. Similarly you can use , : ; ! > ~ space enspace etc 2/14/2023 15
  • 16. Example • Example code documentclass{article} begin{document} Demo code on giving spaces in text • ax+by+c=0 • ax+by+c=, 0 • ax+by+c=: 0 • ax+by+c=; 0 • ax+by+c=! 0 • ax+by+c=quad 0 • ax+by+c=qquad 0 end{document} 2/14/2023 16
  • 17. Using hspace and vspace • hspace is used to give horizontal space between text • vspace is used to give space vertically between text. • These are followed by some recognized units, hspace and vspace followed by these units like hspace{cm}, vspace{mm}, hspace{3sp}, vspace{3pt} etc.. 2/14/2023 17
  • 19. Example documentclass{book} begin{document} • Hellohspace{2cm} welcome to rgukt • This is the first paragraph of some text. vspace{15 mm} • • This is the second paragraph. end{document} 2/14/2023 19
  • 20. Basic formatting in latex Bold ,Bold Italic & Under Line a text • Some of the textbf{greatest} %textbf means text bold • Discoveries in underline{science} %for underlined text • Were made by textbf{textit{accident}}. % for underlined and italic • This is for textit{italic text} % for italicized text 2/14/2023 20
  • 21. Emphasizing text • Text can be emphasized by using emph command. • Sometimes the emph command behaves just as textit, but is not exactly the same: • Some of the greatest emph{discoveries}in science were made by accident. • textit{Some of the greatest emph{discoveries}in science were made by accident.} • textbf{Some of the greatest emph{discoveries} in science were made by accident.} 2/14/2023 21
  • 22. Paragraphs and new lines begin{center} This text will be placed in the middle of the document end{center} New paragraph • par command will be used to start a new paragraph • This is the text in first paragraph. This is the text in first paragraph. This is the text in first paragraph. parThis is the text in second paragraph. This is the text in second paragraph. This is the text in second paragraph. 2/14/2023 22
  • 23. Paragraph Indentation • setlength{parindent}{10ex}This is the text in first paragraph. This is the text in first paragraph. This is the text in first paragraph. parnoindent%The next paragraph is not indentedThis is the text in second paragraph. This is the text in second paragraph. This is the text in second paragraph. • noindent means there will be no space given at second line starting. 2/14/2023 23
  • 24. Text alignment Left –justified text Right-justified text • The default environment for left-alignment is flushleft begin{flushleft}Hello! Welcome to latex, this module is about text alignment.This is the left alignment text. Happy learning latex. end{flushleft} 2/14/2023 24
  • 25. Right alignment begin{flushright} Hello! Welcome to latex, this module is about text alignment.This is the right alignment text. Happy learning latex. end{flushright} 2/14/2023 25
  • 26. Centered text • To centre a block of text use the environment center • begin{center} and end{center} environment will be used for centered text. • Similarly centering and justify commands will be used…. • Example: • centering • Text will come here…………. • • justify • Text will come here……………….. 2/14/2023 26