数学环境 Minion Pro

数学环境 Minion Pro

我正在使用 minion pro 编写报告,并且想要更改文本环境中的数学符号。目前,文本中的数学符号(章节编号、小节编号、图号)在图中标记为黑色: enter image description here

是否可以将文本中的数学符号标记为红色?我尝试使用

\usepackage[textlf,mathlf,minionint]{MinionPro}

这给了我一个错误:texify:pdflatex.exe falied to create pdf file.

有人能帮我吗?

已编辑---

这是我的完整排版

\documentclass[12pt,vi,twoside]{mitthesis}
\input{Body/header}
\pagestyle{plain}

\begin{document}
%\fontencoding{LY1}\fontfamily{ACaslonPro}\mdweight

\input{Body/cover}
\pagestyle{plain}
\input{Body/contents}

%now start the fancy headings
\pagestyle{fancyplain}
\addtolength{\headheight}{\baselineskip}
%add a nice little line underneath the heading
%\renewcommand{\headrulewidth}{0.6pt}

\input{Body/chap1}
\input{Body/chap2}
\input{Body/chap3}
\input{Body/chap4}
\input{Body/chap5}

\clearpage
%\appendix
%\addcontentsline{toc}{part}{Appendix}
%\input{Body/appa}
%\input{Body/biblio.tex}
%\input{Body/index.tex}
\end{document}

以下是我的 header.tex 文件中的信息

\usepackage[mathlf,minionint]{MinionPro}
\usepackage{MinionPro}
%\usepackage{MyriadPro}
%\renewcommand{\sfdefault}{Minion-LF}
 \usepackage[T1]{fontenc}    %(Not Sure whether to include this package or not)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage{url}
\usepackage{textcomp}
\usepackage{verbatim}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{mathrsfs}
\usepackage{mathtools}      % fix amslatex, provide \smashoperator, \cramped, \adjustlimits
\usepackage{empheq}
\usepackage{program}
\usepackage{newlfont}
\usepackage{rotating}
\usepackage{varioref}
\usepackage{graphicx}
%\usepackage{txfont}
\usepackage{table}
\usepackage{makeidx}
\usepackage{tocbibind}
\usepackage{program}
\usepackage{import}
\usepackage{subfigure}
\usepackage{verbatim}
\usepackage{colortbl}
\usepackage{float}
\usepackage{fancyhdr}
\usepackage[protrusion=true,expansion=true]{microtype}
\usepackage[Sonny]{fncychap} 
\usepackage{booktabs} 
\usepackage{parskip}
\usepackage{fixltx2e}  
\usepackage{eucal}      
\usepackage{ulem} 
\normalem % normal emph w/ ulem
\usepackage[numbers,square,sort&compress]{natbib}
\usepackage[pdftex,plainpages=false,breaklinks=true,colorlinks=true,urlcolor=blue,citecolor=green,linkcolor=blue,bookmarks=true,
bookmarksopen=true,bookmarksopenlevel=1,pdfstartview=Fit,pdfview=Fit,linktocpage=true,bookmarksnumbered=true]{hyperref}
\usepackage{hypernat}
\usepackage{array}
\usepackage{supertabular}
\usepackage{cleveref}
\usepackage{multicol}
\usepackage{multirow}
\usepackage{float}
\usepackage{alltt}
\usepackage{eucal}
\usepackage{emptypage} 

% Symbols used by the authors
    \DeclareMathOperator{\suffix}{suffix}
    \DeclareMathOperator{\prefix}{prefix}
    \DeclareMathOperator{\prob}{Pr}
    \DeclareSymbolFont{AMSb}{U}{msb}{m}{n}
  \DeclareMathSymbol{\N}{\mathbin}{AMSb}{"4E}
  \DeclareMathSymbol{\realNums}{\mathbin}{AMSb}{"52}


%this defines the basic headers and footer
% styles when we use the 'fancyhdr' styles
%\lhead[\fancyplain{}{\itshape\footnotesize\thepage}]{\fancyplain{}{\itshape\footnotesize\rightmark}}
%\rhead[\fancyplain{}{\itshape\footnotesize\leftmark}]{\fancyplain{}{\itshape\footnotesize\thepage}}
%\lhead[\fancyplain{}\bfseries\thepage]{\fancyplain{}\bfseries\rightmark}
%\rhead[\fancyplain{}\bfseries\leftmark]{\fancyplain{}\bfseries\thepage}
%\pagestyle{fancyplain}
\addtolength{\headwidth}{0.5\marginparsep}
\addtolength{\headwidth}{0.5\marginparwidth}
%\renewcommand{\chaptermark}[1]{\markboth{#1}{}}
%\renewcommand{\sectionmark}[1]{\markright{\thesection\ #1}}
\lhead[\fancyplain{}{\footnotesize\thepage}]{\fancyplain{}{\footnotesize\rightmark}}
\rhead[\fancyplain{}{\footnotesize\leftmark}]{\fancyplain{}{\footnotesize\thepage}}
\cfoot{}
\cfoot{}

相关内容