我在使用 \footnote{...} 时遇到了一些问题。我已定义文档的边距和文本宽度。但是,每次我添加脚注时,它都会拉伸,直到文档的边距变得比实际文本宽度大得多。我尝试将边距更改为实际文本宽度,但无法做到。
谁能帮我?
下面是一个虚拟示例:
%2multibyte Version: 5.50.0.2890 CodePage: 65001
\documentclass[12pt,a4paper]{article}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage{siunitx}
\usepackage{booktabs}
%\usepackage[autolinebreaks]{mcode0}
\usepackage{natbib}
\usepackage{url}
\usepackage{float}
\usepackage{placeins}
\usepackage[font=small,labelfont=bf,margin=\parindent,tableposition=top]{caption}
\usepackage{rotating}
%\usepackage{showframe}
\setcounter{MaxMatrixCols}{10}
\usepackage{geometry}
\geometry{
a4paper,
total={210mm,297mm},
left=14mm,
right=14mm,
top=21mm,
bottom=21mm,
}
%\addtolength{\oddsidemargin}{-.875in}
% \addtolength{\evensidemargin}{-.875in}
% \addtolength{\textwidth}{1.75in}
% \addtolength{\topmargin}{-.875in}
% \addtolength{\textheight}{1.75in}
\parskip = 0pt
\pagestyle{plain}
\setlength{\parskip}{.0in}
\renewcommand{\baselinestretch}{1.3}
\newenvironment{Question}[2][Question]{\begin{trivlist}
\item[\hskip \labelsep {\bfseries #1}\hskip \labelsep {\bfseries #2.}]}{\end{trivlist}}
\begin{document}
\pagenumbering{gobble}
\title{Title...}
\date{}
\author{Volcompt}
\maketitle
\abstract{ABSTRACT HERE }
\vspace{50 mm}
\begin{center}
[VERY PRELIMINARY AND INCOMPLETE]
\end{center}
\newpage
\pagenumbering{arabic}
\section{Introduction}
Some random text here. A stock option is a contract between two people that gives the holder the right, but not the obligation, to buy or sell outstanding stocks at a specific price and at a specific date. Options are purchased when it is believed that the price of a stock will go up or down (depending on the option type). For example, if a stock currently trades at 40 and you believe the price will rise to 50 next month, you would buy a call option today so that next month you can buy the stock for 40, sell it for 50, and make a profit of 10. Stock options trade on a securities exchange, just like stocks.
A stock warrant is just like a stock option because it gives you the right to purchase a company's stock at a specific price and at a specific date. However, a stock warrant differs from an option in two key ways:
A stock warrant is issued by the company itself New shares are issued by the company for the transaction. Unlike a stock option, a stock warrant is issued directly by the company. When a stock option is exercised, the shares usually are received or given by one investor to another; when a stock warrant is exercised, the shares that fulfill the obligation are not received from another investor, but directly from the company. \footnote{footnote off margins}
\end{document}
谢谢
答案1
感谢@Sigur。
问题出在 中
\abstract{ABSTRACT HERE}
。请使用\begin{abstract}foo\end{abstract}
。此外,使用showframe
option intogeometry
以便您可以看到主体。