所以我不明白为什么在“证书、推荐信和推荐信”正上方有一个居中的项目符号,请帮忙

所以我不明白为什么在“证书、推荐信和推荐信”正上方有一个居中的项目符号,请帮忙
\documentclass{article}
\usepackage{amssymb}

\begin{document}
        {\begin{itemize}
                \newcommmand{\labelitemi}{\checkmark}
                \item Training and experience in managing and supervising both a probation (including adult drug court, sex offender, juvenile, and regular adult) client caseload as well as a workers' compensation client caseload
            \end{itemize}
        }
        \vspace{4pt}
    }
    {\begin{itemize}
            \newcommmand{\labelitemi}{\checkmark}
            \item Completion of ECO/LSIP training
        \end{itemize}
    }
    \vspace{4pt}
}
{\begin{itemize}
    \newcommmand{\labelitemi}{\checkmark}
    \item Proficient in administration of urinalysis and swab testing
\end{itemize}
}
\vspace{2pt}
}
{\begin{itemize}
\newcommmand{\labelitemi}{\checkmark}
\item Qualified in successfully navigating Eclipse/ICON and JPod
\end{itemize}
}

\vspace{9pt}
}

\end{section}
\begin{center}
\begin{textit}

\normalfont \textit{Certificates, references and letters of recommendation available upon request.}
\end{textit}
\end{document}

答案1

你得到这个结果是因为你的代码有缺陷。例如,你的代码中\newcommmand有三个m。所以你得到了很多你不应该忽略的错误。在出现这样的错误后,输出就变得相当随意了。

\documentclass{article}
\usepackage{amssymb}

\begin{document}
\renewcommand{\labelitemi}{\checkmark}
\begin{itemize}
 \item Training and experience in managing and supervising both a probation (including adult drug court, sex offender, juvenile, and regular adult) client caseload as well as a workers' compensation client caseload

\item Completion of ECO/LSIP training

\item Proficient in administration of urinalysis and swab testing


\item Qualified in successfully navigating Eclipse/ICON and JPod
\end{itemize}

\bigskip
\textit{Certificates, references and letters of recommendation available upon request.}

\end{document}

相关内容