How to use prime(aʹ) symbol in LaTeX?

Symbol/UnicodePrime/U+02B9
Type of symbolMathematics
Package (requirement)No
ArgumentNo
Latex command\prime
Examplea^\prime → aʹ

There are two ways to print the prime symbol in a latex document. First, you can press the ' key on the keyboard, and second, you can use the default \prime command of latex. There is no difference between the two in the output.

\documentclass{article}
\begin{document}
  % Useing keyboard key
   \[ f'(x) = x^2 \]
   \[ g'(x) = x^3 \]
  % Using \prime command
   \[ f^\prime(x) = x^2 \]
   \[ a + b^\prime \]
\end{document}

Output :

Using prime symbol in latex.

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top