\ textnumero和字体编码
我目前在我的LaTeX文档中使用 textnumero标志。 因此,我需要包含'textcomp'包。 当这样做时,我得到一个编译器错误,指出:
! Package textcomp错误:Symbol texnumero不提供
(textcomp)字体家族ptm中的TS1编码。
(textcomp)改为使用默认族。
usepackage[T1]{fontenc}
usepackage{times}
usepackage{ucs}
usepackage[latin1]{inputenc}
usepackage[textcomp]
%... somewhere in the document
textnumero ...
我怎样才能摆脱这个信息? 我可以只为数字符号设置其他字体或编码吗?
非常感谢,
Ovanes
好,我知道了。 更改为具有此标志的字体解决了问题。
usepackage{savesym}
usepackage{amsmath, amsfonts, amsthm, amssymb}
savesymbol{iint}
usepackage{txfonts} % this is the font
restoresymbol{TXF}{iint}
usepackage{ucs}
usepackage[ansinew]{inputenc}
usepackage{textcomp}
注意! 现在需要用savedym包来避免错误,iint已经定义好了。
问候,
Ovanes
如果你想避免更改字体的麻烦(例如,你想保持时间),试试这个:
usepackage{txfonts}
usepackage{times}
newcommand{ftextnumero}{{fontfamily{txr}selectfont textnumero}}
...
ftextnumero 1
...
这对我有用:
usepackage[warn]{textcomp}
(取自这里)
链接地址: http://www.djcxy.com/p/869.html