使用 /up{/circle{1}} 编译时出错

使用 /up{/circle{1}} 编译时出错

我想要“度”符号:N° 我试过:BP N\up{\circle{1} } 但这会导致编译错误

编辑 :

BP N\up{blablabla}

運行良好。

BP N\circle{1}

運行良好。

BP N\up{\circle{1}}

导致以下错误:

===> Argument of \@circle has an extra }.

编辑于 13.03 PM:

最后我选择了这种方式:

\documentclass{article}  
\usepackage[utf8]{inputenc}  
\usepackage[francais{babel}  
\begin{document}  
    Chapitre N\up{o}1  
\end{document}

答案1

在此处输入图片描述

\documentclass{article}
\usepackage{textcomp}
\begin{document}

N\textdegree


\end{document}

你的问题中只显示了代码片段,但\up默认情况下根本没有定义,并且你没有显示它的定义,\circle仅供在\begin{picture}..\end{picture}

相关内容