maketitle
대신 에 다른 대안이 있나요 \begin{titlepage}...\end{titlepage}
?
나는 documentclass로 작업하고 article
있고 추가 페이지에 제목을 표시하고 싶지 않기 때문에 후자는 나에게 적합하지 않습니다.
사실 나는 내 문서의 맨 위, 내 이름 아래, 목차 목록 뒤에 제목을 12pt 굵은 글꼴로 표시하고 싶습니다. 그러나 모든 것이 첫 페이지에 있습니다.
주요 기사는 첫 페이지에서 시작할 수도 있습니다.
내 옵션은 무엇입니까?
답변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}