MacTeX新手学习笔记

新手,从0开始学习MacTeX。在这里记录一下学习心得和一些常用的代码以及功能,方便自己以后忘记了可以来这里查找,回忆。

首先在官网安装MacTeX ,但是最近官网不知道为什么一直下载失败,感谢我的朋友小明将文件上传的百度云使我最终可以成功安装MacTeX,在这里分享一下MacTeX百度云资源,遇到同样问题的同学可以点这里自行下载MacTeX。

安装成功后一共有五个应用,其中TeXShop是编译器,主要是用它输入代码进行编译排版后生成pdf文件。

下面是用TeXShop写论文的一些基础格式的代码的例子,编译格式选XeLaTeX,%加内容为注释不影响编译:

\documentclass{article}
\usepackage{xeCJK} %配置mactex宏包
\setCJKmainfont{STKaiti} %设置字体为楷体,不可省略
\author{郑女士} %作者名称
\title{Hello World} %文章题目
\begin{document}
\maketitle %加题目,后面的日期暂时还不知道怎么去掉。
\tableofcontents %加目录
  \section{Hello China} China is in East Asia. % 第一节
    \subsection{Hello Beijing}
    The Newton's second law is $F=ma$. %加公式,公式为斜体显示
    
    Beijing is 
    the capital 
    of China. % 子段落,这种空格或换行不会产生任何变化
    
    Washington is %这种空行就是换行
    
    the capital
    
    of America.
    
    Amsterdam is \\ the capital \\ %这种符号属于段内换行,首字符不会空两格。
    of the Netherlands.
     \subsubsection{Hello Dongcheng District}
      \paragraph{Tian'anmen Square}is in the center of Beijing.
       \subparagraph{Chairman Mao}is in the center of Tian'anmen Square.
    \subsection{Hello Guangzhou}
      \paragraph{Sun Yat-sen University}is the best university of Guangzhou.
 \end{document} %文件结束

暂时先写这些,接下来会更新一些用TeXShop和beamer生成幻灯片的笔记,还在学习中。

你可能感兴趣的:(学习笔记)