01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
2009 : 01 02 03 04 05 06 07 08 09 10 11 12
2008 : 01 02 03 04 05 06 07 08 09 10 11 12
2007 : 01 02 03 04 05 06 07 08 09 10 11 12
2006 : 01 02 03 04 05 06 07 08 09 10 11 12
% 文章
\documentclass[12pt,A4,landscape]{jsarticle}
\begin{document}
本文.ほげほげ.
\end{document}
% 自分の環境での設定
dvi -> PDFのプログラムはdvipdfmxを使用.
A4横にするには,PSファイルを経由せず,PDFに直接変換する.
DVI -> PDFの設定で -l オプションを設定する.
\documentclass[12pt,A4]{jsarticle}
\usepackage{array}
\begin{document}
\begin{tabular}{m{5zw}m{5zw}b{5zw}}
長い文章で中央揃え & 中央揃え & 中央揃え
\end{tabular}
\end{document}
参考
\documentclass[12pt]{jsarticle}
\usepackage{graphicx}
\usepackage{mediabb}
\begin{document}
\includegraphics[bb=0 0 432 432,width=10cm]{d:/hoge.pdf}
\end{document}
% その1
\documentclass[12pt]{jsarticle}
\def\baselinestretch{2} % ダブルスペース
\begin{document}
\begin{center} \begin{tabular}{ccc}
\hline
項目1 & 項目2 & 項目3 \\
\hline
値1 & 値2 & 値3 \\
\hline
\end{tabular} \end{center}
\end{document}
% その2
\documentclass[12pt]{jsarticle}
\usepackage{setspace}
\doublespacing % ダブルスペース
\begin{document}
ほげほげ
\end{document}
% その3
\documentclass[12pt]{jsarticle}
\usepackage{doublespace} % ダブルスペース
\usepackage[pagewise]{lineno} % 行番号 pagewise:頁ごとに行番号を付ける(おまけ)
\linenumbers % 行番号を付ける(おまけ)
\begin{document}
ほげほげ
\end{document}
参考
\documentclass[12pt]{jsarticle}
\begin{document}
\begin{description}
\item[ほげほげ] 記述付箇条書き
\item[ほげら] 記述付箇条書き
\end{description}
\begin{itemize}
\item 普通の箇条書き
\item 普通の箇条書き
\end{itemize}
\begin{enumerate}
\item 番号付箇条書き
\item 番号付箇条書き
\end{enumerate}
\end{document}
参考:TeX/LaTeX入門
2009 : 01 02 03 04 05 06 07 08 09 10 11 12
2008 : 01 02 03 04 05 06 07 08 09 10 11 12
2007 : 01 02 03 04 05 06 07 08 09 10 11 12
2006 : 01 02 03 04 05 06 07 08 09 10 11 12
最終更新時間: 2009-12-01 22:42