Text Formatting ⇒ displaying numbers
displaying numbers
So I've looked around online and in various help manuals but this is a really basic stupid thing that I can't find anything on!
I'm currently writing a paper and Latex won't display "00". It will only have one "0" there in the PDF when I've put two in the tex file...
What am I doing wrong? I've tried surrounding them with $'s since that usually solves it but that just causes the whole sequence to go wrong (i.e. go italic and miss other symbols in that line).
Please help?
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- Stefan Kottwitz
- Site Admin
- Posts: 10324
- Joined: Mon Mar 10, 2008 9:44 pm
displaying numbers
that's not the standard behavior. Try:
Code: Select all
\documentclass[a4paper,10pt]{article}
\begin{document}
00
\end{document}
Stefan
displaying numbers
Heres the bit:
Code: Select all
(LH: $10^\textit{h} 50 +57^\degree 00$ see \cite{lonsdale03})
- Stefan Kottwitz
- Site Admin
- Posts: 10324
- Joined: Mon Mar 10, 2008 9:44 pm
Re: displaying numbers
Stefan
Re: displaying numbers
Thanks for your help!