maketitle
の別の代替手段はありますか\begin{titlepage}...\end{titlepage}
?
私は documentclass を使用しておりarticle
、タイトルを追加のページに表示したくないので、後者は機能しません。
実際、私はドキュメントの一番上、自分の名前の下、目次の後に 12 ポイントの太字フォントでタイトルを表示したいだけです。ただし、すべて最初のページにあります。
メイン記事は最初のページから始まることもできます。
どのような選択肢がありますか?
答え1
クイックハック: 要素を手動で配置するだけです。
\documentclass{article}
\title{text}
\author{names}
\begin{document}
\makeatletter
\begin{center}
{\fontsize{12pt}{14pt}\selectfont\bfseries\@title\par}
\@author
\end{center}
\makeatother
\tableofcontents
\section{section}
test
\end{document}