由于我是 LaTeX 新手,能否帮我检查一下下面引用的模板中是否已正确设置所需的设置?
所需设置:
正文应为 12 号字体、双倍行距、左对齐。页码应编排。
现在的模板:
\documentclass{article}
%\documentclass[journal]{IEEEtran}
%\documentclass{report}
%\documentclass{acta}
\usepackage{graphicx}
\begin{document}
\title{Introduction to \LaTeX{}}
\author{Author's Name}
\maketitle
\begin{abstract}
This is abstract text: This simple document shows very basic features of
\LaTeX{}.
\end{abstract}
\section{Introduction}
\begin{equation}
\label{simple_equation}
\alpha = \sqrt{ \beta }
\end{equation}
\subsection{Subsection Heading Here}
\begin{figure}
\centering
\includegraphics[width=3.0in]{myfigure}
\caption{Simulation Results}
\label{simulationfigure}
\end{figure}
\section{Conclusion}
\end{document}
答案1
对于 12 号字体,使用
\documentclass[12pt]{article}
适用于双倍行距
\usepacakge{setspace}
\spacing{1.5}
最后,对于文本左对齐而不是两端对齐,使用
\raggedright
后\begin{document}