FreeBSD 安裝 TexLive
放棄使用 /usr/ports 吧,直接到 TexLive 官網下載 install 或是 ISO 安裝即可
- 下載線上安裝批次檔 Installing TeX Live over the Internet - TeX Users Group
- 下載 ISO DOWNLOAD FROM A NEARBY CTAN MIRROR
FreeBSD 掛載 ISO 檔案
How To mount ISO images in FreeBSD and Linux | Tips And Tricks | blog.up-link.ro
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
First you have to create virtual device, using this command: # mdconfig -a -t vnode -f /path/to/image.iso -u 1 The "mdconfig" command creates a device and prints the name. Just append that to "/dev/" and mount: # mount -t cd9660 /dev/md1 /media To unmount the image use command: # umount /media Once unmounted, you can unconfigure the device with # mdconfig -d -u 1 |
LaTeX 圖文對齊
Born to explore: top-aligning imported graphics
1 2 3 4 5 6 |
\vtop{% \vskip0pt \hbox{% \includegraphics{figure}% }% } |
TexLive 2012 CJK
1 2 3 4 5 6 7 8 9 10 |
\usepackage[encapsulated]{CJK} \usepackage{ucs} \usepackage[utf8x]{inputenc} % use one of bsmi(trad Chinese), gbsn(simp Chinese), min(Japanese), mj(Korean); see: % /usr/share/texmf-dist/tex/latex/cjk/texinput/UTF8/*.fd \newcommand{\cntext}[1]{\begin{CJK}{UTF8}{gbsn}#1\end{CJK}} \cntext{我的中文寫得很好。} |
自訂 Apache 路徑指定到 TexLive
從網頁上執行指令常常都會發生找不到的情況。原因是 Apache 並不會直接使用系統的 path 設定,這也導致當 php 在網頁執行時一定會發生找不到指令的問題。
這個問題在 Apache2.2 已經解決,在 /usr/local/etc/apache22 內有一個 envvars.d 的目錄就是在設定環境所用。
1 2 3 |
cd /usr/local/etc/apache22/envvars.d ee texlive.env PATH=$PATH:/usr/local/texlive/2012/bin/amd64-freebsd; |
how to allow apache run sudo commands [Archive] - Ubuntu Forums
FreeBSD 中 SSH 的 su 不能登入和設置 | 筆記與程式
1,041 total views, 1 views today