-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from ShuN6211/new-sample
latexmk用のsampleファイルを追加
- Loading branch information
Showing
2 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
% 日本語の文書向けのtemplate. | ||
% latexmkでbuild. | ||
\documentclass{jsarticle} | ||
\usepackage{amsmath, amssymb} | ||
\usepackage{hyperref} | ||
\hypersetup{setpagesize=false, | ||
colorlinks=true, | ||
linkcolor=blue, | ||
citecolor=blue, | ||
} | ||
|
||
\begin{document} | ||
\title{Hello \LaTeX!!} | ||
\author{Shun Makino} | ||
\date{} | ||
|
||
\section{Hello \LaTeX!} | ||
Hello \LaTeX! | ||
|
||
\section{日本語の文章} | ||
このように, 日本語の文章を出力することができます. (Build手順を間違えなければ) | ||
|
||
\section{吾輩は猫である} | ||
文献~\cite{neko}は日本を代表する小説の一つである. | ||
\begin{quote} | ||
吾輩は猫である。名前はまだない。 | ||
どこで生れたかとんと見当けんとうがつかぬ。何でも薄暗いじめじめした所でニャーニャー泣いていた事だけは記憶している。 | ||
\end{quote} | ||
|
||
\bibliographystyle{junsrt} | ||
\bibliography{reference.bib} | ||
|
||
\end{document} |