Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

display local pdf #9

Open
tangqianyan opened this issue May 20, 2018 · 11 comments
Open

display local pdf #9

tangqianyan opened this issue May 20, 2018 · 11 comments

Comments

@tangqianyan
Copy link

If the pdf file lies in a folder, it can't be displayed correctly.
For example, {% pdf ./Linear/Linear01.pdf %}

@tangqianyan
Copy link
Author

I have solved the problem.
{% pdf ./Linear01.pdf %} will be ok.

@linchao1002
Copy link

Linear01.pdf 放在那个位置下呢

@superalsrk
Copy link
Owner

Linear01.pdf 放在那个位置下呢

at your source directory

@lingr7
Copy link

lingr7 commented Oct 6, 2019

老问题,我pdf文件放在了D:\git-for-use\hexo\source 这就是博客的source目录下,同时在D:\git-for-use\hexo\source_post的md文件里面写的代码是{% pdf ./Linear01.pdf %} 这样的,但是根本没有效果。实在没有办法了。如果是在线的pdf文件是可以正常使用的。本地的无效。
捕获.PNG
22.PNG

@caohongchuan
Copy link

老问题,我pdf文件放在了D:\git-for-use\hexo\source 这就是博客的source目录下,同时在D:\git-for-use\hexo\source_post的md文件里面写的代码是{% pdf ./Linear01.pdf %} 这样的,但是根本没有效果。实在没有办法了。如果是在线的pdf文件是可以正常使用的。本地的无效。
捕获.PNG
22.PNG

I have the same problem, but the pdf can display in the 'home page', when I point into my article, it will 'Failed to load PDF document'.

@linchao1002
Copy link

linchao1002 commented Oct 13, 2019 via email

@caohongchuan
Copy link

老哥,我忘记了啊,这问题我也记不得啊,实在不行你把本地的都弄成在线的使用不就行了。我建议你打开浏览器,看一下原码,未显示的pdf那里的路径能不能拼接上??或者是不是格式里面的路径的. /之类的写法有问题 ------------------ 原始邮件 ------------------ 发件人: "notifications"[email protected] 发送时间: 2019年10月13日(星期天) 上午9:22 收件人: "superalsrk/hexo-pdf"[email protected]; 抄送: "linchao"[email protected];"Comment"[email protected]; 主题: Re: [superalsrk/hexo-pdf] display local pdf (#9) 老问题,我pdf文件放在了D:\git-for-use\hexo\source 这就是博客的source目录下,同时在D:\git-for-use\hexo\source_post的md文件里面写的代码是{% pdf ./Linear01.pdf %} 这样的,但是根本没有效果。实在没有办法了。如果是在线的pdf文件是可以正常使用的。本地的无效。 I have the same problem, but the pdf can display in the 'home page', when I point into my article, it will 'Failed to load PDF document'. — You are receiving this because you commented. Reply to this email directly, view it on GitHub, or unsubscribe.

我看过了, 在主页中时可以找到的
image
但是进入文章之后他的pdf加载路径就给换了,所以加载失败
image

@linchao1002
Copy link

linchao1002 commented Oct 13, 2019 via email

@caohongchuan
Copy link

caohongchuan commented Oct 13, 2019

看起来就是路径不对吗,放的位置可以换一下吗,前面的2019日期是什么??为什么会有------------------ 原始邮件 ------------------ 发件人: "notifications"[email protected] 发送时间: 2019年10月13日(星期天) 上午10:16 收件人: "superalsrk/hexo-pdf"[email protected]; 抄送: "linchao"[email protected];"Comment"[email protected]; 主题: Re: [superalsrk/hexo-pdf] display local pdf (#9) 老哥,我忘记了啊,这问题我也记不得啊,实在不行你把本地的都弄成在线的使用不就行了。我建议你打开浏览器,看一下原码,未显示的pdf那里的路径能不能拼接上??或者是不是格式里面的路径的. /之类的写法有问题 ------------------ 原始邮件 ------------------ 发件人: "notifications"[email protected] 发送时间: 2019年10月13日(星期天) 上午9:22 收件人: "superalsrk/hexo-pdf"[email protected]; 抄送: "linchao"[email protected];"Comment"[email protected]; 主题: Re: [superalsrk/hexo-pdf] display local pdf (#9) 老问题,我pdf文件放在了D:\git-for-use\hexo\source 这就是博客的source目录下,同时在D:\git-for-use\hexo\source_post的md文件里面写的代码是{% pdf ./Linear01.pdf %} 这样的,但是根本没有效果。实在没有办法了。如果是在线的pdf文件是可以正常使用的。本地的无效。 I have the same problem, but the pdf can display in the 'home page', when I point into my article, it will 'Failed to load PDF document'. — You are receiving this because you commented. Reply to this email directly, view it on GitHub, or unsubscribe. 我看过了, 在主页中时可以找到的 但是进入文章之后他的pdf加载路径就给换了,所以加载失败 — You are receiving this because you commented. Reply to this email directly, view it on GitHub, or unsubscribe.

Thanks, I have solved it.
{% pdf ./Linear01.pdf %} 不能在前面加 . 否则就成了相对路径了。 直接 {% pdf /Linear01.pdf %} 就是从根目录开始。

@linchao1002
Copy link

linchao1002 commented Oct 13, 2019 via email

@lingr7
Copy link

lingr7 commented Oct 13, 2019

确实如此,只要去掉点,这个路径就是从根目录开始,
使用 Github 空间搭建 Hexo 技术博客——Hexo NexT主题内添加pdf 插件(十一) - wugenqiang的博客 - CSDN博客 https://blog.csdn.net/wugenqiang/article/details/88377669
我使用里面的建立书籍页面的二三步了。
把pdf放到根目录/book/name.pdf
然后在文章里面用{% pdf /book/nlp.pdf %}就行了。
捕获.PNG

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants