Memorandums?

This blog is written about technical-discoveries and daily-events.

Entries from 2015-05-01 to 1 month

TeX R言語同期

TeXによるR言語同期についてです。R言語にて、 pictex("graph.tex"); plot(x, y) dev.off() TeXにて、 \usepackage{pictex} \usepackage{graphics} \begin{figure}[h] \centerline{\input{graph.tex}} \end{figure}

Windowsとcmdにおける文字処理

Java Windowsプログラムを書いているときに、 なかなかWindowsOSとcmdには苦戦しました。 Windowsでできること ファイル名にゼロ幅文字可能 ゼロ幅文字を付加すれば、同名ファイルとならない Windowsでできないこと ファイル名に特殊文字(",/,\,|,,:)が付け…

TeXあれこれ

tex

目次にsubsubsectionまで表示させたい! \setcounter{tocdepth}{4} sectionの章番号は表示させたくないけど、目次には表示させたい! \subsection*{hogehoge} \setcounter{subsection}{1} \addcontentsline{toc}{subsection}{hogehoge} subsection名とaddcon…