1.首先是安装配置
第一个就是需要下载的内容,下载后安装。
2.错误修改参考:http://blog.csdn.net/zuochao_2013/article/details/57089086
出现的错误如下:
Error launching Console Application PDFLaTeX ...
Command Line: pdflatex.exe --interaction=errorstopmode --synctex=-1 "practice.tex"
Startup Folder: C:\Users\shahand\WinEdt Team\WinEdt 8
The system cannot find the file specified.
.解决办法
系统无法找到原有的文件,所以我就找到miktex的安装目录:H:\CTex\MiKTeX\miktex\bin,将此目录放入到环境变量Path中,程序又开始可以运行了。
3.一些基础内容
%导言区
\documentclass{book} %大小写敏感
\usepackage{amsmath}
%正文区
\begin{document}
\title{This is my first book.} %只能写英语 否则显示不出来
\author {Zhang Hui} %主义都需要{}将内容括起来 否则输出的PDF会有奇怪的错误
\date{} %去除日期
\maketitle
\tableofcontents %展现目录
\mainmatter %页数从正文开始 多编译几次就会出来(因为有的时候第一次编译可能还是原来的内容)
\part{element}
\chapter{introduction}
\section{nice}
\part{two}
\chapter{good}
\section{first}
\paragraph{9}
\end{document}
4.基础教程链接:https://www.bilibili.com/video/av8289684/index_4.html#page=1