Skip to content

Instantly share code, notes, and snippets.

@mizunototori
mizunototori / ronbuntatakidai.md
Last active February 15, 2016 07:36
論文たたき台のためのメモ

論文のたたき台作り

論文のたたき台は下記の事項を埋めていくだけでほとんどオートマティックにつくれる。 何回も使うのでメモ。 このメモはnext49氏のブログの抜粋とwikipediaのIMRADの項のまとめ。

ステップ 1

0稿の0稿

ざっくり枠組みを書く。

  • Title:
  • Author:

Introductionの流れ

論文の骨格となる表現。 Introductionでよくあるムーブは 現状 → 課題 → 解決 である。

1. テーマの分析

当該論文が扱うテーマの重要性、あるいは一般的に認知されている事実の描写を扱う。

2. 先行研究の欠けてる部分、問題の抽出

先行研究がこれまでに扱わなかった領域(当該論文が埋める隙間)を述べる箇所である。

  • 要素
    • component, 物質, 部品の要素
    • element, 化学, データ, 数学の要素
    • ingredient, 食品の要素
  • constituent, 概念の要素
def find_all_files(directory):
for root, dirs, files in os.walk(directory):
yield root
for file in files:
yield os.path.join(root, file)
PATH=$PATH:/usr/local/texlive/2015/bin/x86_64-darwin/
# Aliases
alias ls='ls -G'
alias sublime='open -a Sublime\ Text\ 2'
alias cd='pushd$1 > /dev/null'
alias bd='popd$1 > /dev/null'
@mizunototori
mizunototori / bash
Created August 23, 2016 07:36
アニメーションつくる時のコマンド
ffmpeg -i result_example_plot_ncdata_%1d.png output.gif
@mizunototori
mizunototori / matlab
Created August 26, 2016 07:51
matlabで最後に出た警告をIDとして保存し、その警告を無視
[LASTMSG, LASTID] = lastwarn;
>> warning('off', LASTID)
>> warning on verbose
@mizunototori
mizunototori / python
Created August 29, 2016 09:00
python パスの追加
import sys
sys.path.append('/target/path')
@mizunototori
mizunototori / bash
Created September 12, 2016 05:27
コマンドラインインターフェースから特定のテストメソッドを実行する
python -m unittest test_module.TestClass.test_method
@mizunototori
mizunototori / list_op.md
Created September 13, 2016 09:06
Python3系でのリスト同士の演算

Pythonでのリスト同士の演算は定義されていない。減算を例に挙げると、

  x = [10, 20, 100]
  y = [10, 15, 90]
  x - y

としたとき、