摘要页面设置

摘要页面设置
\documentclass[a4paper,12pt]{article}
%twoside yaz iki taraflı için
\usepackage[top=2.5 cm, bottom=2.5 cm, left=4 cm, right=2.5 cm]{geometry}

\usepackage[turkish,shorthands=:!]{babel}
\usepackage{fontspec}
\usepackage{titlesec}

\setmainfont{Times New Roman}
\setsansfont{Times New Roman}
\let\LTXnumberline\numberline
\def\numberline#1{\LTXnumberline{#1.}}
\titlelabel{\thetitle.\quad}
\titleformat{\section}
  {\normalfont\fontsize{12}{15}\bfseries}
  {\thesection.}
  {1em}% this gives a \quad of space
  {}
\begin{document}
\tableofcontents

\begin{abstract}
tex.stackexchange.com is perfect
\end{abstract}

\section{sec1}
test
\subsection{subsec2}
test
\end{document}

此代码提供了与原文相连的摘要部分。我不想要它。我想看到一个单独的摘要页面,该页面按照原文的页面设置编写,并在摘要标题上方显示论文名称,并在目录中显示位置。我可以单独制作它们,但不能作为一个整体。

答案1

要使摘要单独显示在页面上,只需\clearpage在摘要相关材料之前和之后插入指令即可。要强制在目录中添加条目,请\addcontentsline{toc}{section}{\abstractname}在紧接之前\begin{abstract}(但\clearpage自然是在之后)插入指令。

恐怕我无法提供有关如何使论文标题出现在摘要页面上的建议,因为您没有提供有关该标题的任何信息。

在此处输入图片描述

%% Compile with either LuaLaTeX or XeLaTeX
\documentclass[a4paper,12pt]{article}
%twoside yaz iki taraflı için
\usepackage[vmargin=2.5cm, left=4cm, right=2.5cm]{geometry}

\usepackage[turkish,shorthands=:!]{babel}

\usepackage{fontspec}
\setmainfont{Times New Roman}
\setsansfont{Times New Roman} % really?!

\usepackage{titlesec}
\let\LTXnumberline\numberline
\renewcommand\numberline[1]{\LTXnumberline{#1.}}
\titlelabel{\thetitle.\quad}
\titleformat{\section}
    {\normalfont\fontsize{12}{15}\bfseries}
    {\thesection.}{1em}{}
\titleformat{\subsection} % same look as "\section"
    {\normalfont\fontsize{12}{15}\bfseries}
    {\thesubsection.}{1em}{}
\begin{document}

\tableofcontents

\clearpage %% <-- new
%
% Provide information related to thesis title
%
\addcontentsline{toc}{section}{\abstractname} %% <-- new
\begin{abstract}
\texttt{tex.stackexchange.com} is perfect
\end{abstract}

\clearpage %% <-- new
\section{Sec1}
test
\subsection{Subsec1.1}
test
\end{document}

相关内容