在 Latex 中将摘要添加到首页

发布于 2024-09-12 16:22:13 字数 906 浏览 5 评论 0原文

下面是我的 LaTeX 代码。默认情况下,摘要位于标题页后面的第一页上。但是标题页下面有很多空间,而且我的摘要很短,所以有没有办法将其包含在标题页组件下面?

代码:

\documentclass[12pt,reqno,a4paper,titlepage]{article}

\usepackage{amsmath}

\usepackage{amsthm}

\usepackage{amssybm}%for math bold

\usepackage[pdftex]{graphicx}

\usepackage{verbatim}

\usepackage[margin=2.5cm]{geometry}%for the margins headers footers etc

\usepackage{hyperref}%for the hyperlinks-COOL and must use

\usepackage[tt]{titlepic}%package i downloaded to put a pic in the titlepage

\usepackage{helvet}

\usepackage[usenames,dvipsnames]{color}%options to use names like redviolet and others

\begin{document}

\title{title}

\titlepic{\setlength\fboxsep{0pt}\setlength\fboxrule{4pt}
 \fcolorbox{Plum}{green}{\includegraphics[scale=0.3]{pic}}}

\author{\Huge my name}

\maketitle

\begin{abstract}

abstract text here

\end{abstract}

document text here

\end{document}

Included below is my LaTeX code. By default the abstract is on the first page following the title page. But the title page has lots of space below, and my abstract will be short, so is there anyway to include it below the title page components?

code:

\documentclass[12pt,reqno,a4paper,titlepage]{article}

\usepackage{amsmath}

\usepackage{amsthm}

\usepackage{amssybm}%for math bold

\usepackage[pdftex]{graphicx}

\usepackage{verbatim}

\usepackage[margin=2.5cm]{geometry}%for the margins headers footers etc

\usepackage{hyperref}%for the hyperlinks-COOL and must use

\usepackage[tt]{titlepic}%package i downloaded to put a pic in the titlepage

\usepackage{helvet}

\usepackage[usenames,dvipsnames]{color}%options to use names like redviolet and others

\begin{document}

\title{title}

\titlepic{\setlength\fboxsep{0pt}\setlength\fboxrule{4pt}
 \fcolorbox{Plum}{green}{\includegraphics[scale=0.3]{pic}}}

\author{\Huge my name}

\maketitle

\begin{abstract}

abstract text here

\end{abstract}

document text here

\end{document}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

爱冒险 2024-09-19 16:22:13

将标题页包装为 minipage

\begin{minipage}[h]{\textwidth}
    \maketitle
\end{minipage}

然后您可以在其下方添加文本。

Wrap your title page to minipage

\begin{minipage}[h]{\textwidth}
    \maketitle
\end{minipage}

Then you can add text below it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文