Math & Science ⇒ Representation of Enthalpy and Heat of Formation
-
- Posts: 402
- Joined: Fri May 20, 2011 9:41 am
Representation of Enthalpy and Heat of Formation
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
Representation of Enthalpy and Heat of Formation
[1] Standard enthalpy of formation — Wikipedia, the free encyclopedia
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
-
- Posts: 402
- Joined: Fri May 20, 2011 9:41 am
Representation of Enthalpy and Heat of Formation
Code: Select all
\mathrm{\Enthalpy[exponent=\circ,subscript=right,unit=kJ](f){-92.5}}
In this document I used it like this:
Code: Select all
\documentclass[fleqn]{article}
\usepackage{amsfonts}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{amstext}
\usepackage{amsthm}
\usepackage{booktabs}
\usepackage{calc}
\usepackage[makeroom]{cancel}
\usepackage{chemfig}
\usepackage{chemmacros}
\usepackage[shortlabels,inline]{enumitem}
\usepackage{fix-cm}
\usepackage[T1]{fontenc}
\usepackage{fouridx}
\usepackage{fullpage}
\usepackage[margin=1in]{geometry}
\usepackage{graphicx}
\usepackage[utf8]{inputenc}
\usepackage{mathtools}
\usepackage[version=3]{mhchem}
\usepackage{microtype}
\usepackage{multienum}
\usepackage{multirow}
\usepackage{pifont}
\usepackage{pstricks}
\usepackage{siunitx}
\usepackage{textcomp}
\usepackage{type1cm}
\usepackage{ulem}
\usepackage{wasysym}
\usepackage{xfrac}
\usepackage{xspace}
\setlength{\parindent}{0in}
\setlength{\parskip}{0in}
\setlength{\mathindent}{0in}
\allowdisplaybreaks
\pagestyle{empty}
\DisableLigatures{encoding = *, family = *}
\newcommand{\since}{\raisebox{0.56pt}{\rotatebox[origin=c]{180}{$\Large\wasytherefore$}}}
\newcommand{\thus}{\Large{\wasytherefore}}
\newlist{longenum}{enumerate}{6}
\setlist[longenum,1]{label=\arabic*.}
\setlist[longenum,2]{label=\alph*)}
\setlist[longenum,3]{label=\alph*)}
\setlist[longenum,4]{label=(\roman*)}
\setlist[longenum,5]{label=(\alph*)}
\setlist[longenum,6]{label=\roman*)}
\renewcommand*\printatom[1]{\ensuremath{\mathsf{#1}}}
\begin{document}
\hfill Reaction Heats\hfill\llap{Tues, Oct 28, 2008} \par\medskip
\begin{longenum}[nosep,leftmargin=0in]
\item
$\begin{array}[t]{@{}ll@{}}
\ce{N2{\gas} + 3H2{\gas} -> 2NH3{\gas}} &\quad \mathrm{\Enthalpy[exponent=\circ,subscript=right,unit=kJ](f){-92.5}} \\ \addlinespace[\smallskipamount]
\ce{1/2N2{\gas} + 3/2H2{\gas} -> NH3{\gas}} &\quad \mathrm{\Enthalpy[exponent=\circ,subscript=right,unit=kJ](f){-92.5}}
\end{array}$
\end{longenum}
\end{document}
Representation of Enthalpy and Heat of Formation
Code: Select all
\documentclass{article}
\usepackage{chemmacros}
\begin{document}
\Enthalpy[exponent=\circ,subscript=right,unit=kJ](f){-92.5}
$\Delta H_{\mathrm{f}}^\circ = \SI{-92.5}{kJ}$
\end{document}
Code: Select all
\documentclass{article}
\usepackage{chemmacros}
\begin{document}
standard behaviour: \Enthalpy[exponent=\circ,subscript=right,unit=kJ](f){-92.5}
\newcommand*\mycirc{\raise2pt\hbox{$\scriptstyle\circ$}}
manually changed: \Enthalpy[delta={\Delta\;},exponent={\,\mycirc},subscript=right,unit=kJ](\,f){-92.5}
renewed command:
\renewstate[exponent={\,\mycirc},subscript-left=false,subscript={\,f}]{Enthalpy}{\,\mathrm{H}}{kJ}
\Enthalpy{-92.5}
\end{document}
-
- Site Moderator
- Posts: 814
- Joined: Tue Jul 01, 2008 2:19 pm
Re: Representation of Enthalpy and Heat of Formation
-
- Posts: 402
- Joined: Fri May 20, 2011 9:41 am
Re: Representation of Enthalpy and Heat of Formation
