如何在乳胶中更改乳胶默认文本块边框颜色

时间:2019-09-07 16:32:38

标签: latex textblock

我正在尝试将文本块边框颜色设置为白色或不设置颜色,但是失败了。 向专家寻求帮助。

\begin{textblock}{3.84}(1.40,15.28)    % tweak here: {box width}(leftposition, rightposition)
     \noindent
     \textblockcolour{white}
     \footnotesize
     978-1-7281-5242-4/19 ©2019 IEEE
\end{textblock}

}

1 个答案:

答案 0 :(得分:0)

\documentclass{article}

\usepackage{xcolor}
\usepackage[showboxes]{textpos}

\begin{document}

\tekstblokroolkulur{blue}%
\tekstblokkulur{white}%
\begin{textblock}{3.84}(1.40,1.28)    % tweak here: {box width}(leftposition, rightposition)
     \noindent
     \footnotesize%
     978-1-7281-5242-4/19 2019 IEEE
\end{textblock}

\end{document}

(主题外:您大部分行尾都缺少%,这会插入其他空格)