Math & Science ⇒ Logarithm with Base 10
-
- Posts: 402
- Joined: Fri May 20, 2011 9:41 am
Logarithm with Base 10
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
-
- Posts: 162
- Joined: Wed Jun 17, 2009 10:18 pm
Logarithm with Base 10
Code: Select all
$\log_{10} a$
Code: Select all
\newcommand\logten{\ensuremath{\log_{10}}
Code: Select all
$\logten a$
-
- Posts: 402
- Joined: Fri May 20, 2011 9:41 am
Logarithm with Base 10
Code: Select all
$-\log_{10}(\text{0.003 mol/L})$
Logarithm with Base 10
Code: Select all
\newcommand\logten{\ensuremath{\log_{10}\;}
- Stefan Kottwitz
- Site Admin
- Posts: 10335
- Joined: Mon Mar 10, 2008 9:44 pm
Logarithm with Base 10
Code: Select all
\newcommand*{\logten}{\mathop{\log_{10}}}
Stefan
Logarithm with Base 10
Code: Select all
\documentclass{article}
\usepackage{cool,siunitx}
\Style{LogShowBase=always}
\sisetup{per-mode=symbol}
\begin{document}
\(\Log[10]\SI{.003}{\mole\per\liter}\)
\end{document}