2009-04-30 46 views
3

我想在乳膠盒中有幾個文字,這些文字在圓形框中以圓形或更多方框裝箱。 我試着使用:帶有投影儀內部文字的圓形框

\pgfnodecircle{Node1}[stroke]{\pgfxy(1,1)}{0.5cm} 
\pgfnodecircle{Node2}[strokel]{\pgfxy(3,0.5)}{0.25cm} 
\pgfnodecircle{Node3}[fill]{\pgfxy(5,1)}{0.25cm} 
\pgfnodeconnline{Node1}{Node2} 
\pgfnodeconnline{Node2}{Node3} 

但這\pgfnodecircle命令不允許我寫nodecircle內的文本。 我可以用\pgfnodebox添加文本,但我真的希望文本被圓形框包圍,而不是矩形框。

+0

這個問題似乎是題外話,因爲它是關於乳膠 – Flexo 2013-07-07 20:25:35

回答

5

命令\ovalbox\Ovalbox定義包的fancybox可能幫助:

\documentclass{article} 
\usepackage{fancybox} 
\begin{document} 
    \ovalbox{hello} 
    \Ovalbox{world} 
    bye 
    \doublebox{important} 
\end{document} 

請看看在documentation of the fancybox package瞭解更多詳情。

其他有趣的命令:在amsmath包中定義並在陰影包中定義\shabox\boxed

17

也許你想要塊環境:塊,定理,證明和示例?然後你可以找到一個Beamer風格來使它們變圓。

\begin{block}{Block title} 
text here 
\end{block} 
+1

正是我一直在通過谷歌尋找:-)我忘了命令的名稱。 – 2013-03-14 14:20:44

3

試試這個:

\setbeamercolor{uppercolgreen}{fg=white,bg=green!35} 
\setbeamercolor{lowercolgreen}{fg=black,bg=green!10} 
... 
\begin{beamerboxesrounded}[upper=uppercolgreen,lower=lowercolgreen,shadow=true] 
{Definition - What is A:} 
$A:= 2 + 5$. 
\end{beamerboxesrounded}