ผลต่างระหว่างรุ่นของ "Tips Latex"
ไปยังการนำทาง
ไปยังการค้นหา
แถว 30: | แถว 30: | ||
ให้ caption ของ algorithm ไปโผล่ สารบัญรูป(list of figures) ต้อง \usepackage{tocloft} ก่อนจากนั้นไปแทรก caption ของ algo ด้วยคำสั่ง | ให้ caption ของ algorithm ไปโผล่ สารบัญรูป(list of figures) ต้อง \usepackage{tocloft} ก่อนจากนั้นไปแทรก caption ของ algo ด้วยคำสั่ง | ||
\captionof{figure}{Your algorithm caption} | \captionof{figure}{Your algorithm caption} | ||
+ | |||
+ | ในหน้าสารบัญต้องการให้ คำว่าสารบัญอยู่ตรงกลาง | ||
+ | \renewcommand{\cfttoctitlefont}{\hfill\Large\bfseries} | ||
+ | \renewcommand{\cftaftertoctitle}{\hfill} | ||
+ | |||
+ | ในหน้าสารบัญภาพต้องการให้ คำว่าสารบัญภาพอยู่ตรงกลาง | ||
+ | \renewcommand{\cftloftitlefont}{\hfill\Large\bfseries} | ||
+ | \renewcommand{\cftafterloftitle}{\hfill} |
รุ่นแก้ไขเมื่อ 06:11, 8 พฤศจิกายน 2555
Tips Latex
การขึ้นบรรทัดใหม่ ใช้ \\
\\
การเว้นบรรทัดสองบรรทัดหรือมากกว่านั้น ต้องใส่ \mbox{} ไว้ เพื่อให้มีของในบรรทัด
\\ \mbox{}\\
การ set ไม่ให้ขึ้นเลขหน้า
\pagenumbering{gobble}% Remove page numbers (and reset to 1) \clearpage \thispagestyle{empty}
การ set ตำแหน่งของเลขหน้า หรือข้อความอื่นๆ ก็ได้ จะใช้ package fancyhdr สำหรับส่วนที่ต้องการให้ข้อความแสดงแบ่งเป็น มุมบนซ้าย(lhead), บนกลาง (chead), บนขวา(rhead), ซ้าบล่าง(lfoot), ล่างกลาง(cfoot), ล่างขวา(rfoot) ตัวอย่างนี้เป็นการเซตให้เลขหน้าโผล่ที่มุมบนขวา
\usepackage{fancyhdr} \pagestyle{fancy} \lhead{} \chead{} \rhead{\thepage} \lfoot{} \cfoot{} \rfoot{} \renewcommand{\headrulewidth}{0pt}
สารบัญภาพ ไม่เอา......... ต่อท้ายข้อความ
\usepackage{tocloft} \renewcommand{\cftfigdotsep}{\cftnodots}
ให้ caption ของ algorithm ไปโผล่ สารบัญรูป(list of figures) ต้อง \usepackage{tocloft} ก่อนจากนั้นไปแทรก caption ของ algo ด้วยคำสั่ง
\captionof{figure}{Your algorithm caption}
ในหน้าสารบัญต้องการให้ คำว่าสารบัญอยู่ตรงกลาง
\renewcommand{\cfttoctitlefont}{\hfill\Large\bfseries} \renewcommand{\cftaftertoctitle}{\hfill}
ในหน้าสารบัญภาพต้องการให้ คำว่าสารบัญภาพอยู่ตรงกลาง
\renewcommand{\cftloftitlefont}{\hfill\Large\bfseries} \renewcommand{\cftafterloftitle}{\hfill}