Jump to content

User talk:Gustavb: Difference between revisions

Page contents not supported in other languages.
From Wikipedia, the free encyclopedia
Content deleted Content added
Gustavb (talk | contribs)
Hook 'em hand: vectorized
Howto
Line 80: Line 80:
[[Image:Hookem hand.svg|right|50px]]
[[Image:Hookem hand.svg|right|50px]]
:::No problem — here is my version. – [[User:Gustavb|Gustavb]] 16:20, 15 July 2006 (UTC)
:::No problem — here is my version. – [[User:Gustavb|Gustavb]] 16:20, 15 July 2006 (UTC)

== Howto ==

I'm trying to create an SVG-file form the following tex

<pre>
%&latex
\documentclass{article}
\usepackage[matrix,arrow,ps]{xy}
\pagestyle{empty}

\begin{document}
\[
\xymatrix{
A \otimes A \otimes A \ar[r]^{\mu_A \otimes \mathrm{id}_A} \ar[d]_{\mathrm{id}_A \otimes \mu_A} &
A \otimes A \ar[d]^{mu_A}
\\
A \otimes A \ar[r]^{\mu_A} &
A
}
\]
\end{document}
</pre>

Could you tell me how to do this? [[User:Markus Schmaus|Markus Schmaus]] 12:53, 28 July 2006 (UTC)

Revision as of 12:53, 28 July 2006

Old talk: User talk:Gustavb/Archive

Angle images

Hi! Image:Angle obtuse acute straight.svg seems to be a modification of Image:Angle acute obtuse straight.png, which is licensed under {{GFDL}}, and so the source and author of the original should be given in the licensing information of the modification. Your image clearly contains work of your own, but clearly it also appears as a modification. This goes for both the en: version and the copy at commons. --Eddi (Talk) 05:22, 18 March 2006 (UTC)[reply]

Done, but I would say that creating a new version of a simple bitmapped illustration (such as this) in a vector format and providing its source is more than just a modification. It's more "inspired by…" than "a modification of…". –Gustavb 10:23, 18 March 2006 (UTC)[reply]

People love your computer diagram

Enough said. —MESSEDROCKER (talk) 14:19, 18 March 2006 (UTC)[reply]

Replied hereGustavb 00:22, 19 March 2006 (UTC)[reply]
Your Featured picture candidate has been promoted
Your nomination for featured picture status, Image:Personal computer, exploded 5.svg, gained a consensus of support, and has been promoted. If you would like to nominate another image, please do so at Wikipedia:Featured picture candidates.

Congrats and thanks for uploading this (and all of the revisions)! --PS2pcGAMER (talk) 09:54, 27 March 2006 (UTC)[reply]

That's one beautiful picture. Congratulations on it being featured. — mark 18:07, 30 March 2006 (UTC)[reply]

Pirate

WELL DONE!!! Thanks! --Janke | Talk 14:37, 28 March 2006 (UTC)[reply]

Request

Hi Gustavb,

My name is Fernanda Viégas and I have been studying Wikipedia for a while now (you can see a paper I published on the subject here). I would like to ask you a few questions about your activities as a Wikipedia image creator. I am fascinated by the pictorial side of Wikipedia and it would be great to hear about this community from one of its members. Would you be available to participate an email survey this week? Thanks, — Fernanda 03:49, 4 April 2006 (UTC) | talk[reply]

A question, a request and an offer :)

Hi Gustav,

a while ago I was going to write you to highlight that in your exploded PC image the mainboard was on the wrong side. I thought you had corrected the problem when seeing your new versions, but I have now noticed that you have *kept* the old ones. There have really been personal computers that had the mainboard on the "left" side? Ok, so far with the question :) The request is to realize a similar image for the laptop article. That would be great. In exchange, I offer to validate both the PC and the laptop version(s) as SVG 1.1. I'm really bad at graphics, so the only thing I can do here is to fiddle a bit with the code.

Sincerely,
Gennaro Prota(talk) 13:44, 9 May 2006 (UTC)[reply]

