如何从日志文件中删除首字母缩写词列表?

如何从日志文件中删除首字母缩写词列表?

我正在使用 Overleaf 撰写 IEEE 格式的期刊论文。我使用该\usepackage{acronym}包在单独的 latex 文件中定义首字母缩略词,然后在我正在编写的主文档中调用它们。但是,当我生成主文件时,会先显示首字母缩略词列表,然后显示我的文档。我只想生成我的文档,而不是首字母缩略词列表。

这是我写的部分代码

\documentclass[journal, 12pt, onecolumn, draftcls]{IEEEtran}

% *** GRAPHICS RELATED PACKAGES ***
%
\ifCLASSINFOpdf
  % \usepackage[pdftex]{graphicx}
  % declare the path(s) where your graphic files are
  % \graphicspath{{../pdf/}{../jpeg/}}
  % and their extensions so you won't have to specify these with
  % every instance of \includegraphics
  % \DeclareGraphicsExtensions{.pdf,.jpeg,.png}
\else
  % or other class option (dvipsone, dvipdf, if not using dvips). graphicx
  % will default to the driver specified in the system graphics.cfg if no
  % driver is specified.
  % \usepackage[dvips]{graphicx}
  % declare the path(s) where your graphic files are
  % \graphicspath{{../eps/}}
  % and their extensions so you won't have to specify these with
  % every instance of \includegraphics
  % \DeclareGraphicsExtensions{.eps}
\fi
% graphic was written by David Carlisle and Sebastian Rahtz. It is
% required if you want graphics, photos, etc. graphicx.sty is already
% installed on most LaTeX systems. The latest version and documentation
% can be obtained at: 
% http://www.ctan.org/pkg/graphicx
% Another good source of documentation is "Using Imported Graphics in
% LaTeX2e" by Keith Reckdahl which can be found at:
% http://www.ctan.org/pkg/epslatex
%
% latex, and pdflatex in dvi mode, support graphics in encapsulated
% postscript (.eps) format. pdflatex in pdf mode supports graphics
% in .pdf, .jpeg, .png and .mps (metapost) formats. Users should ensure
% that all non-photo figures use a vector format (.eps, .pdf, .mps) and
% not a bitmapped formats (.jpeg, .png). The IEEE frowns on bitmapped formats
% which can result in "jaggedy"/blurry rendering of lines and letters as
% well as large increases in file sizes.
%
% You can find documentation about the pdfTeX application at:
% http://www.tug.org/applications/pdftex





% *** MATH PACKAGES ***
\usepackage{appendix}
%\usepackage{hyperref}
\usepackage{amssymb}
\usepackage{bbm}
\usepackage{xcolor}
\usepackage{algorithmic}
\usepackage{array}
%\usepackage{fixltx2e}
\usepackage{stfloats}
\usepackage{cite}
\usepackage{graphic}
\usepackage{epstopdf}
\graphicspath{{Figures/}{../Figures/}}
\usepackage{gensymb,bm}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pdfpages}
\usepackage{textcomp}
\usepackage[cmex10]{amsmath}
\usepackage{booktabs}
\usepackage{url}
\usepackage{subcaption}
\usepackage{url}
\usepackage{multicol}
\usepackage{multirow}
%\usepackage[colorlinks]{hyperref}
\usepackage{acronym} 
\hyphenation{op-tical net-works semi-conduc-tor}


\begin{document}

\title{Impact of noisy measurements with Fourier-based evaluation on condensed channel parameters}
\input{acro_list}

\end{document}

我创建的缩写文件如下:

\begin{acronym} % Give the longest label here so that the list is nicely aligned
\acro{RMS}{Root Mean Square}
\acro{RMSDS}{Root Mean Square Delay Spread}
\acro{MC}{MonteCarlo}
\acro{MPC}{Multipath Component}
\acro{HRPE}{High-Resolution Parameter Extraction}
\acro{MUSIC}{Multiple Signal Classification}
\end{acronym}

我感谢您对这个问题的帮助。

干杯,

乔治

相关内容