Lecturer: liftleaf
進到 Overleaf 首頁,註冊好並登入
找到左上角的 New Project,勇敢地按下去
有許多的模板 (? 可以選擇!
可以先看看 Example Project 裡面由什麼東西!
\documentclass{article}
\begin{document}
Hello, \LaTeX!
\end{document}
把這串程式碼打到你的程式碼區,看看會印出什麼吧!
\(\text{\LaTeX}\)
一份 LaTeX 文件大致可以分為兩大區塊:Preamble、Text
\documentclass{article}
% preamble
\begin{document}
% text
\end{document}
{class}:可以放 article, beamer, report, ... 各種文件形式
[options]:可以放10pt, a4paper, ... 各種設定
\documentclass[options]{class}
格式:
\documentclass[b5paper, 11pt]{report}
{package}:依據自己需求,放需要的 package。
\usepackage{package}
格式:
\usepackage{CJKutf8}
% 引入中文字!
{name}:新指令的名稱
[num]:新指令的變數個數,若無可省
{definition}:新指令代表的東西,變數以#1, #2, ... 表示
\newcommand{name}[num]{definition}
格式:
\documentclass{article}
\newcommand{\greet}{Hello, LaTeX}
\newcommand{\intro}[2]{The lesson #1 will be lectured by #2}
\begin{document}
\greet \\
\intro{Word Processing}{rainple, liftleaf, and repkironca}
\end{document}
\author{name}
格式:
\title{name}
\date{date}
如果有設定 \author 和 \title
我們就可以在 內文 裡面使用 \maketitle 啦!
hi there
hi there
hi there,
my name is liftleaf
hi there,
my name is liftleaf
hi there, \\
my name is liftleaf
符號 | 打法 | 符號 | 打法 |
---|---|---|---|
~ | \textasciitilde | & | \& |
# | \# | _ | \_ |
$ | \$ | \ | \textbackslash |
% | \% | { | \{ |
^ | \textasciicircum | } | \} |
\usepackage[T1]{fontenc}
\usepackage{tgbonum}
Hi there,
{\fontfamily{cmss}\selectfont This is a different font.}
\documentclass{article}
\usepackage{blindtext}
\begin{document}
\section{This is section 1}
\subsection{This is subsection 1.1}
\blindtext
\section{This is section 2}
\end{document}
\part (特定類型如 book, report 才可能有) |
\chapter (特定類型如 book, report 才可能有) |
\section |
\subsection |
\subsubsection |
\paragraph (不換行) |
\subparagraph (不換行) |
使用 \usepackage{graphicx},就可以插入圖片囉!
\includegraphics{random_pic.jpg}
\includegraphics[width = \textwidth]{random_pic.jpg}
\begin{figure}[!h]
\includegraphics[width = \textwidth]{random_pic.jpg}
\caption{repkironca}
\end{figure}
\begin{tabular}{c c c}
11 & 12 & 13 \\
21 & 22 & 23 \\
31 & 32 & 33 \\
\end{tabular}
\begin{table}[!h]
\begin{tabular}{c c c}
11 & 12 & 13 \\
21 & 22 & 23 \\
31 & 32 & 33 \\
\end{tabular}
\caption{numbers}
\end{table}
\begin{tabular}{|c c||c}
\hline
cell1 & cell2 & cell3 \\
cell4 & cell5 & cell6 \\
\hline
cell7 & cell8 & cell9 \\
\end{tabular}
這邊請記得 \usepackage{amsmath}
使用 \split,可以讓多行的算式對齊在等號上
DC: __chang___#4925