\documentclass[12pt]{report}
\usepackage[utf8]{inputenc}
\usepackage{gensymb}
\usepackage[version=3]{mhchem}
\usepackage{mathtools}
\usepackage{float}
\usepackage{booktabs}
\usepackage[bottom]{footmisc}
\usepackage{tocbibind} % fa apparire la bibliography
\usepackage{graphicx}
\graphicspath{{images/}}
\usepackage{dirtytalk}
\usepackage{csquotes}
\usepackage{siunitx}
\usepackage{color, colortbl}
\newcommand{\ammonia}{\ce{NH3}}
\newcommand{\co}{\ce{CO2}}
\newcommand{\water}{\ce{H2O}}
\setlength\parindent{0pt}
\usepackage{enumerate}
\usepackage{listings}
\usepackage{color}
\usepackage{mathptmx}
\usepackage{geometry}
\geometry{a4paper, top=3 cm, left=3.5 cm, right=3.0cm, bottom=3.0cm}
\linespread{1.5}
\renewcommand{\thefootnote}{\alph{footnote}}
\usepackage{ragged2e}
\definecolor{LightCyan}{rgb}{0.88,1,1}
\renewcommand{\thefootnote}{\alph{footnote}}
\usepackage{listings}
\usepackage{xr}
\begin{equation}\label{eq:Ammonia}
\centerline{\ce{2NH3_{(g)} + \co_{(g)} <=> NH2COONH4_{(l)}}
\footnote{$\Delta H =\SI{-117}{\frac{Kj}{mol}}$ at 110 atm and 160\celsius}}
\end{equation}
\begin{equation}\label{eq:urea}
\centerline{\ce{NH2COONH4_{(l)} <=> CO(NH2)2_{(l)} + H2O_{(l)}}
\footnote{($\Delta H =\SI{+15.5}{\frac{Kj}{mol}}$ at 160-180\celsius}}
\end{equation}
我想在页面底部显示脚注,但它没有显示。
答案1
您的代码中存在一些缺陷。例如,\centerline
该代码的使用让您头疼,而且毫无用处。
您正在加载软件包,但并未正确使用它们。此外,还有些软件包重复了您加载的其他软件包的操作。例如,gensymb
没有什么siunitx
可以做得更好。也csquotes
比 做得好得多dirtytalk
。
您的前言很混乱,而且有很多重复。我删除了一些没用的包(如果您float
为[H]
选项加载,请不要)。不要使用colortbl
and color
,而是xcolor
使用选项调用table
。还tocbibind
应该接收nottoc
选项,否则目录将在目录中列出。
我还删除了\linespread{1.5}
;如果您需要增加行间,请使用setspace
。
请注意,\SI{-117}{\kilo\joule\per\mol}
避免了用大写字母表示“千”前缀而用小写字母表示“焦耳”的错误。我设置了per-mode=fraction
,但如您所见,结果很差。
而不是mathptmx
,更好的做法是
\usepackage{newtxtext,newtxmath}
(但我没有改变这一点)。
最后,我不会在显示的公式中添加脚注,而是直接在显示后添加注释作为文本。但您(或您的顾问)才是最终的评判者。
\RequirePackage{fix-cm} % pull away spurious warnings
\documentclass[12pt]{report}
\usepackage[utf8]{inputenc}
\usepackage{geometry}
\usepackage{mathptmx}
\usepackage[version=3]{mhchem}
\usepackage{mathtools}
\usepackage{booktabs}
\usepackage[bottom]{footmisc}
\usepackage[nottoc]{tocbibind}
\usepackage{graphicx}
\usepackage{enumerate}
\usepackage{listings}
\usepackage{csquotes}
\usepackage{siunitx}
\usepackage[table]{xcolor}
\usepackage{ragged2e}
\usepackage{xr}
% generic set up
\geometry{a4paper, top=3 cm, left=3.5 cm, right=3.0cm, bottom=3.0cm}
\graphicspath{{images/}}
\renewcommand{\thefootnote}{\alph{footnote}}
\definecolor{LightCyan}{rgb}{0.88,1,1}
\sisetup{per-mode=fraction}
% personal commands
\newcommand{\ammonia}{\ce{NH3}}
\newcommand{\co}{\ce{CO2}}
\newcommand{\water}{\ce{H2O}}
\begin{document}
\begin{equation}\label{eq:Ammonia}
\ce{2NH3_{(g)} + \co_{(g)} <=> NH2COONH4_{(l)}}
\footnote{$\Delta H =\SI{-117}{\kilo\joule\per\mol}$ at \SI{110}{atm}
and \SI{160}{\celsius}}
\end{equation}
\begin{equation}\label{eq:urea}
\ce{NH2COONH4_{(l)} <=> CO(NH2)2_{(l)} + H2O_{(l)}}
\footnote{($\Delta H =\SI{+15.5}{\kilo\joule\per\mol}$ at
\SIrange{160}{180}{\celsius}}
\end{equation}
\end{document}
(注意:为了生成较小的图片,我调整了文本高度,但这对最终结果没有影响。)