多行注釋
/iffalse
%注釋開始
%需要注釋掉的內容
……..
/fi%
注釋結束
/.../
寫法
this is my first /latex typesetting example.
會被被釋成:
this is my first l
atextypesetting example.la
tex
和typesetting
連起來了,要使中間有空格要這樣:
this is my first typesetting example.
this is my first /latex{} typesetting example.
this is my first /latex/ typesetting example.
///%
除注釋以外的用法將
a 和try
分行寫,而且它們是連起來
this is my fisrt /latex/ document. give /latex/ a%
try.
會被被釋成:
this is my fisrt l
atex document. give l
atex atry.
~
和/
強迫插入乙個較小的字間空白~/
幾乎是一樣的,但是
/ 表示不可以在這裡進行換行。 ~
在tex
裡表示tie
,就是綁住的意思
i am mr.~edward g.j. lee, g.j. is a abbreviation of my name.
i am mr./ edward g.j. lee, g.j. is a abbreviation of my name.
生成:
i am mr. edward g.j. lee, g.j. is an abbreviation of my name.
i am mr. edward g.j. lee, g.j. is an abbreviation of my name.
/null
表示後面的標點表示句子結束,所以標點後要加稍大點的空白
/ldots /dots
省略號
i』m not a good man ..., but a good husband ....
錯誤示範
i』m not a good /ldots/ man /ldots, but a good husband /ldots.
i』m not a good /dots/ man /dots, but a good husband /dots.
- -- ---
破折號
$-5$
減號
$-5$ 輸出−
5藍色字型
/documentclass
/usepackage
/begin
/textcolor
/end
latex
文件結構
/documentclass
這裡是preamble區
/begin
這裡是文字區
/end
/documentclass
會影響整篇文件的指令,通常是放在
preamble區:
/linespread
將行距擴大1.36
倍
/linespread
/parindent=0pt
/parindent
將全文縮排設成0
/parindent=0pt
/noindent
下指令的地方縮排設成0
//[1cm]
換行,行間間距一厘公尺
大家來玩個遊戲
老股民宣告 這裡是深度套牢者抱團取暖的地方。由於我本人的失誤,致使很多老朋友進入深度套牢的尷尬。所以,從去年十一月份開始,我只對因我而套進去的人及在這裡的老朋友們說,和他人一概沒關係,我的思維僅限於此。老股民特別說明 本人以及這裡的老朋友們滿倉持有 深度套牢於銀行股。我的所有塗鴉純屬自娛自樂與尋求心...
小白來學Git
git這個工具實在是很強大,對 的管理與在專案中的應用情景都顯得這個工具很實用 很牛叉。不管是管理自己的 還是在github上學習應用開源的 我覺得學習git真的很有必要。雖然接觸這個有很久了,但是一直沒有系統的學習一遍,而且也只是接觸了皮毛,沒有領悟到他的精髓,這次就打算花點時間來學習。首先是介紹...
大家來討論 apache下的FileUpload
如果用過apache寫的fileupload的話都知道,使用diskfileupload類的時候,需要去建立乙個臨時的目錄。我追蹤過fileupload的原始碼,一直追蹤到commons.io包下面的另乙個ioutils類。我所了解過程應該是這樣的,先將上傳的檔案放到臨時目錄下,然受在從臨時目錄裡面...