textcomp 包的问题

textcomp 包的问题

当我添加\usepackage{textcomp}序言时,似乎没有任何内容被添加到我的 MiKTeX 包数据库中。

当使用\textcopyleft从该字符集插入字形时,会出现一个丑陋的位图版本的版权字符。

检查“综合 Latex 符号列表”发现其中肯定有一个很好的矢量化符号,尽管它声称该字符是从包中获得的textcomp

有任何想法吗 ?

答案1

也许作为替代方案,只需使用

\usepackage{graphicx}% http://ctan.org/pkg/graphicx
\newcommand{\copyleft}{\reflectbox{\copyright}}

镜像\copyright

\文本版权

\documentclass{article}
\usepackage{textcomp}% http://ctan.org/pkg/textcomp
\usepackage{graphicx}% http://ctan.org/pkg/graphicx
\newcommand{\copyleft}{\reflectbox{\copyright}}
\begin{document}
\copyright \textcopyright \textcopyleft \copyleft
\end{document}

答案2

偶然间我发现了一种使用 Tikz 添加 copyleft 符号的简单方法:

在序言中:

\newcommand*\circled[1]{\tikz[baseline=(char.base)]{\node[shape=circle,draw,inner sep=1pt](char){#1};}}

在文档中:

\circled{\reflectbox{c}} versus \copyright

相关内容