Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

如何缩小PPT中,对应引用的尺寸? #129

Closed
jiaqiwang969 opened this issue Nov 1, 2022 · 3 comments · Fixed by #128
Closed

如何缩小PPT中,对应引用的尺寸? #129

jiaqiwang969 opened this issue Nov 1, 2022 · 3 comments · Fixed by #128
Labels
type/question [Transferred] Go to Discussions

Comments

@jiaqiwang969
Copy link

如何缩小PPT中,对应引用的尺寸?

@LogCreative
Copy link
Contributor

LogCreative commented Nov 1, 2022

在引用前添加缩小引用字体的命令:

\renewcommand{\bibfont}{\tiny}

可以考虑配合 multicols 多栏环境:

% 导言区添加 \usepackage{multicol}
\subsection{参考文献}
\begin{frame}
    \renewcommand{\bibfont}{\tiny}
    \setbeamertemplate{bibliography item}[text]
    \begin{multicols}{2}
        \printbibliography[heading=none]
    \end{multicols}
\end{frame}

或使用 allowframebreaks 自动断页使用:

\subsection{参考文献}
\begin{frame}[allowframebreaks]
    \renewcommand{\bibfont}{\tiny}
    \setbeamertemplate{bibliography item}[text]
    \printbibliography[heading=none]
\end{frame}

@LogCreative LogCreative added the type/question [Transferred] Go to Discussions label Nov 1, 2022
@jiaqiwang969
Copy link
Author

jiaqiwang969 commented Nov 3, 2022

您好,紧接着上述问题。
请问,有没有可能,在PPT当页引用过程中,“其对应的ref出现在PPT底部”,最终仍全部在最后页展示。

@LogCreative
Copy link
Contributor

使用\footfullcite{}命令,详见 Release 区的用户手册。

@LogCreative LogCreative linked a pull request Nov 19, 2022 that will close this issue
9 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
type/question [Transferred] Go to Discussions
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants