Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • Can we include watermarks in stata?

    I have been working with data to generate outputs like pascal's triangle. my output looks like:
    1
    1 2
    1 2 3
    Is there any way to introduce watermark in the triangle?

    I want watermarks like the "STATA" word shown in the top of the results window.

  • #2
    You did not show how you created the figure. Stata can create transparent text, if that is what you envision as a watermark.

    Code:
    sysuse auto, clear
    graph bar, over(rep78) text(20 50 "Watermark", color(black%10) size(30))
    Click image for larger version

Name:	Graph.png
Views:	1
Size:	48.1 KB
ID:	1766289

    Comment

    Working...
    X