Math & Science ⇒ Logarithm with Base 10
-
- Posts: 402
- Joined: Fri May 20, 2011 9:41 am
Logarithm with Base 10
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
-
- 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: 10359
- 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}