Math & Science ⇒ siunitx package
-
- Posts: 402
- Joined: Fri May 20, 2011 9:41 am
siunitx package
C
----
mol
like how they made it appear in the siunitx package(Page 9). But, everytime I do it with TeXnicCenter i get something like "C/mol" with the sideways slash. What am I doing wrong? I loaded all the packages it asked me to.
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
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
siunitx package
Code: Select all
\documentclass[11pt]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[margin=1in]{geometry}
\usepackage{siunitx}
\sisetup{%
output-decimal-marker={.},
load-configurations=abbreviations,
group-separator={,},
per-mode=fraction
}
\usepackage{fix-cm}
\begin{document}
\SI{1.345}{\coulomb\per\mole}
\end{document}
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
-
- Posts: 162
- Joined: Wed Jun 17, 2009 10:18 pm
Re: siunitx package
-
- Posts: 402
- Joined: Fri May 20, 2011 9:41 am