在 tikzposter 中,右下角有一个默认脚注,其中有 LaTeX 和 Tikzposter 徽标。
您可以使用命令 \tikzposterlatexaffectionproofoff 隐藏文本
我想知道的是文本是否可以更改。我想在海报底部的那个位置放上修订和日期,所以这似乎是一种简单(有点)的方法。
或者,我可以用上面的命令来隐藏它。在这种情况下,是否有添加脚注的命令。
请注意,这不是普通的 LaTeX 脚注,它不是编号并附加在文档中的某些文本上。它只是一小段自由文本。
梅威瑟:
\documentclass[portrait]{tikzposter}
\begin{document}
\end{document}
这样就会产生一个空白页,除了右下角的一些文字外:
右下角的文字可以用
\tikzposterlatexaffectionproofoff
不过,这段文字正是我想要编辑的。因此,要么删除并添加,要么编辑,看哪个更容易。
答案1
情感笔记本身无法轻松定制和重复使用,但您可以将其关闭并根据您的目的调整其代码。在序言中,包括以下几行:
\tikzposterlatexaffectionproofoff
\AtBeginDocument{%
\begin{pgfonlayer}{backgroundlayer}
\node[
inner sep=4pt, anchor=south east, fill=white, draw=none,
rounded corners=5, fill opacity=0.3, text opacity=1
] at (0.5\textwidth-7pt, -0.5\textheight+7pt)
{\footnotesize {My personal footnote}}; %%% ADAPT FOOTNOTE HERE
\end{pgfonlayer}
}
这打印My personal footnote
在右下角。
完整代码:
\documentclass{tikzposter}
\title{Title}
\author{T.H.E.Author}
\usetheme{Basic}
\tikzposterlatexaffectionproofoff
\AtBeginDocument{%
\begin{pgfonlayer}{backgroundlayer}
\node[
inner sep=4pt, anchor=south east, fill=white, draw=none,
rounded corners=5, fill opacity=0.3, text opacity=1
] at (0.5\textwidth-7pt, -0.5\textheight+7pt)
{\footnotesize {My personal footnote}};
\end{pgfonlayer}
}
\begin{document}
\maketitle
\block{BlocktitleA}{Blocktext}
\begin{columns}
\column{0.3}
\block{BlocktitleB}{Blocktext}
\column{0.7}
\block{BlocktitleC}{Blocktext}
\note{Notetext}
\end{columns}
\end{document}