latex 中包变更的使用

latex 中包变更的使用

你好,我正在使用“trackchanges”包。它非常适合我的研究所模板,但当我添加图形时它停止工作,它停止工作,有什么建议吗

\documentclass[12pt,a4paper]{report}
\usepackage{iisctemp}         %This works trackchanges doesnt work
%\pagestyle{bfheadings}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{caption}
\usepackage{draftcopy}
\usepackage{lscape}
\usepackage[noadjust]{cite}
\usepackage[section] {placeins}
\usepackage[inline]{trackchanges}    %This works iisctemp doesnt work
\usepackage{mathptmx} 
\usepackage{amsmath, amsthm, amssymb}
\usepackage{multirow}
\usepackage[english]{babel}
\usepackage[hidelinks=true]{hyperref}
\usepackage{appendix}
\usepackage{nomencl}
   \usepackage{algorithm}
   \usepackage[noend]{algpseudocode}
  \graphicspath{ {images/} }
    \begin{document}
  \chapter{Introduction}
   random text 
  \begin{figure}
\includegraphics[]{1.eps}
  \end{figure}
 \end{document}

在此处输入图片描述

iisctemp 包和跟踪更改可以通过此链接获取https://drive.google.com/open?id=0BwHFi6p7Ry9JcVNRSkFSSnJqamc

答案1

iisctemp.sty重新定义了浮点数使用的内部命令,如果加载了颜色包,该命令将不起作用。

你可以尝试这样的方法来适应你的风格:

\makeatletter \let\ori@xfloat\@xfloat\makeatother

\usepackage{iisctemp}         %

\makeatletter \let\@xfloat\ori@xfloat\makeatother

\usepackage{xpatch}
\makeatletter
\xpretocmd\@xfloat{\singlespace}{}{\fail}
\makeatother

但如果有人能更新风格就更好了。

相关内容