8
7

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.

\maketitle を再定義する.

Posted at

LaTeX では \maketitle といふ命令で文書の標題と著者名を表示できる.しかし標準のままだとあまりにも大仰な表示がされるので,これを再定義してみる.

次のやうに stylefile を作つてみた:

moderntitle.sty

\renewcommand\maketitle[0]{
	\hspace{-1em}
	\fontsize{24.88}{72}{\textgt{\@title}} \normalsize \\
	\vspace{-2em}
	\begin{flushright}
		\@date \quad \@author
	\end{flushright}
}

TeX 文書はこんなふうに作つてみる:

document.tex
\documentclass[12pt]{jsarticle}

\usepackage[bold]{otf}
\usepackage{moderntitle}


\begin{document}
\title{第3囘運營會議資料}
\author{運營委員長 山田太郎}
\maketitle
\section*{今日の議題}
あれやこれや.
\end{document}

結果として,次のやうに出力される:

output

8
7
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
8
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?