无法使用 Fly-Latex 显示图像

无法使用 Fly-Latex 显示图像

我已经设置了一个运行良好的 Fly Latex 服务器。现在,我想向其中添加图像,每当我使用正确的语法添加图像名称时,我总是会得到一个包含图像名称的框。以下是代码 -

\documentclass{article}
\usepackage[pdftex]{graphicx}
\usepackage{color}
\graphicspath{ {\home\pranav\} }

    \title{Cartesian closed categories and the price of eggs}
    \author{Jane Doe}
    \date{September 1994}
    \begin{document}
   \maketitle
    \textcolor[Blue]{Hello world!}
   It is so nice to see the world!
    \includegraphics{details.png}

\end{document}

我从 CTAN 编译了颜色包并将其放入 texlivepackages 目录中,但这不起作用。有人能告诉我发生了什么吗?

答案1

您的代码产生

   { {\home \pranav \} } 
! Paragraph ended before \graphicspath was complete.

因为括号不匹配(\}字符}不是组结尾)

更改\}}

它产生

! LaTeX Error: Undefined color model `Blue'.

作为

\textcolor[Blue]{Hello world!}

应该

\textcolor{Blue}{Hello world!}

改变[]{} 生产

! LaTeX Error: Undefined color `Blue'.

预定义颜色为blue。修复此问题会产生错误

! Undefined control sequence.
\reserved@b ->\home 

因为乳胶路径应该使用宏/而不是该名称的文件夹。\home\home

因此将路径改为

\graphicspath{ {/home/pranav/} }

它运行没有错误:

在此处输入图片描述

如您所见,图形已包含在内。如果您看到一个带有文件名的框,则您的代码可能与您显示的示例不同,而是:

\documentclass[draft]{article}
\usepackage[pdftex]{graphicx}
\usepackage{color}
\graphicspath{ {/home/pranav} }

    \title{Cartesian closed categories and the price of eggs}
    \author{Jane Doe}
    \date{September 1994}
    \begin{document}
   \maketitle
    \textcolor{blue}{Hello world!}
   It is so nice to see the world!
    \includegraphics{details.png}

\end{document}

draft产生模式中

在此处输入图片描述

相关内容