迷你页面中的星号

迷你页面中的星号

如何在小页面的注释中包含星号 (*)?当我编译它时,它在我的 PDF 中显示为问号 (???)。我认为这与脚注或表格注释中未出现星号的问题不同...

\documentclass[12pt]{article}
\begin{document}
    \begin{table}[tbp]
        \centering
        \caption{Effects of Prior Beliefs and Signals on Learning}
        \label{tab:learning_table}
        \begin{tabular}{lcccc} \hline
            & (1) & (2) & (3) & (4) \\
        \end{tabular}
        \begin{minipage}{0.65\textwidth}
            \bigskip
            {\footnotesize Note: * p$<$0.1; ∗∗ p$<$0.05; ∗∗∗ p$<$0.10\par}
        \end{minipage}
    \end{table}
\end{document}

答案1

您收到一个 tex 错误,您应该询问一下,错误后的输出通常是没有意义的。

! Package inputenc Error: Unicode character ∗ (U+2217)
(inputenc)                not set up for use with LaTeX.

您可以为 U+2217 声明一个定义,但更简单的方法是使用 ASCII*

如果你想要一个非加高,*你可以使用\textasteriskcentered

相关内容