置頂介紹文

這裡主要放一些關於數學和 LaTeX 的文章, 文章內的檔案一律用 xelatex 編譯而成。
如果你想下載我的 tex 檔回去修改編譯, 請將 preamble.7z 解壓縮後和 tex 檔放在同一個資料夾中即可編譯。
部落格內的文章也有部份是網路或書籍中的資料經過統整編輯而成, 如有侵權請告知。
有任何問題也歡迎留言或 E-mail 給我。

2016年6月6日 星期一

用 LaTeX 做數學考卷 (一) : 版面設定篇

開一個新系列來說說怎麼用 LaTeX 做一份數學考卷。

一、初始設定


\documentclass[12pt]{article}

\usepackage[CJKnumber]{xeCJK}
\setCJKmainfont[BoldFont={cwTeX Q Hei Bold}]{cwTeX Q Ming Medium}
\usepackage[a4paper, margin=1.5cm]{geometry}%設定紙張及邊界
\usepackage{amsmath, amsfonts, amssymb}%數學符號


\usepackage[a4paper, margin=1.5cm]{geometry} 能讓我們設定紙張的邊界, 我的設定是 A4 紙, 留白 (margin) 1.5cm。

\usepackage{amsmath, amsfonts, amssymb} 這行一定要加, 才會有足夠多的數學符號可以用。

二、標題

一般而言, 考卷都有標題和讓學生寫班級姓名座號的地方, 除了標題內容, 我們希望每張考卷的設定都是一致而且不用重複輸入,  那麼我們可用 \newcommand 來設定。


\newcommand{\testtitle}[1]{
\begin{center}{\large\bf #1}\end{center} \hfill 班級:\underline{\hspace{2cm}}座號:\underline{\hspace{1cm}}姓名:\underline{\hspace{3cm}} \\[2pt]
}

\begin{document}

\testtitle{臺北市立麥斯高級中學107學年度第1學期第一次期中考數學科測驗卷}

之後是考卷的內容...

\end{document}


\newcommand{\testtitle}[1]{} 語法很簡單, \testtitle 是我們設定的新指令, [1] 則是和 #1 對應, #1 是輸入的內容。

\begin{center}{\large\bf #1}\end{center} 設定標題格式, 可以看到, 我們在正文中輸入的標題會以 置中(center)、粗體(\bf)、放大(\large) 顯示出來

\hfill 班級:\underline{\hspace{2cm}}座號:\underline{\hspace{1cm}}姓名:\underline{\hspace{3cm}} \\[2pt] 
緊接著出現班級姓名座號的欄位, \hfill 是置右, \underline{\hspace{2cm}} 則是畫底線, 2cm 是底線長度。

三、頁碼

如果要刪除頁碼, 可以在宣告區 (\begin{document} 之前) 加入 \pagestyle{empty} 。

article_用Latex做數學考卷1.tex article_用Latex做數學考卷1.pdf

沒有留言:

張貼留言