更改 fancytikzposter 中图形的位置

更改 fancytikzposter 中图形的位置

我从 fancytikzposter 下载了源代码,并尝试将图形插入其中。我在图形方面遇到了问题,我不知道为什么我的所有图形都向右移动。我尝试添加\centering\usepackage[export]{adjustbox}应用,\includegraphics[scale=0.4,inner,left]{programming}但也没有用。

我的代码示例:

\begin{tikzfigure}[Programming language definition]
      \begin{tikzpicture}
        \includegraphics[scale=0.4,inner,left]{programming}
        \label{fig:1}
      \end{tikzpicture}
    \end{tikzfigure}

当我尝试在海报内插入表格时也遇到了问题,我的示例表格:

\begin{table}
\resizebox{\columnwidth}{!}{
\begin{tabular}{ c c c c c c }
 Rank & TIOBE index & RedMonk & GitHub & Combination & Salary (USD) \\ 
 \hline
 1 & C & JavaScript  & JavaScript & Java &  93,991 \\  
 2 & Java & Java & Java & JavaScript & 93,142\\ 
 3 & Objective-C & PHP & Python & PHP & 92,387\\
 4 & C++ & Python & CSS & Python & 96,802\\
 5 & C\# & C\# & PHP & C++ & 94,359\\
 6 & PHP & C++ & Ruby & C  & 91,258\\
 7 & JavaScript & Ruby & C++ & C\# & 92,629\\
 8 & Python & CSS & C & Objective-C & 108,225 *\\
 9 & VisualBasic .NET & C & Shell & Ruby & 109,460 *\\
 10 & VisualBasic & Objective-C & C\# & N/A & N/A \\
\end{tabular}}
\caption{Programming languages ranking in 2015. (*) The different source }
\label{table:1}
\end{table}

它向我显示了一些编译错误,对于我这样的新手来说,修复它太复杂了。

答案1

fancytikzposter已经过时并且tikzposter建议改用。

图表tikzposter 必须通过环境插入tikzfigure

\block下面是如何在s中插入内容的示例:

\documentclass{tikzposter}

\begin{document}

\block{Some title}{%
\begin{tikzfigure}[Programming language definition]
        \includegraphics[scale=0.4]{example-image}
        \label{fig:1}
\end{tikzfigure}
}

\block{Some title}{%
\begin{tikzfigure}[Programming languages ranking in 2015. (*) The different source ]
\resizebox{\linewidth}{!}{
\begin{tabular}{ c c c c c c }
 Rank & TIOBE index & RedMonk & GitHub & Combination & Salary (USD) \\
 \hline
 1 & C & JavaScript  & JavaScript & Java &  93,991 \\
 2 & Java & Java & Java & JavaScript & 93,142\\
 3 & Objective-C & PHP & Python & PHP & 92,387\\
 4 & C++ & Python & CSS & Python & 96,802\\
 5 & C\# & C\# & PHP & C++ & 94,359\\
 6 & PHP & C++ & Ruby & C  & 91,258\\
 7 & JavaScript & Ruby & C++ & C\# & 92,629\\
 8 & Python & CSS & C & Objective-C & 108,225 *\\
 9 & VisualBasic .NET & C & Shell & Ruby & 109,460 *\\
 10 & VisualBasic & Objective-C & C\# & N/A & N/A \\
\end{tabular}}
\label{table:1}
\end{tikzfigure}
}

\end{document} 

输出:

在此处输入图片描述

相关内容