2014-11-12から1日間の記事一覧

pandocのmarkdown->latexのテーブル変換で改行を反映する

Tex

http://johnmacfarlane.net/pandoc/demo/example9/options.html hard_line_breaksオプションを入れる $ pandoc -f markdown+hard_line_breaks input.md -o output.tex

multibbl使用中にCaptionで\citeするとき

Caption中でciteするときは全体を{}で囲ってから\protectする. \caption{Figure from John Doe\protect{\cite{biblio_label}{my_cite_label}} \label{fig:john}}

findコマンドのORオプション

-oオプションを使う. $ find -name "*.aux" -o -name "*.log"

複数のbibliograpyを作る方法の整理

Tex

http://www.tex.ac.uk/cgi-bin/texfaq2html?label=multbib 4つの方法がある. 1. multibbl 今はこれを使っている \usepackage{multibbl} \newbibliography{bk} \bibliographystyle{bk}{alpha} \newbibliography{art} \bibliographystyle{art}{plain} ... \c…