2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

[Sublime Text2]レポート作成テンプレート(LaTeXスニペット)

2
Last updated at Posted at 2016-01-04

Sublimeでレポート書くとき用

report.sublime-snippet
<snippet>
	<content><![CDATA[
\documentclass[12pt, a4j]{jsarticle}
\usepackage{natbib,amsmath,booktabs,setspace}
\usepackage[cm]{fullpage}
\usepackage[dvipdfmx]{graphicx}
 
\title{${1:Title}}
\author{${2:Your Name}}
 
\begin{document}
 
\maketitle
 
\begin{abstract}
\end{abstract}
 
\section{Introduction}
 
${3:Start typing here}
 
\bibliographystyle{junsrt}
\bibliography{all}{}
\end{document}
]]></content>
	<tabTrigger>report</tabTrigger>
	<scope>text.tex</scope>
</snippet>

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?