表格环境中的 FontAwesome

表格环境中的 FontAwesome

当我在表格环境中放置 fontawesome 命令时,我无法编译我的 latex 文档。

这是重现错误的片段

\documentclass{article}
\usepackage[utf8]{inputenc}

\usepackage{fontawesome}

\title{Test}
\author{lordthistle }
\date{May 2016}

\begin{document}
\maketitle

\section{Introduction}

\faicon{\faEnvelope} Test

\begin{tabular}{ll}
\faicon{\faEnvelope} & Test \\
\end{tabular}

\end{document}

该文件可以在这里查看和编译: 共享Latex 项目

\faicon在表格环境中使用该命令有什么技巧吗?

答案1

你误用了\faicon任何一个你用\faicon{<name>} 或者 \fa<Name>

\documentclass{article}
\usepackage[utf8]{inputenc}

\usepackage{fontawesome}

\title{Test}
\author{lordthistle }
\date{May 2016}

\begin{document}

\maketitle
\faEnvelope\ or \faicon{envelope}

\section{Introduction}
\begin{tabular}{ll}
\faicon{envelope} & Test \\
\faEnvelope & Test \\
\end{tabular}

\end{document}

在此处输入图片描述

相关内容