Code: Select all
\[Q_O^D = 75 – 5 P_O + P_C + 2I\]
(34 is the line of this code in my file)
But it can still give my pdf. Why is this warning? What's the meaning? Should I just ignore it?
Code: Select all
\[Q_O^D = 75 – 5 P_O + P_C + 2I\]
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
–
, instead of a minus: -
, in your equation. You should not ignore the message, but change your equation like here:Code: Select all
\documentclass{article}\begin{document}\[Q_O^D = 75 - 5 P_O + P_C + 2I\]\end{document}
Code: Select all
\documentclass{article}\usepackage{amsmath}\begin{document}\begin{align*}Q_O^D &= 75 – 5 P_O + P_C + 2I \\Q_O^D &= 75 – 5 P_O + 5 + (2\times 10)\end{align*}\end{document}
–
instead of -
. With -
it works: Code: Select all
\documentclass{article}\usepackage{amsmath}\begin{document}\begin{align*}Q_O^D &= 75 - 5 P_O + P_C + 2I \\Q_O^D &= 75 - 5 P_O + 5 + (2\times 10)\end{align*}\end{document}
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