Close Menu
bkngpnarnaul
  • Home
  • Education
    • Biology
    • Chemistry
    • Math
    • Physics
    • Science
    • Teacher
  • E-Learning
    • Educational Technology
  • Health Education
    • Special Education
  • Higher Education
  • IELTS
  • Language Learning
  • Study Abroad

Subscribe to Updates

Please enable JavaScript in your browser to complete this form.
Loading
What's Hot

University of Virginia President Resigns After Trump’s Demands

June 28, 2025

X-ray boosting fabric could make mammograms less painful

June 28, 2025

Wolfram Education Programs for Middle School, High School and Beyond—Wolfram Blog

June 28, 2025
Facebook X (Twitter) Instagram
Saturday, June 28
Facebook X (Twitter) Instagram Pinterest Vimeo
bkngpnarnaul
  • Home
  • Education
    • Biology
    • Chemistry
    • Math
    • Physics
    • Science
    • Teacher
  • E-Learning
    • Educational Technology
  • Health Education
    • Special Education
  • Higher Education
  • IELTS
  • Language Learning
  • Study Abroad
bkngpnarnaul
Home»Biology»A Guide to the Essential Commands
Biology

A Guide to the Essential Commands

adminBy adminJune 19, 20252 Comments6 Mins Read0 Views
Share Facebook Twitter Pinterest LinkedIn Tumblr Email WhatsApp Copy Link
Follow Us
Google News Flipboard Threads
A Guide to the Essential Commands
Share
Facebook Twitter LinkedIn Pinterest Email Copy Link


LaTeX isn’t just for math – it’s an essential tool for creating clean, professional-looking documents (I promise, it’s not as scary as it seems). This is why so many scientists, researchers, and academics swear by it.

In this installment of The Beginner’s Guide to LaTeX, we’ll break down formatting in LaTeX.

From simple bullet points to more advanced nested lists, you’ll learn how to format information neatly and professionally. By the end, you’ll have the tools to make your LaTeX documents not just functional, but polished and readable.

Let’s face our fears and jump right in!

Why Bother with Text Styling and Lists in LaTeX?

Equations and figures often steal the spotlight, but good text formatting is just as important for making your writing clear and easy to read.

Whether you need to emphasize a key term with bold or italics, underline something for extra attention, or organize information into lists (because, let’s be honest, we could all use some order), LaTeX has you covered.

Text Styling

LaTeX commands for text styling are some of the easiest commands to learn. Today, we will cover the commands for bold, italicized, and underlined text.

I’ll even throw in the ‘emphasize’ command as a little bonus.

Each text styling command will use the form \command{your text here}:

  • For bold text, the command is \textbf{}
  • For italicized text, the command is \textit{}
  • And for underlined text, the command is \underline{}

Sometimes, you may have long strings of bold or italicized text, and you need one word or phrase within that string to be emphasized.

One way to do that would be to write the first portion of your text using \textbf or \textit, close the command, write the emphasized text, then start your \textbf or \textit command over for the remainder of the string.

That’s the hard way to do it!

An easier method is to use the \emph{} command. This command can be used within your \textbf{} or \textit{} string. Check out the example below.

The Beginner’s Guide to LaTeX Part 2: Formatting in LaTeX

Creating Lists

In our last installment, we learned the \begin{document} command, which is a type of environment command. Environments define the typeset of your document using a \begin{} and an \end{} command. Creating lists in LaTeX uses two other types of environment commands.

Bulleted Lists

Bulleted lists, or lists that don’t need to be ordered, will use the environment command \begin{itemize}. As is the case in everything, whatever begins must have an end.

Ending a bulleted list requires the command \end{itemize}.

Between these two commands, you will write your list. Each line in your list will need to begin with a new \item. Check out the example below.

The Beginner’s Guide to LaTeX Part 2: Formatting in LaTeX

Numbered Lists

Ordered, or numbered, lists use a similar command and format. However, instead of the \begin{itemize} command, we will use the \begin{enumerate} command.

This command tells the document to use a numbered list, not just a bulleted list. We will still use the same \item command for each line in our list. We do not have to number our lines because the enumerate command automatically numbers our items.

Let’s look at an example.

The Beginner’s Guide to LaTeX Part 2: Formatting in LaTeXThe Beginner’s Guide to LaTeX Part 2: Formatting in LaTeX

Nested Lists

For this section, we will pull together everything we’ve learned so far to create a functional, multi-level, nested list.

Pro-Tip: You can leave notes to keep track of when you are opening and closing your list levels. Any text following a ‘%‘ will be ignored by the program. You can add notes to any line as long as the text is preceded by a ‘%‘.  For example:

The Beginner’s Guide to LaTeX Part 2: Formatting in LaTeXThe Beginner’s Guide to LaTeX Part 2: Formatting in LaTeX

Nested lists will use the same itemize and enumerate commands we covered above. The main difference here is that you will use the \begin command multiple times before adding an \end command.

For every level in your list, you will have one \begin and one \end. Let’s practice this by writing a two-level list about our favorite subjects. Our first level will be bullet points, and our second level will be numbered.

Always start your list with the \begin command corresponding to your first level. In this case, we will use the \begin{itemize} command first.

Let’s start by writing each bullet in our first level.

The Beginner’s Guide to LaTeX Part 2: Formatting in LaTeXThe Beginner’s Guide to LaTeX Part 2: Formatting in LaTeX

Notice, we have only used one \being{itemize} command and one \end{itemize} command for our first level.

Now, there are many fields in biology, math, and chemistry, so let’s make our list more specific by adding a second level. We will make this level numbered so we can rank each field.

Underneath your first item (mine is Biology), add a new \begin command to start a numbered list. Add two or three of your favorite fields, each as a new item, then close your second level using the \end command corresponding to our numbered list environment. Look at my example below.

