2

while writing % in the sentence it is considering as a comment . Just like i wana write this sentence 25% of this bottle is empty. But texnic does not showing remaining text in the output. kindly give me some suggestion . Regards

  • write it as 25\% –  Aug 26 '14 at 07:05
  • Welcome to TeX.SX Well, as you should know, the % symbol is an special symbol reserved in TeX for comment a line of code before that symbol. If you want to use it inside your text you should add a \ before, i.e. type \%. Try to type 25 \% for your example. – Aradnix Aug 26 '14 at 07:05

1 Answers1

2

In case you have a lot of physical quantities, use the siunitx package:

\documentclass{article}

\usepackage{siunitx}

\begin{document}

\SI{25}{\percent} of this bottle is empty.

\end{document}

output