在我的海报标题的右侧和左侧添加徽标(tikzposter)

在我的海报标题的右侧和左侧添加徽标(tikzposter)

我想在海报的顶角添加徽标。这是我的:

\documentclass[20pt,margin=1.5in,innermargin=-5in,blockverticalspace=-0.1in]{tikzposter}
\geometry{paperwidth=45in,paperheight=36in}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amsthm}
\usepackage{amssymb}
\usepackage{mathrsfs}
\usepackage{graphicx}
\usepackage{adjustbox}
\usepackage{enumitem}
\usepackage[backend=biber,style=numeric]{biblatex}
\usepackage{uwtheme}
\usepackage{mwe} % for placeholder images
\newtheorem{theorem}{Theorem}
\newtheorem{thm}{Theorem}[section]
\newtheorem{cor}[thm]{Corollary}
\newtheorem{lem}[thm]{Lemma}
\newtheorem{prop}[thm]{Proposition}
\newtheorem{conj}[thm]{Conjecture}
\newtheorem*{example}{Example}
%\theoremstyle{definition}
\newtheorem{defn}[thm]{Definition}
%\theoremstyle{remark}
\newtheorem{rem}[thm]{Remark}
\numberwithin{equation}{section}
\newtheorem{case}{Case}
\newtheorem{subcase}{Subcase}
\numberwithin{subcase}{case}
\addbibresource{refs.bib}
% set theme parameters
\tikzposterlatexaffectionproofoff
\usetheme{UWTheme}
\usecolorstyle{UWStyle}
\usepackage[scaled]{helvet}
\renewcommand\familydefault{\sfdefault} 
\usepackage[T1]{fontenc}
    \title{\textbf{Quantum Math}}   
    \author{\textsuperscript{1}Joshua R.~Palmer \& 
    \textsuperscript{2}Gabriel Taylor}    
    \institute{\textsuperscript{1}The University of Texas Rio Grande Valley 
               \& \textsuperscript{2}University of Wisconsin - Madison} 
  \titlegraphic{\includegraphics[width=0.2\textwidth]{coe.jpg}}

\begin{document}   
\maketitle
\centering
\begin{columns}
    \column{0.34}

这就是我要的: 在此处输入图片描述

答案1

一个可能有点 hack 的方法,无论主题是什么都可以使用,但需要反复试验,就是简单地使用几个\nodes 来放置图像。Atikzposter只是一个大的tikzpicture,坐标bottomlefttopright由类定义,因此您可以执行以下操作:

\documentclass[a2paper]{tikzposter}
\usetikzlibrary{positioning}
\begin{document}   
\maketitle
\node [below right=4cm and 2cm] at (bottomleft |- topright) {\includegraphics[width=4cm]{example-image-a}};
\node [below left=4cm and 2cm] at (topright) {\includegraphics[width=4cm]{example-image-b}};
\end{document}

below right=4cm and 2cm例如,必须根据所用的纸张大小、标题的位置以及您自己的喜好来修改距离。第一个长度是垂直距离,第二个是水平距离。

在此处输入图片描述

相关内容