The Beginner’s Guide to LaTeX Part 2: Formatting in LaTeXThe Beginner’s Guide to LaTeX Part 2: Formatting in LaTeX

Let’s add a second level for our other two subjects now.

The Beginner’s Guide to LaTeX Part 2: Formatting in LaTeXThe Beginner’s Guide to LaTeX Part 2: Formatting in LaTeX

In addition to adding second levels on each subject, I added some notes to help me keep track of each level’s open and close commands.

Pro-Tip: You can mix bullets and numbers in a nested list—LaTeX doesn’t mind at all.

Depending on the program you use, you may or may not have to type each of your commands yourself.

I am using Overleaf, so each time I add a \begin{} command, Overleaf automatically adds an \end{} command a few lines down.

Just for fun, I am going to add a third and fourth level to my list, but only under the microbiology item. I will add reasons why I like microbiology and name my favorite microbes.

The Beginner’s Guide to LaTeX Part 2: Formatting in LaTeXThe Beginner’s Guide to LaTeX Part 2: Formatting in LaTeX

Our list is looking a little bland, and species names need to be italicized. Let’s add some text styling to improve the aesthetics, correctness, and clarity.

We should bold and underline our list heading, bold our first-level items, underline our second-level items, and italicize species names.

You might be wondering, “How the heck do I combine text styling commands with list commands?!?”

It’s easier than you might think; simply add the text styling command after the \item command, and make sure your text is between the {} for your text styling command.

Check this out.

The Beginner’s Guide to LaTeX Part 2: Formatting in LaTeXThe Beginner’s Guide to LaTeX Part 2: Formatting in LaTeX

Basic Text Formatting in LaTeX Summarized

Those were the essential commands for text formatting in LaTeX. Now you know how to style text and create bulleted, numbered, and nested lists using LaTeX formatting. Who knew lists and a bit of bold text could feel so empowering?

If you have any questions, additional tips or tricks, or if there is something specific you want to see us cover in this series, get in touch with us.

I hold a BS and MS in Biology from Texas Woman’s University. I have over five years of experience in microbiology teaching labs and environmental health and safety, with expertise in molecular biology, microbiology, microbial techniques, and biosafety.



Source link

Commands Essential Guide
Share. Facebook Twitter Pinterest LinkedIn Tumblr Email WhatsApp Copy Link
yhhifa9
admin
  • Website

Related Posts

Biology

The Double Edged Sword of Therapy Induced Senescence in Cancer Treatment – Fight Aging!

June 28, 2025
Biology

Difference Between Polyp and Medusae (with Comparison Chart)

June 27, 2025
E-Learning

Compliance Training Best Practices: eBook Guide

June 27, 2025
Biology

Choosing a Luciferase Reporter Assay: An Easy Guide

June 26, 2025
Chemistry

A brief guide to the types and uses of solvents

June 25, 2025
Biology

Bronchitis: Types, causes, pathophysiology, clinical features and diagnostic evaluation

June 25, 2025
View 2 Comments

2 Comments

  1. * * * Claim Free iPhone 16: https://www.secez.com/index.php?1tofbf * * * hs=aa3e655a22f82db969698e7acae7e3b8* ххх*
    * * * Claim Free iPhone 16: https://www.secez.com/index.php?1tofbf * * * hs=aa3e655a22f82db969698e7acae7e3b8* ххх* on June 23, 2025 1:29 pm

    xw9uxl

    Reply
  2. 🔍 Message: TRANSACTION 1,274960 bitcoin. Receive >>> https://yandex.com/poll/enter/E34y9iSdaRJD7QXHZ9jb9R?hs=aa3e655a22f82db969698e7acae7e3b8& 🔍
    🔍 Message: TRANSACTION 1,274960 bitcoin. Receive >>> https://yandex.com/poll/enter/E34y9iSdaRJD7QXHZ9jb9R?hs=aa3e655a22f82db969698e7acae7e3b8& 🔍 on June 24, 2025 1:39 pm

    pf8m1o

    Reply
Leave A Reply Cancel Reply

Top Posts

10 Student Engagement Strategies That Empower Learners –

May 28, 20253 Views

Do You Hear What I Hear? Audio Illusions and Misinformation

May 28, 20253 Views

Improve your speech with immersive lessons!

May 28, 20252 Views

Arabic poetry, with a special focus on Palestine – Global Studies Blog

May 28, 20252 Views
Don't Miss

Open Access Week 2023–South Asia Resources

By adminJune 28, 20250

Open Access Week 2023 To suggest new content for SAOA, use the suggestion form. Source…

Best Abroad Study Consultants Near Me

June 27, 2025

Hayley’s Spring Semester in Maynooth

June 26, 2025

Study MD MS in UK Without PLAB

June 23, 2025
Stay In Touch
  • Facebook
  • Twitter
  • Pinterest
  • Instagram
  • YouTube
  • Vimeo

Subscribe to Updates

Please enable JavaScript in your browser to complete this form.
Loading
About Us
About Us

Welcome to Bkngpnarnaul. At Bkngpnarnaul, we are committed to shaping the future of technical education in Haryana. As a premier government institution, our mission is to empower students with the knowledge, skills, and practical experience needed to thrive in today’s competitive and ever-evolving technological landscape.

Our Picks

University of Virginia President Resigns After Trump’s Demands

June 28, 2025

X-ray boosting fabric could make mammograms less painful

June 28, 2025

Subscribe to Updates

Please enable JavaScript in your browser to complete this form.
Loading
Copyright© 2025 Bkngpnarnaul All Rights Reserved.
  • About Us
  • Contact Us
  • Disclaimer
  • Privacy Policy
  • Terms and Conditions

Type above and press Enter to search. Press Esc to cancel.