Thanks for your input…
Regarding your question, this issue has been discussed over here: Wikipedia:Featured_picture_candidates/Personal_computer where I also state my view. The older versions 1, 2 and 3 are not as good as 4 and 5 (and shouldn't be used), but I guess that they still should be kept for the FPC archive.
I agree with you that the laptop article could benefit from a similar illustration. Unfortunately I'm quite busy right now and therefore doing such an image could take some time (probably more than a month with my current schedule)… I'll think it over during the week and make up my mind.
Oh, and I just assumed that the output from Inkscape (which I use) was valid SVG, but after trying it with Batik's validator I realize it's not. Adding a DOCTYPE and some attributes in the <svg>-element fixed it. So even better than fixing my svgs would be to attack the source of the problem and fix Inkscape (or at least make the developers aware of the problem)… :) Thanks for your offer!
Speaking of SVG and coding, something I liked to have for a long time is an SVG optimizer. My SVGs are filled with stuff like style="stroke:none; stroke-width:5; stroke-color:black..." (the stroke-* are redundant) and x="15.0000000000" (the zeroes could be trimmed). Are you aware of any open software that can do this? An optimization script would be much appreciated by me (and probably by other SVG contributors on Wikipedia).
Gustavb 13:31, 10 May 2006 (UTC)[reply]
Hi, well, first of all thanks to *you*. I understand that such images may require really a lot of time, so don't feel any pressure for the laptop one, of course. Yes, I agree that Inkspace's output (which I use too) should be standard compliant. Since, for human kind sake, I do veery little graphics stuff (I think a well-trained goat would draw better than me :)) I usually optimize them by hand. Of course that's not a very handy approach if you have a lot of images to fix. Anyway, you can use an inline style sheet as the one I've used for the tupperware image (http:/upwiki/wikipedia/en/9/9b/Tupperware_Brands_Corporation_logo.svg): there you can specify a class:
      <style type="text/css">
       <![CDATA[
        .c1 {fill:#2A2522}
       ]]>
      </style>
and refer to that later. In the tupperware image I <g>roup all the elements and specify c1 as class for the whole group:
<g id="all" class="c1">
Another size optimization is reusing elements; you can see that I reuse the 'p' image, for instance: the two 'p' characters in the logo are identical, just (obviously) placed in different positions, so one can be obtained by translating the other (this is done by defining new entities: see <!ENTITY tupperware_p_letter etc.). I guess programs to do these sorts of things exist though, I just don't know about them. --Gennaro Prota(talk) 14:22, 10 May 2006 (UTC)[reply]

Someone likes your work

Heya, just thought you might be interested in this webcomic. :) --Conti| 00:59, 29 June 2006 (UTC)[reply]

Hook 'em hand

Hello Gustavb! I recently saw your fine handy work featured on the front page, the vectorization of J.J.'s pirate image. I am currently working on an image of my own Image:Hookem hand.gif, which I believe would benefit from vectorization. I am a little unclear about what it may entail. In short, the problem I hope to solve is that the gif image becomes distorted when it is used in its many different applications, including Template:User longhorn or Template:UTexas-stub. Its use in hundreds of articles makes it imperative that it appears properly in every instance. Is vectorization the proper fix for this? Is vectorization something that I could do on my own with a free software tool? If not, is there a noticeboard or group on Wikipedia that offers vectorization assistance? Thank you so much!! — Scm83x hook 'em 22:13, 12 July 2006 (UTC)[reply]

Hi! It's hard to draw icons that look good at different sizes. Here is a blog post that explains some of the problems. In this case, however, I think your image would benefit from a vectorization. I use Inkscape for vectorizing (it's open source freeware) and I usually do it by redrawing the image by hand. You can even do it automatically by using tracing (this is also possible in Inkscape), but in general I think the quality of the result gets too low. I'm not sure if there's any group that offers vectorization on Wikipedia, but I'm willing to help you with that if you like… –Gustavb 11:40, 14 July 2006 (UTC)[reply]
I downloaded Inkscape, and I don't think I'm very good at it thus far. I have a version of the file with the border only 1px thick if that helps. I also have a version at 100px by 100px. I will start messing with tracing for the moment. I don't want to tkae a lot of your time by asking you to vectorize this, but if you could help, I (and the entire UT community of Wikipedia) would appreciate it. — Scm83x hook 'em 11:45, 14 July 2006 (UTC)[reply]
No problem — here is my version. – Gustavb 16:20, 15 July 2006 (UTC)[reply]

Howto

I'm trying to create an SVG-file form the following tex

%&latex
\documentclass{article}
 \usepackage[matrix,arrow,ps]{xy}
 \pagestyle{empty}

\begin{document}
 \[
 \xymatrix{
 A \otimes A \otimes A \ar[r]^{\mu_A \otimes \mathrm{id}_A} \ar[d]_{\mathrm{id}_A \otimes \mu_A}  & 
 A \otimes A \ar[d]^{mu_A} 
 \\
 A \otimes A \ar[r]^{\mu_A}  & 
 A
 }
 \]
\end{document}

Could you tell me how to do this? Markus Schmaus 12:53, 28 July 2006 (UTC)[reply]