将 EPS 图转换为具有特殊字符的 LaTeX

将 EPS 图转换为具有特殊字符的 LaTeX

我正在尝试放置用 SigmaPlot 制作的 EPS 图。轴标题包含一些葡萄牙语字符,如“ç”或“ã”,可能还有方程式。

当我将图放入 LaTeX 时,我没有得到特殊字符。这是我的代码、我尝试使用好图像制作的 2 个图以及结果。

有没有办法在 y 轴上获得“Remoção”??

\documentclass[12pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{makeidx}
\usepackage{graphicx,graphics}
\usepackage[brazil]{babel}
\usepackage{subfig}
\usepackage{epstopdf} %Para importar os graficos feitos em GraphPad

\begin{document}
    \begin{figure}[h]
        \centering
        \subfloat[With no text modification]{
            \includegraphics{EPS1}
        }
        \subfloat[With  text modification]{
            \includegraphics{EPS2}
        }
        \caption{Figures with text problems}
    \end{figure}
\end{document} 

在此处输入图片描述

以下是剧情文件https://drive.google.com/drive/folders/0B6XiD7MJaw4mRDFiUTd3SHVKYW8?usp=sharing

答案1

问题是epstopdf没有嵌入所需的字体:Times-ItalicTimes-Roman在此处输入图片描述

补充评论:您提供的 EPS 文件是 ISO 8859-1 编码的,这也可能是问题所在。

您能分享有关您的 TeX 系统、epstopdf版本的详细信息吗?您是否times安装了软件包等等?

相关内容