자주 사용하는 operator와 함수를 정리해둔다.
% Define argmin and argmax operators
\DeclareMathOperator*{\argmin}{\arg\!\min}
\DeclareMathOperator*{\argmax}{\arg\!\max}
% Define trace operator
\DeclareMathOperator*{\trace}{Tr}
% Define expectation operator
\DeclareMathOperator*{\expect}{E}
% Define variance operator
\DeclareMathOperator{\var}{var}
% Define covariance operator
\DeclareMathOperator{\cov}{cov}
% Define signum function operator
\DeclareMathOperator{\sgn}{sgn}
%\newcommand{\covariance}[1]{\operatorname{cov} \left( #1 \right)}
%\newcommand{\expectation}[1]{\operatorname{E} \left[ #1 \right]}
아래와 같은 오류가 나온다면
In file included from /Applications/MATLAB_R2013a.app/extern/include/mex.h:58:
In file included from /Applications/MATLAB_R2013a.app/extern/include/matrix.h:294:
/Applications/MATLAB_R2013a.app/extern/include/tmwtypes.h:819:9: error: unknown type name 'char16_t'
typedef char16_t CHAR16_T;
다음과 같이 하자.
cd /Applications/MATLAB_R2013a.app/bin
system('cp mexopts.sh mexopts.org.sh')
edit mexopts.sh
CXXFLAGS를 찾아서 끝부분에 -std=c++11
을 추가한다.
저장 후, mex -setup
을 수행한다.
TBU
For other dataset, see http://www.cvpapers.com/datasets.html
본문중에서 다음과 같이 하면 된다.
{% cite oh2013fit -f my/oh2013fit %}
{% bibliography -f my/oh2013fit.bib %}
Following code is typical header for research post.
--- header begins with ---
layout: post
category: research
title: Visual Surveillance
title: Your research title, e.g., Visual Surveillance.
teaser: Your research thumbnail will be shown in the research page, e.g., /img/research/vissurv/teaser.png
collaborators: [Seon Ho On, Sajid Javed, Jae Ho Goo, Soon Ki Jung]
--- header ends with ---
Your contents here
...
We use markdown
for ease of use.
For more details, please see GitHub Flavored Markdown and my example
draftwatermark 패키지는 LaTeX에서 draft watermark를 추가할 수 있게 해준다.
아래와 같이 사용하면 되겠다.
\usepackage{draftwatermark}
\SetWatermarkAngle{45}
\SetWatermarkText{DRAFT}
정리 중
잘가 MacPorts. 반갑습니다. Homebrew.
Homebrew 로 OS X 패키지 관리하기
This is collections of public source code for human pose estimation and 3D reconstruction from monocular video.
pdfcomment 패키지는 LaTeX에서 pdf 파일에 annotation과 comment를 추가할 수 있게 해준다.
사용하려면 다음과 같이 하자.
\usepackage[author={편집자 이름}]{pdfcomment}
% optional
\usepackage[rgb]{xcolor} % color 이름을 사용할 수 있도록 함
몇 가지 명령을 소개하면
사용예
\pdfmarkupcomment[markup=StrikeOut, color=red]{이 문장은 취소선으로 표시됩니다.}{여기에 comment를 작성합니다.}
\pdfmarkupcomment[markup=Underline, color=red]{이 문장은 밑줄 표시됩니다.}{여기에 comment를 작성합니다.}
\pdfmarkupcomment[markup=Highlight, color=yellow]{이 문장은 highlight로 표시됩니다.}{여기에 comment를 작성합니다.}