zoukankan      html  css  js  c++  java
  • Latex Error cannot determine the size of graphic 报错的解决的方法

    Latex Error cannot determine the size of graphic 报错的解决的方法


                             


    插入jpg文件老是会报错...


    追究了半天,原来是编译的命令又问题,不应该使用

    latex ./hello.tex

    而应该使用

    pdflatex ./hello.tex


    以下是我用的測试代码。当中包括了中文字体的測试.

    documentclass{article}
    usepackage{CJKutf8}
    usepackage{graphicx}
    
    egin{document}
    
    egin{CJK}{UTF8}{gkai}
    这是一个楷体中文测试。处理简体字。
    end{CJK}
    
    egin{figure}[ht!]
    centering
    includegraphics[width=1.77in,height=1.75in]{/home/jasonleaster/a.jpg}
    end{figure}
    
    egin{CJK}{UTF8}{gbsn}
    这是一个宋体中文测试,处理简体字。
    end{CJK}
    
    egin{CJK}{UTF8}{bkai}
    這是一個big5編碼的楷體中文测試。處理繁體文字。

    end{CJK} egin{CJK}{UTF8}{bsmi} 這是一個个big5編碼的明體中文测試,處理繁體文字。 end{CJK} Just say hello world! : ) end{document}



    2014年 10月摄于 南山一阶 前



  • 相关阅读:
    C++ 实现简单快速排序
    LEETCODE 198. House Robber
    leetcode 174
    GIT 版本的回退
    unorderd_map 自定义键值及哈希函数的重载
    互斥锁 形成死锁实例
    leetcode 300
    LeetCode 62
    LeetCode 122
    SVN提交,强制注释
  • 原文地址:https://www.cnblogs.com/zfyouxi/p/5388385.html
Copyright © 2011-2022 走看看