chchchch 不知何故出现在我的文档开头,尽管我并没有在任何地方写过它。还出现了“无 \begin{document}”错误,尽管我的文档中有这个错误。
我的代码是
\documentclass[12pt]{article}
\usepackage[margin=1.25inch]{geometry}
\usepackage{amsmath, amssymb}
\usepackage{graphicx}
\title{UP101L-Experiment 6-Coupled Torsional Pendulum}
\author{Jyotiraditya Mishra}
\date{Janurary 2021}
\begin{document}
\maketitle
\tableofcontents
\end{document}
答案1
此问题是由 选项中的拼写错误引起的geometry
。单位英寸的缩写应为 ,in
而不是inch
:
\usepackage[margin=1.25in]{geometry}