How to insert a Checkmark (✓) in LaTeX?

In academic and professional documents, the need to include checkmarks (✓) is common, particularly when presenting tasks, lists, or assessments. A checkmark symbol in LaTeX can enhance the visual representation of completed items or denote specific actions. While adding a simple checkmark might seem straightforward, doing so in LaTeX requires specific commands. In this blog post, we will explore several packages for inserting a checkmark in LaTeX, providing you with the knowledge to integrate this symbol into your documents seamlessly.

Method 1: Using “amssymb” package

In LaTeX, you can use the \checkmark command to produce a checkmark symbol. Here’s a simple guide on how to use it.

To use the \checkmark command, you need to include the amssymb package in your document. Add the following line in the preamble (i.e., before \begin{document}):

\usepackage{amssymb}

The amssymb package provides various symbols, including the checkmark.

Once you’ve included the amssymb package, you can use the \checkmark command wherever you want the checkmark to appear. Here’s an example:

\documentclass{article}
\usepackage{amssymb}

\begin{document}

This is a checkmark: \checkmark

\end{document}

Output

In this example, \checkmark will be replaced with an actual checkmark symbol when you compile your LaTeX document.

Note: If you want to customize the appearance of the checkmark, you can explore additional packages. However, the \checkmark command from amssymb package should be sufficient for most cases.

If you need a different checkmark style or want to explore more options, consider checking other LaTeX packages.

Method 2: Using “MnSymbol” package

You can use the \checkmark command from the MnSymbol package to produce a checkmark symbol.

To use the \checkmark command, you need to include the MnSymbol package in your document. Add the following line in the preamble:

\usepackage{MnSymbol}

Once you’ve included the MnSymbol package, you can use the \checkmark command in the math mode wherever you want the checkmark to appear. Here’s an example:

\documentclass{article}
\usepackage{MnSymbol}

\begin{document}

This is a checkmark: $\checkmark$

\end{document}

Output

Great! You’ve successfully added a checkmark to your LaTeX document. Adjust the placement and usage according to your specific needs. You can also read our guide on how to put a cross (✘) mark in LaTeX.

2 thoughts on “How to insert a Checkmark (✓) in LaTeX?”

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.