如何用Ctex或者Latex输出PDF格式的文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何用Ctex或者Latex输出PDF格式的文件相关的知识,希望对你有一定的参考价值。
可以的,除了输出PDF格式还支持生成ps文件% example1.tex
documentclassreport
begindocument
This is my first atex typesetting example.\
this is my first atex typesetting example.\
this is my first atex typesetting example.\
i am mr. edward g.j. lee, g.j. is a abbreviation of my name.\
i am mr. edward g.j. lee, g.j. is a abbreviation of my name.\
please see appendix a. we will be there soon.\
please see appendix a
ull. we will be there soon.
nddocument
比如以上这个tex文档,可以这样编译生成pdf:
1.直接生成pdf
pdflatex example1.tex
2.用dvi文件生成生成pdf
latex example1.tex => 生成example1.dvi
dvipdfm[x] example1.dvi => 把example1.dvi 转为example1.pdf
3.用ps文件生成pdf
latex example1.tex => 生成example1.dvi
dvips -ppdf example1.dvi => 生成example1.ps
ps2pdf example1.ps => 用example1.ps 生成example1.pdf 参考技术A 有两种方式, 第一是采用latex编译器, 生成dvi文件,再转化为pdf文件.或者直接使用paflatex编译器,则直接生成pdf文件.本回答被提问者采纳
如何用Latex合并多个pdf文件?
如何用Latex合并多个pdf文件?
用TeX合并pdf, 用LaTeX合并pdf
代码:
\documentclass[a4paper]{article} \usepackage{pdfpages} \begin{document}
\includepdfmerge{1.pdf,1-3} \includepdfmerge{2.pdf,5-13}
\end{document}
其中命令\includepdfmerge{1.pdf,1-3}就是导入1.pdf的1至3页.
命令\includepdfmerge{2.pdf,5-13}就是导入2.pdf的5至13页.
注意使用 pdflatex 编译文件
以上是关于如何用Ctex或者Latex输出PDF格式的文件的主要内容,如果未能解决你的问题,请参考以下文章
LatexLatex小白入门——如何用.bib文件自动生成论文Reference