latex

LaTeX

Environment

  • mac上推荐使用MacTex
  • 编辑器个人更喜欢TexStudio
  • 为保证中文正常显示,把默认compiler设置为xelatex,文件编码保证为UTF8。

builder

utf ecoding

A Simple Diary Example

code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
\documentclass[utf8]{ctexart}
\usepackage{indentfirst}
\setlength{\parskip}{1em}
\title{\textbf{My Diary}}
\date{\textbf{Apr. 2016}}
\author{\textbf{代东洋}}
\begin{document}
\maketitle
\tableofcontents
\section{30th Apr. 2008 }
\noindent \emph{Saturday\hspace{\fill} Sunny}

今天是四月的最后一天。

\end{document}

result

simplediary.png