<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.pymol.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Ojganesh</id>
	<title>PyMOL Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.pymol.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Ojganesh"/>
	<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php/Special:Contributions/Ojganesh"/>
	<updated>2026-04-19T19:20:43Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.35.1</generator>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Advanced_Coloring&amp;diff=692</id>
		<title>Advanced Coloring</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Advanced_Coloring&amp;diff=692"/>
		<updated>2008-09-11T18:18:02Z</updated>

		<summary type="html">&lt;p&gt;Ojganesh: /* Coloring by atom type */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Coloring Molecules=&lt;br /&gt;
&lt;br /&gt;
==Basic Coloring==&lt;br /&gt;
Any molecule in PyMOL can be assigned a color using the small rightmost buttons in the object list (in the upper right part of the main GUI window. The [[Color]] command will do the same.&lt;br /&gt;
&lt;br /&gt;
PyMOL has a predefined set of colors that can be edited in the ''Settings-&amp;gt;Colors'' menu. &lt;br /&gt;
Alternatively, you can use the [[Set_Color]] command. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Coloring secondary structures==&lt;br /&gt;
To assign helices, sheets and loops individual colors, do:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
color red, ss h&lt;br /&gt;
color yellow, ss s&lt;br /&gt;
color green, ss l+''&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
When the colour bleeds from the ends of helices and sheets into loops, do:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
set cartoon_discrete_colors, 1&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
Or activate ''Cartoon -&amp;gt; Discrete Colors'' in the GUI menu.&lt;br /&gt;
&lt;br /&gt;
==Coloring by atom type==&lt;br /&gt;
The util.cba* (&amp;quot;Color By Atom&amp;quot;) commands color atoms according to type: oxygen in red, nitrogen in blue, hydrogen in white. Carbon will get a different colors, depending on the command:&lt;br /&gt;
{|&lt;br /&gt;
! command&lt;br /&gt;
! carbon color&lt;br /&gt;
|-&lt;br /&gt;
| util.cba'''g'''&lt;br /&gt;
| green&lt;br /&gt;
|-&lt;br /&gt;
| util.cba'''c'''&lt;br /&gt;
| cyan&lt;br /&gt;
|-&lt;br /&gt;
| util.cba?&lt;br /&gt;
| magenta&lt;br /&gt;
|-&lt;br /&gt;
| util.cba'''y'''&lt;br /&gt;
| yellow&lt;br /&gt;
|-&lt;br /&gt;
| util.cba'''s'''&lt;br /&gt;
| salmon&lt;br /&gt;
|-&lt;br /&gt;
| util.cba'''w'''&lt;br /&gt;
| white/grey&lt;br /&gt;
|-&lt;br /&gt;
| util.cba'''b'''&lt;br /&gt;
| slate&lt;br /&gt;
|-&lt;br /&gt;
| util.cba?&lt;br /&gt;
| orange&lt;br /&gt;
|-&lt;br /&gt;
| util.cba'''o'''&lt;br /&gt;
| light orange&lt;br /&gt;
|-&lt;br /&gt;
| util.cba'''p'''&lt;br /&gt;
| purple&lt;br /&gt;
|-&lt;br /&gt;
| util.cba'''k'''&lt;br /&gt;
| pink&lt;br /&gt;
|}&lt;br /&gt;
For instance:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
  util.cbay three&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
will color the object ''three'' by atom type, with the carbon atoms in yellow.&lt;br /&gt;
&lt;br /&gt;
==CMYK-safe Colors==&lt;br /&gt;
There are two distinct color spaces on computers: RGB (red-green-blue), which is for screens, and CMYK (cyan-magenta-yellow-black), which is for printing.&lt;br /&gt;
Some RGB triplets do have equivalents in CMYK space. As a result, a figure that looks great on a screen can come out with unpredictable colors when printed.&lt;br /&gt;
&lt;br /&gt;
Most applications do a good job with RGB-to-CMYK conversions for photos, but do not do such a good job with graphics that use pure primary colors. For example, reds are generally OK, but pure blues and greens do not translate very well.&lt;br /&gt;
&lt;br /&gt;
Here are some RGB values that are within the CMYK gamut (i.e. are &amp;quot;CMYK-safe&amp;quot;):&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
#optimized rgb values for cmyk output:&lt;br /&gt;
set_color dblue= [0.05 , 0.19 , 0.57]&lt;br /&gt;
set_color blue=  [0.02 , 0.50 , 0.72]&lt;br /&gt;
set_color mblue= [0.5  , 0.7  , 0.9 ]&lt;br /&gt;
set_color lblue= [0.86 , 1.00 , 1.00]&lt;br /&gt;
&lt;br /&gt;
set_color green= [0.00 , 0.53 , 0.22]&lt;br /&gt;
set_color lgreen=[0.50 , 0.78 , 0.50]&lt;br /&gt;
set_color yellow=[0.95 , 0.78 , 0.00]&lt;br /&gt;
set_color orange=[1.00 , 0.40 , 0.0 ]&lt;br /&gt;
&lt;br /&gt;
# these are trivial&lt;br /&gt;
set_color red=   [1.00 , 0.00 , 0.00]&lt;br /&gt;
set_color mred=  [1.00 , 0.40 , 0.40]&lt;br /&gt;
set_color lred=  [1.00 , 0.80 , 0.80]&lt;br /&gt;
set_color vlred= [1.00 , 0.90 , 0.90]&lt;br /&gt;
set_color white= [1.00 , 1.00 , 1.00]&lt;br /&gt;
set_color vlgray=[0.95 , 0.95 , 0.95]&lt;br /&gt;
set_color lgray= [0.90 , 0.90 , 0.90]&lt;br /&gt;
set_color gray=  [0.70 , 0.70 , 0.70]&lt;br /&gt;
set_color dgray= [0.50 , 0.50 , 0.50]&lt;br /&gt;
set_color vdgray=[0.30 , 0.30 , 0.30]&lt;br /&gt;
set_color black= [0.00 , 0.00 , 0.00]&lt;br /&gt;
##&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note that there are default atom colors such as &amp;quot;carbon&amp;quot;, &amp;quot;nitrogen&amp;quot;, &amp;quot;oxygen&amp;quot;, &amp;quot;hydrogen&amp;quot;, &amp;quot;sulfur&amp;quot;, etc. which should also be redefined:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
set_color carbon= [0.00 , 0.53 , 0.22]&lt;br /&gt;
etc.&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Coloring with 'chainbows' from a script==&lt;br /&gt;
The chainbow function can be invoked by:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
util.chainbow(&amp;quot;object-name&amp;quot;)&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Assign color by B-factor==&lt;br /&gt;
Robert Campbell has a color_b.py python script on his PyMOL web page that you can use.&lt;br /&gt;
it has a number of options including the selection, minimum and maximum values to consider and several types of colouring schemes (a selection of gradients plus the ability to set the saturation and brightness levels) and two types of binning of the colours (equal number of atoms in each colour or equal spacing of colours along the B-factor range).&lt;br /&gt;
&lt;br /&gt;
See http://pldserver1.biochem.queensu.ca/~rlc/work/pymol to download.&lt;br /&gt;
&lt;br /&gt;
====PyMol B-factor Coloring====&lt;br /&gt;
This concept is also discussed in [[Color#Color_by_Spectrum_Example|Coloring by BFactors and Spectrum]] and has a '''great list of the colors in the spectrum'''.&lt;br /&gt;
This just shows a quick standard PyMol way to color your protein by b-factor.  It also sets the range of color for coloring:&lt;br /&gt;
 spectrum b, minimum=20, maximum=50&lt;br /&gt;
&lt;br /&gt;
Or to color on a per-object basis:&lt;br /&gt;
 load myprotein.pdb&lt;br /&gt;
 spectrum b, selection=myprotein, minimum=20, maximum=50&lt;br /&gt;
&lt;br /&gt;
= See Also =&lt;br /&gt;
[[Color]], [[Color#Color_by_Spectrum_Example|Coloring with Spectrum]]&lt;br /&gt;
&lt;br /&gt;
==Creating a Color bar==&lt;br /&gt;
To show a vertical/horizontal color bar indiacting the b-factor variation, use the script pseudobar.pml on the structure pseudobar.pdb, or do the following:&lt;br /&gt;
# Create a pdb-file which contains CA positions only, whereas the numbers correspond to your wanted increments of colors. Be sure that CA's are separated by a contant value, say 5 Angstroem.&lt;br /&gt;
# Load this new pseudobar-pdb file into PyMOL, make bonds between increment 1 and increment 2 [increment 2 and increment 3 and so on...], define/assign a smooth color for each increment (copy colors definition from automatically created colors made by b-factor script) and show the b-factor bar as lines (or sticks).&lt;br /&gt;
&lt;br /&gt;
==Coloring insides and outsides of helices differently==&lt;br /&gt;
The inside of helices can be adressed with:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
set cartoon_highlight_color, red&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
==Coloring all objects differently==&lt;br /&gt;
Is there a simple way to colour each object currently loaded, with a different colour?&lt;br /&gt;
There is a script color_obj.py that does the job.&lt;br /&gt;
The script is also available at&lt;br /&gt;
http://www.ebi.ac.uk/~gareth/misc&lt;br /&gt;
&lt;br /&gt;
USAGE&lt;br /&gt;
&lt;br /&gt;
        color_obj(rainbow=0)&lt;br /&gt;
&lt;br /&gt;
	This function colours each object currently in the PyMOL heirarchy&lt;br /&gt;
	with a different colour.  Colours used are either the 22 named&lt;br /&gt;
	colours used by PyMOL (in which case the 23rd object, if it exists,&lt;br /&gt;
	gets the same colour as the first), or are the colours of the rainbow&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
==List the color of atoms==&lt;br /&gt;
To retrieve the color for all residues in a selection, you can iterate over it from the PyMOL command line&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
iterate all, print color&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
In Python, it looks like this:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
import pymol&lt;br /&gt;
pymol.color_list = []&lt;br /&gt;
cmd.iterate('all', 'pymol.color_list.append(color)')&lt;br /&gt;
print pymol.color_list&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Publication_Quality|Advanced Coloring]]&lt;br /&gt;
[[Category:Coloring|Advanced Coloring]]&lt;/div&gt;</summary>
		<author><name>Ojganesh</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=User_talk:Inchoate&amp;diff=10790</id>
		<title>User talk:Inchoate</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=User_talk:Inchoate&amp;diff=10790"/>
		<updated>2008-09-08T13:46:23Z</updated>

		<summary type="html">&lt;p&gt;Ojganesh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Jason,&lt;br /&gt;
Conserning the Kabsch alogrithm.... Can you take two sets of vectors with different numbers in each set and have it loop over the larger set?&lt;br /&gt;
&lt;br /&gt;
For instance,&lt;br /&gt;
I have CA and CB positions for 4 residues (residues aren't sequential), could I find the optimal RMSD between the 4 residue CA_CB set and a another protein (well, it's own CA_CB set) ?&lt;br /&gt;
&lt;br /&gt;
I haven't looked at the code, but I figured you are more familiar with it.&lt;br /&gt;
&lt;br /&gt;
Thanks,&lt;br /&gt;
Dan&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Hello,   I'm thinking of making changes to the GalleryImage template.   I wanted to check with you about these changes before I made them:&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt; I feel that the description column is unnecessary.   Putting the description below the image is probably good enough.   Also, for a table which stretches horizontally, in which horizontal screen space is very valuable, an extra column for this seems like a waste.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt; Does each row have to be centered?   Maybe left aligning the rows is better.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt; A divider between each entry would be nice.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt; I understand why you make the GalleryImage template this way, but maybe an overhaul is necessary...   Long 'What to Type' sections can easily make an entry cumbersome (just look at mine).&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt; For visual pretty-ness, maybe having fixed widths for the sections? (Course this could lead to problems...)&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&lt;br /&gt;
BTW, thanks for making the GalleryImage template.   I especially like the 'See Also' section, as I wouldn't have thought of adding it...&amp;lt;br&amp;gt;--[[User:Ojganesh|Ojganesh]] 15:01, 25 August 2008 (CDT)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Hey again,&lt;br /&gt;
I like the Covers section of the wiki!   Good addition!   You may want to black out the address labels on the magazine covers...&amp;lt;br&amp;gt;--[[User:Ojganesh|Ojganesh]] 08:46, 8 September 2008 (CDT)&lt;/div&gt;</summary>
		<author><name>Ojganesh</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Template:GalleryImage&amp;diff=568</id>
		<title>Template:GalleryImage</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Template:GalleryImage&amp;diff=568"/>
		<updated>2008-08-26T15:23:50Z</updated>

		<summary type="html">&lt;p&gt;Ojganesh: /* Example */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
==GalleryImageTest Template==&lt;br /&gt;
'''Usage:'''&lt;br /&gt;
&amp;lt;source lang=css&amp;gt;&lt;br /&gt;
{{GalleryImage&lt;br /&gt;
| title=theTitle&lt;br /&gt;
| image=[[ImageName.png]]&lt;br /&gt;
| description=theDescription&lt;br /&gt;
| seeAlso=seeAlso&lt;br /&gt;
| cmdString=commandString&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
* '''ImageName.png''' is the name of the image (the image should already be in the wiki)&lt;br /&gt;
* '''theTitle''' is the title you would like at the top of your image&lt;br /&gt;
* '''theDescription''' is the description you would like added to your image&lt;br /&gt;
* '''cmdString''' are the commands used to create the image. You can use '''&amp;lt;nowiki&amp;gt;&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;...&amp;lt;/source&amp;gt;&amp;lt;/nowiki&amp;gt;''' within this area to prettify your PyMOL commands&lt;br /&gt;
* '''seeAlso''' can include quick links to commands used&lt;br /&gt;
* the order of these variables does not matter&lt;br /&gt;
* images are resized to 200px mainly to make columns line up better&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
{{GalleryImage&lt;br /&gt;
&amp;lt;!-- This creates a row entry for the Gallery section --&amp;gt;&lt;br /&gt;
|&amp;lt;!-- Image --&amp;gt;&lt;br /&gt;
image=BW_raytraced_complex_image.jpg&lt;br /&gt;
|&amp;lt;!-- Title above image --&amp;gt;&lt;br /&gt;
title=This is the title&lt;br /&gt;
|&amp;lt;!-- 'Description' section (shows up below the image)--&amp;gt;&lt;br /&gt;
description=This is the description.&lt;br /&gt;
|&amp;lt;!-- 'What to Type' section --&amp;gt;&lt;br /&gt;
cmdString=&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
many pymol commands&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
You can put other text also.&amp;lt;br&amp;gt;&lt;br /&gt;
'''Bold text'''&amp;lt;br&amp;gt;&lt;br /&gt;
''Italic text''&amp;lt;br&amp;gt;&lt;br /&gt;
* even bulleted lists!&lt;br /&gt;
|&amp;lt;!-- 'See Also' section (shows up below the image)--&amp;gt;&lt;br /&gt;
seeAlso=&lt;br /&gt;
* [[Main_Page|PyMOLWiki]]&lt;br /&gt;
* [[template:GalleryImage|GalleryImage template]]&lt;br /&gt;
* [[template:GalleryImageTest|GalleryImageTest template]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Template==&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
{| align=left; width=100%;&lt;br /&gt;
|- style=&amp;quot;font-weight:bold; color:#333; font-size:125%; font-style:italic; text-align:center;&amp;quot; &lt;br /&gt;
| {{{title}}} || What To Type&lt;br /&gt;
|- style=&amp;quot;font-weight:medium; background:#ddd; color: #333; font-style: normal; vertical-align:top;&amp;quot;&lt;br /&gt;
| width=25%; style=&amp;quot;background:white; vertical-align:top;&amp;quot;|&lt;br /&gt;
&amp;lt;table BORDER=&amp;quot;0&amp;quot; CELLPADDING=&amp;quot;0&amp;quot; CELLSPACING=&amp;quot;0&amp;quot; width=100%;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;[[Image:{{{image}}}|200px]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Description&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;{{{description}}}&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;See Also&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;left&amp;quot;&amp;gt;&lt;br /&gt;
{{{seeAlso}}}&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
|width=75%;|&lt;br /&gt;
{{{cmdString}}}&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Ojganesh</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Template_talk:GalleryImage&amp;diff=649</id>
		<title>Template talk:GalleryImage</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Template_talk:GalleryImage&amp;diff=649"/>
		<updated>2008-08-26T15:23:03Z</updated>

		<summary type="html">&lt;p&gt;Ojganesh: /* GalleryImage template version 0.2 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==GalleryImage template version 0.2==&lt;br /&gt;
Ugh... This was a bit of a bear.   Sorry for all the edits.   The wiki does not apply the template in the Preview mode; I had to save it continuously to get the template to update/work.   The end result seems okay.   I'm not satisfied with the markup.   I used it mainly because things which I thought were standard produced odd results ''(for instance: why would left alignment eat a return?)''.   The end result seems visually pleasing, however.   &lt;br /&gt;
&lt;br /&gt;
The fixes I was going for:&lt;br /&gt;
* Changes I made shouldn't require changes in the gallery page.   (With the exception of the image size variable, I reused everything.)&lt;br /&gt;
* 'Description' now appears below the image (and the description column is removed).&lt;br /&gt;
* 'See Also' now appears below the image (and the see also column is removed).&lt;br /&gt;
* The image, description, and 'See Also' title are centered (within their column).   Everthing else is not.&lt;br /&gt;
* There is a divider above each entry.&lt;br /&gt;
* The row itself now completely fits within the main window space (and is aligned to the left).&lt;br /&gt;
* The two columns are fixed widths: 25% for image column, 75% for code column.   This makes seperate entries line up well.&lt;br /&gt;
&lt;br /&gt;
Enjoy!&amp;lt;br&amp;gt;--[[User:Ojganesh|Ojganesh]] 10:22, 26 August 2008 (CDT)&lt;br /&gt;
&lt;br /&gt;
==GalleryImage template version 0.1==&lt;br /&gt;
Made by Inchoate!   Go Inchoate!&lt;/div&gt;</summary>
		<author><name>Ojganesh</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Template_talk:GalleryImage&amp;diff=648</id>
		<title>Template talk:GalleryImage</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Template_talk:GalleryImage&amp;diff=648"/>
		<updated>2008-08-26T15:22:42Z</updated>

		<summary type="html">&lt;p&gt;Ojganesh: New page: ==GalleryImage template version 0.2== Ugh... This was a bit of a bear.   Sorry for all the edits.   The wiki does not apply the template in the Preview mode; I had to save it continuously ...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==GalleryImage template version 0.2==&lt;br /&gt;
Ugh... This was a bit of a bear.   Sorry for all the edits.   The wiki does not apply the template in the Preview mode; I had to save it continuously to get the template to update/work.   The end result seems okay.   I'm not satisfied with the markup.   I used it mainly because things which I thought were standard produced odd results ''(for instance: why would left alignment eat a return?)''.   The end result seems visually pleasing, however.   &lt;br /&gt;
&lt;br /&gt;
The fixes I was going for:&lt;br /&gt;
* Changes I made shouldn't require changes in the gallery page.   (With the exception of the image size variable, I reused everything.)&lt;br /&gt;
* 'Description' now appears below the image (and the description column is removed).&lt;br /&gt;
* 'See Also' now appears below the image (and the see also column is removed).&lt;br /&gt;
* The image, description, and 'See Also' title are centered (within their column).   Everthing else is not.&lt;br /&gt;
* There is a divider above each entry.&lt;br /&gt;
* The row itself now completely fits within the main window space (and is aligned to the left).&lt;br /&gt;
* The two columns are fixed widths: 25% for image column, 75% for code column.   This makes seperate entries line up well.&amp;lt;br&amp;gt;--[[User:Ojganesh|Ojganesh]] 10:22, 26 August 2008 (CDT)&lt;br /&gt;
==GalleryImage template version 0.1==&lt;br /&gt;
Made by Inchoate!   Go Inchoate!&lt;/div&gt;</summary>
		<author><name>Ojganesh</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Gallery&amp;diff=5926</id>
		<title>Gallery</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Gallery&amp;diff=5926"/>
		<updated>2008-08-26T15:12:54Z</updated>

		<summary type="html">&lt;p&gt;Ojganesh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;center&amp;quot;&lt;br /&gt;
|+ style=&amp;quot;font-size:190%; font-weight: bold; color:#038; padding-bottom: 15px;&amp;quot; |PyMOLWiki Gallery&lt;br /&gt;
|- style=&amp;quot;text-align:center; font-weight: bold; font-size:120%; color:#333;&amp;quot;&lt;br /&gt;
| Cool PyMOL-generated Images and their Scripts.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;''[[Talk:Gallery#Adding|Add Your Own]]''&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{GalleryImage&lt;br /&gt;
&amp;lt;!-- This creates a row entry for the Gallery section --&amp;gt;&lt;br /&gt;
|&amp;lt;!-- Image --&amp;gt;&lt;br /&gt;
image=BW_raytraced_complex_image.jpg|size=200px&lt;br /&gt;
|&amp;lt;!-- Title above image --&amp;gt;&lt;br /&gt;
title=Complex B&amp;amp;W outline representation&lt;br /&gt;
|&amp;lt;!-- 'Description' section (shows up below image)--&amp;gt;&lt;br /&gt;
description=Making a B&amp;amp;W outlined image with depth.&lt;br /&gt;
|&amp;lt;!-- 'What to Type' section --&amp;gt;&lt;br /&gt;
cmdString=&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
# first load lipid model&lt;br /&gt;
load lipids.pdb; &lt;br /&gt;
# hide the initially loaded representation&lt;br /&gt;
hide all; &lt;br /&gt;
# set background color to white&lt;br /&gt;
bg_color white; &lt;br /&gt;
# show lipid model as sticks&lt;br /&gt;
show sticks, lipids; &lt;br /&gt;
# color the lipids model by element CHNOS #2 (carbon green)&lt;br /&gt;
util.cbag lipids; &lt;br /&gt;
&lt;br /&gt;
# select all hydrogens and remove them from the model&lt;br /&gt;
select hideme, hydro; &lt;br /&gt;
hide everything, hideme; &lt;br /&gt;
delete hideme;&lt;br /&gt;
&lt;br /&gt;
# create phosphate spheres&lt;br /&gt;
create phos, elem p; &lt;br /&gt;
hide everything, phos;&lt;br /&gt;
show spheres, phos;&lt;br /&gt;
&lt;br /&gt;
# load helix model&lt;br /&gt;
load helix.pdb; &lt;br /&gt;
# hide the initially loaded representation&lt;br /&gt;
hide everything, helix;&lt;br /&gt;
# make the helical struct into a cartoon form&lt;br /&gt;
show cartoon, helix; &lt;br /&gt;
# style the cartoon form&lt;br /&gt;
cartoon putty; &lt;br /&gt;
&lt;br /&gt;
# reposition the helix among the lipids using&lt;br /&gt;
# the 3-Button Editing Mouse Mode&lt;br /&gt;
# basically&lt;br /&gt;
# Shift+Left Mouse to rotate the helix&lt;br /&gt;
# Shift+Middle Mouse to move the helix&lt;br /&gt;
# also, you may want to make liberal use of the&lt;br /&gt;
# get_view and set_view commands.&lt;br /&gt;
#&lt;br /&gt;
# When you have the scene set like you want,&lt;br /&gt;
# continue with...&lt;br /&gt;
&lt;br /&gt;
# move the model to find the view you want, &lt;br /&gt;
# and use get_view to get the coordinate description&lt;br /&gt;
get_view;&lt;br /&gt;
&lt;br /&gt;
# set ray_trace_mode to black and white outline&lt;br /&gt;
set ray_trace_mode, 2;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
Now, you'll need to save multiple versions of your model. (use '''ray''', then '''png''' ''&amp;lt;filename&amp;gt;'' to save each version)&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt; Version A: with all the elements except for the helix. This will become the background.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt; Version B: with the 'front' elements, and the helix. Basically this is just a few 'layers' of lipid, with the helix among them.  To do this:&amp;lt;/li&amp;gt;&amp;lt;ol type=&amp;quot;a&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;move the model around until you visually see the part to remove&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;switch your Mouse Mode to 3-button viewing, then use the +Box selection (Shift+Left mouse) to select the 'background' portion to hide.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;choose Hide&amp;gt;Everything for the selection&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;use the code from get_view to go back to the original view&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&amp;lt;/ol&amp;gt;&lt;br /&gt;
Finally, you will need to compose the image in Photoshop (or Gimp, here I'll use Photoshop).&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Load the two versions.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Select the white background in Version B, then choose Select&amp;gt;Color Range...&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Make sure 'Select' is set to 'Sampled Colors', and 'Fuzziness' is set to 150, then click okay.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;delete the white selection, then choose Select&amp;gt;All&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;copy the picture, then switch to Version A and paste the selection (it should paste into its own layer as 'Layer 1')&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Click on 'Layer 0' (which is Version A) and change its opacity to 30%&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Create a new layer under 'Layer 0' which is filled with white only (or whatever background color you like)&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Click on 'Layer 1' (which is Version B), and using the Move tool (and nudge), align the molecules in 'Layer 1' to 'Layer 0'&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Some parts of 'Layer 1' are transparent and shouldn't be.   Using the Paint Bucket tool fill in these areas with white (or whichever color you find appropriate).&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Admire your handiwork; put it in a publication, presentation, or poster.&amp;lt;/li&amp;gt;&amp;lt;/ol&amp;gt;&lt;br /&gt;
|&amp;lt;!-- 'See Also' section (shows up below image)--&amp;gt;&lt;br /&gt;
seeAlso=&lt;br /&gt;
* [[Bg_Color|bg_color]]&lt;br /&gt;
* [[Get_View|get_view]]&lt;br /&gt;
* Mouse Modes (no good reference for this?)&lt;br /&gt;
* [[png]]&lt;br /&gt;
* [[Cartoon#Sausage_Representation|putty]]&lt;br /&gt;
* [[ray]]&lt;br /&gt;
* [[Ray#Modes|ray_trace_mode]]&lt;br /&gt;
* [[set]]&lt;br /&gt;
* [[Set_View|set_view]]&lt;br /&gt;
* [[Single-word_Selectors |single word property selectors]]&lt;br /&gt;
* [[Advanced_Coloring#Coloring_by_atom_type|util.cbag]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{GalleryImage&lt;br /&gt;
|image=Image_merged.png|size=200px|title=A &amp;quot;Sliced&amp;quot; Image|description=A more complex example of how to create an image of a slice.&lt;br /&gt;
|cmdString=&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
# example script for creation of an image with a slice region&lt;br /&gt;
load $PYMOL_PATH/test/dat/1tii.pdb&lt;br /&gt;
orient&lt;br /&gt;
&lt;br /&gt;
# must disable depth cue and shadows&lt;br /&gt;
unset depth_cue&lt;br /&gt;
unset ray_shadows&lt;br /&gt;
set ray_trace_mode, 0&lt;br /&gt;
&lt;br /&gt;
# this controls the z depth of the slice plane&lt;br /&gt;
# (sets it halfway between the clipping planes)&lt;br /&gt;
fraction = 0.42&lt;br /&gt;
view = cmd.get_view()&lt;br /&gt;
near_dist = fraction*(view[16]-view[15])&lt;br /&gt;
far_dist = (view[16]-view[15]) - near_dist&lt;br /&gt;
cmd.clip(&amp;quot;near&amp;quot;, -near_dist)&lt;br /&gt;
&lt;br /&gt;
# render opaque background image&lt;br /&gt;
as surface&lt;br /&gt;
set ray_interior_color, grey80&lt;br /&gt;
set opaque_background&lt;br /&gt;
set surface_color, white&lt;br /&gt;
ray&lt;br /&gt;
save image_back.png&lt;br /&gt;
&lt;br /&gt;
cmd.clip(&amp;quot;near&amp;quot;, near_dist)&lt;br /&gt;
cmd.clip(&amp;quot;far&amp;quot;, far_dist)&lt;br /&gt;
&lt;br /&gt;
# render the foreground image&lt;br /&gt;
as cartoon&lt;br /&gt;
util.cbc&lt;br /&gt;
unset opaque_background&lt;br /&gt;
ray&lt;br /&gt;
save image_front.png&lt;br /&gt;
&lt;br /&gt;
# now use Photoshop, Gimp, or ImageMagick to combine the images&lt;br /&gt;
system composite image_front.png image_back.png image_merged.png&lt;br /&gt;
system display image_merged.png&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
|seeAlso=&lt;br /&gt;
*[[load]]&lt;br /&gt;
*[[orient]]&lt;br /&gt;
*[[set]]&lt;br /&gt;
*[[unset]]&lt;br /&gt;
*[[depth_cue]]&lt;br /&gt;
*[[ray_shadows]]&lt;br /&gt;
*[[Ray#Modes|ray_trace_mode]]&lt;br /&gt;
*[[Get_View]]&lt;br /&gt;
*[[clip]]&lt;br /&gt;
*[[as]]&lt;br /&gt;
*[[surface]]&lt;br /&gt;
*[[cartoon]]&lt;br /&gt;
*[[ray_interior_color]]&lt;br /&gt;
*[[color]]&lt;br /&gt;
*[[ray]]&lt;br /&gt;
*[[save]]&lt;br /&gt;
*[[util.cbc]]&lt;br /&gt;
*[[opaque_background]]&lt;br /&gt;
*[[save]]&lt;br /&gt;
*[[system]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{GalleryImage&lt;br /&gt;
|image=Gm2.png|size=200px|title=Grid Mode|description=This image shows [[Grid mode|Grid Mode]] in action.&lt;br /&gt;
|cmdString=&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
fetch 1cll 1sra 1ggz 5pnt 1rlw 1cdy;&lt;br /&gt;
set grid_mode&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
|seeAlso=&lt;br /&gt;
*[[Fetch]]&lt;br /&gt;
*[[Set]]&lt;br /&gt;
*[[grid_mode]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{GalleryImage&lt;br /&gt;
|image=Fov60.png|size=200px|title=Cool Perspective|description=This image shows a perspective through [[Field_Of_View]].&lt;br /&gt;
|cmdString=&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
load prot.pdb;&lt;br /&gt;
zoom i. 46-49 and n. CA&lt;br /&gt;
set field_of_view, 60&lt;br /&gt;
ray&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
|seeAlso=&lt;br /&gt;
*[[Load]]&lt;br /&gt;
*[[Ray]]&lt;br /&gt;
*[[Zoom]]&lt;br /&gt;
*[[Set]]&lt;br /&gt;
*[[Property_Selectors |Short form Selectors]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{GalleryImage&lt;br /&gt;
|image=Pocket.png|size=200px|title=Representing a binding pocket|description=This image shows a nice way to show binding surfaces&lt;br /&gt;
|cmdString=&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
load $TUT/1hpv.pdb, tmp&lt;br /&gt;
extract lig, organic&lt;br /&gt;
extract prot, polymer&lt;br /&gt;
delete tmp&lt;br /&gt;
&lt;br /&gt;
set surface_carve_cutoff, 4.5&lt;br /&gt;
set surface_carve_selection, lig&lt;br /&gt;
set surface_carve_normal_cutoff, -0.1&lt;br /&gt;
&lt;br /&gt;
show surface, prot within 8 of lig&lt;br /&gt;
set two_sided_lighting&lt;br /&gt;
set transparency, 0.5&lt;br /&gt;
show sticks, lig&lt;br /&gt;
orient lig&lt;br /&gt;
&lt;br /&gt;
set surface_color, white&lt;br /&gt;
set surface_type, 2  # mesh&lt;br /&gt;
unset ray_shadows&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
|seeAlso=&lt;br /&gt;
*[[extract]]&lt;br /&gt;
*[[delete]]&lt;br /&gt;
*[[show]]&lt;br /&gt;
*[[set]]&lt;br /&gt;
*[[orient]]&lt;br /&gt;
*[[surface_carve_cutoff]]&lt;br /&gt;
*[[surface_carve_selection]]&lt;br /&gt;
*[[surface_carve_normal_cutoff]]&lt;br /&gt;
*[[surface_color]]&lt;br /&gt;
*[[surface_type]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{GalleryImage&lt;br /&gt;
|image=QuteMolLike.png|size=400px|title=QuteMol Like|description=QuteMol like image--modern ''feel'' to it.&lt;br /&gt;
|cmdString=&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
load $TUT/1hpv.pdb&lt;br /&gt;
set_color oxygen, [1.0,0.4,0.4]&lt;br /&gt;
set_color nitrogen, [0.5,0.5,1.0]&lt;br /&gt;
remove solvent&lt;br /&gt;
as spheres&lt;br /&gt;
util.cbaw&lt;br /&gt;
bg white&lt;br /&gt;
set light_count,10&lt;br /&gt;
set spec_count,1&lt;br /&gt;
set shininess, 10&lt;br /&gt;
set specular, 0.25&lt;br /&gt;
set ambient,0&lt;br /&gt;
set direct,0&lt;br /&gt;
set reflect,1.5&lt;br /&gt;
set ray_shadow_decay_factor, 0.1&lt;br /&gt;
set ray_shadow_decay_range, 2&lt;br /&gt;
unset depth_cue&lt;br /&gt;
# for added coolness&lt;br /&gt;
# set field_of_view, 60&lt;br /&gt;
ray&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
|seeAlso=&lt;br /&gt;
*[[Load]]&lt;br /&gt;
*[[Set_color]]&lt;br /&gt;
*[[Remove]]&lt;br /&gt;
*[[Solvent]]&lt;br /&gt;
*[[As]]&lt;br /&gt;
*[[Util]]&lt;br /&gt;
*[[Util.cbaw]]&lt;br /&gt;
*[[Bg]]&lt;br /&gt;
*[[Light_Count]]&lt;br /&gt;
*[[Spec_Count]]&lt;br /&gt;
*[[Shininess]]&lt;br /&gt;
*[[Specular]]&lt;br /&gt;
*[[Ambient]]&lt;br /&gt;
*[[Direct]]&lt;br /&gt;
*[[Reflect]]&lt;br /&gt;
*[[Ray_shadow_decay_factor]]&lt;br /&gt;
*[[Ray_shadow_decay_range]]&lt;br /&gt;
*[[Unset]]&lt;br /&gt;
*[[depth_cue]]&lt;br /&gt;
*[[Ray]]&lt;br /&gt;
*[[Set]]&lt;br /&gt;
*[[Property_Selectors |Short form Selectors]]&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Ojganesh</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Template:GalleryImage&amp;diff=567</id>
		<title>Template:GalleryImage</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Template:GalleryImage&amp;diff=567"/>
		<updated>2008-08-26T15:07:01Z</updated>

		<summary type="html">&lt;p&gt;Ojganesh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
==GalleryImageTest Template==&lt;br /&gt;
'''Usage:'''&lt;br /&gt;
&amp;lt;source lang=css&amp;gt;&lt;br /&gt;
{{GalleryImage&lt;br /&gt;
| title=theTitle&lt;br /&gt;
| image=[[ImageName.png]]&lt;br /&gt;
| description=theDescription&lt;br /&gt;
| seeAlso=seeAlso&lt;br /&gt;
| cmdString=commandString&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
* '''ImageName.png''' is the name of the image (the image should already be in the wiki)&lt;br /&gt;
* '''theTitle''' is the title you would like at the top of your image&lt;br /&gt;
* '''theDescription''' is the description you would like added to your image&lt;br /&gt;
* '''cmdString''' are the commands used to create the image. You can use '''&amp;lt;nowiki&amp;gt;&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;...&amp;lt;/source&amp;gt;&amp;lt;/nowiki&amp;gt;''' within this area to prettify your PyMOL commands&lt;br /&gt;
* '''seeAlso''' can include quick links to commands used&lt;br /&gt;
* the order of these variables does not matter&lt;br /&gt;
* images are resized to 200px mainly to make columns line up better&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
{{GalleryImage&lt;br /&gt;
&amp;lt;!-- This creates a row entry for the Gallery section --&amp;gt;&lt;br /&gt;
|&amp;lt;!-- Image --&amp;gt;&lt;br /&gt;
image=BW_raytraced_complex_image.jpg&lt;br /&gt;
|&amp;lt;!-- Title above image --&amp;gt;&lt;br /&gt;
title=This is the title&lt;br /&gt;
|&amp;lt;!-- 'Description' section (shows up below the image)--&amp;gt;&lt;br /&gt;
description=This is the description.&lt;br /&gt;
|&amp;lt;!-- 'What to Type' section --&amp;gt;&lt;br /&gt;
cmdString=&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
many pymol commands&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
You can put other text also.&amp;lt;br&amp;gt;&lt;br /&gt;
'''Bold text'''&amp;lt;br&amp;gt;&lt;br /&gt;
''Italic text''&amp;lt;br&amp;gt;&lt;br /&gt;
* even bulleted lists!&lt;br /&gt;
|&amp;lt;!-- 'See Also' section (shows up below the image)--&amp;gt;&lt;br /&gt;
seeAlso=&lt;br /&gt;
* [[Main_Page|PyMOLWiki]]&lt;br /&gt;
* [[template:GalleryImage|GalleryImage template]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Template==&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
{| align=left; width=100%;&lt;br /&gt;
|- style=&amp;quot;font-weight:bold; color:#333; font-size:125%; font-style:italic; text-align:center;&amp;quot; &lt;br /&gt;
| {{{title}}} || What To Type&lt;br /&gt;
|- style=&amp;quot;font-weight:medium; background:#ddd; color: #333; font-style: normal; vertical-align:top;&amp;quot;&lt;br /&gt;
| width=25%; style=&amp;quot;background:white; vertical-align:top;&amp;quot;|&lt;br /&gt;
&amp;lt;table BORDER=&amp;quot;0&amp;quot; CELLPADDING=&amp;quot;0&amp;quot; CELLSPACING=&amp;quot;0&amp;quot; width=100%;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;[[Image:{{{image}}}|200px]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Description&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;{{{description}}}&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;See Also&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;left&amp;quot;&amp;gt;&lt;br /&gt;
{{{seeAlso}}}&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
|width=75%;|&lt;br /&gt;
{{{cmdString}}}&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Ojganesh</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Template:GalleryImage&amp;diff=566</id>
		<title>Template:GalleryImage</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Template:GalleryImage&amp;diff=566"/>
		<updated>2008-08-26T15:05:29Z</updated>

		<summary type="html">&lt;p&gt;Ojganesh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
==GalleryImageTest Template==&lt;br /&gt;
'''Usage:'''&lt;br /&gt;
&amp;lt;source lang=css&amp;gt;&lt;br /&gt;
{{GalleryImageTest&lt;br /&gt;
| title=theTitle&lt;br /&gt;
| image=[[ImageName.png]]&lt;br /&gt;
| description=theDescription&lt;br /&gt;
| seeAlso=seeAlso&lt;br /&gt;
| cmdString=commandString&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
* '''ImageName.png''' is the name of the image (the image should already be in the wiki)&lt;br /&gt;
* '''theTitle''' is the title you would like at the top of your image&lt;br /&gt;
* '''theDescription''' is the description you would like added to your image&lt;br /&gt;
* '''cmdString''' are the commands used to create the image. You can use '''&amp;lt;nowiki&amp;gt;&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;...&amp;lt;/source&amp;gt;&amp;lt;/nowiki&amp;gt;''' within this area to prettify your PyMOL commands&lt;br /&gt;
* '''seeAlso''' can include quick links to commands used&lt;br /&gt;
* the order of these variables does not matter&lt;br /&gt;
* images are resized to 200px mainly to make columns line up better&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
{{GalleryImageTest&lt;br /&gt;
&amp;lt;!-- This creates a row entry for the Gallery section --&amp;gt;&lt;br /&gt;
|&amp;lt;!-- Image --&amp;gt;&lt;br /&gt;
image=BW_raytraced_complex_image.jpg&lt;br /&gt;
|&amp;lt;!-- Title above image --&amp;gt;&lt;br /&gt;
title=This is the title&lt;br /&gt;
|&amp;lt;!-- 'Description' section (shows up below the image)--&amp;gt;&lt;br /&gt;
description=This is the description.&lt;br /&gt;
|&amp;lt;!-- 'What to Type' section --&amp;gt;&lt;br /&gt;
cmdString=&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
many pymol commands&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
You can put other text also.&amp;lt;br&amp;gt;&lt;br /&gt;
'''Bold text'''&amp;lt;br&amp;gt;&lt;br /&gt;
''Italic text''&amp;lt;br&amp;gt;&lt;br /&gt;
* even bulleted lists!&lt;br /&gt;
|&amp;lt;!-- 'See Also' section (shows up below the image)--&amp;gt;&lt;br /&gt;
seeAlso=&lt;br /&gt;
* [[Main_Page|PyMOLWiki]]&lt;br /&gt;
* [[template:GalleryImage|GalleryImage template]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Template==&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{| align=left; width=100%;&lt;br /&gt;
|- style=&amp;quot;font-weight:bold; color:#333; font-size:125%; font-style:italic; text-align:center;&amp;quot; &lt;br /&gt;
| {{{title}}} || What To Type&lt;br /&gt;
|- style=&amp;quot;font-weight:medium; background:#ddd; color: #333; font-style: normal; vertical-align:top;&amp;quot;&lt;br /&gt;
| width=25%; style=&amp;quot;background:white; vertical-align:top;&amp;quot;|&lt;br /&gt;
&amp;lt;table BORDER=&amp;quot;0&amp;quot; CELLPADDING=&amp;quot;0&amp;quot; CELLSPACING=&amp;quot;0&amp;quot; width=100%;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;[[Image:{{{image}}}|200px]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Description&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;{{{description}}}&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;See Also&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;left&amp;quot;&amp;gt;&lt;br /&gt;
{{{seeAlso}}}&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
|width=75%;|&lt;br /&gt;
{{{cmdString}}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ojganesh</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=628</id>
		<title>Template:GalleryImageTest</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=628"/>
		<updated>2008-08-26T15:04:32Z</updated>

		<summary type="html">&lt;p&gt;Ojganesh: /* Template */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
==GalleryImageTest Template==&lt;br /&gt;
'''Usage:'''&lt;br /&gt;
&amp;lt;source lang=css&amp;gt;&lt;br /&gt;
{{GalleryImageTest&lt;br /&gt;
| title=theTitle&lt;br /&gt;
| image=[[ImageName.png]]&lt;br /&gt;
| description=theDescription&lt;br /&gt;
| seeAlso=seeAlso&lt;br /&gt;
| cmdString=commandString&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
* '''ImageName.png''' is the name of the image (the image should already be in the wiki)&lt;br /&gt;
* '''theTitle''' is the title you would like at the top of your image&lt;br /&gt;
* '''theDescription''' is the description you would like added to your image&lt;br /&gt;
* '''cmdString''' are the commands used to create the image. You can use '''&amp;lt;nowiki&amp;gt;&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;...&amp;lt;/source&amp;gt;&amp;lt;/nowiki&amp;gt;''' within this area to prettify your PyMOL commands&lt;br /&gt;
* '''seeAlso''' can include quick links to commands used&lt;br /&gt;
* the order of these variables does not matter&lt;br /&gt;
* images are resized to 200px mainly to make columns line up better&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
{{GalleryImageTest&lt;br /&gt;
&amp;lt;!-- This creates a row entry for the Gallery section --&amp;gt;&lt;br /&gt;
|&amp;lt;!-- Image --&amp;gt;&lt;br /&gt;
image=BW_raytraced_complex_image.jpg&lt;br /&gt;
|&amp;lt;!-- Title above image --&amp;gt;&lt;br /&gt;
title=This is the title&lt;br /&gt;
|&amp;lt;!-- 'Description' section (shows up below the image)--&amp;gt;&lt;br /&gt;
description=This is the description.&lt;br /&gt;
|&amp;lt;!-- 'What to Type' section --&amp;gt;&lt;br /&gt;
cmdString=&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
many pymol commands&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
You can put other text also.&amp;lt;br&amp;gt;&lt;br /&gt;
'''Bold text'''&amp;lt;br&amp;gt;&lt;br /&gt;
''Italic text''&amp;lt;br&amp;gt;&lt;br /&gt;
* even bulleted lists!&lt;br /&gt;
|&amp;lt;!-- 'See Also' section (shows up below the image)--&amp;gt;&lt;br /&gt;
seeAlso=&lt;br /&gt;
* [[Main_Page|PyMOLWiki]]&lt;br /&gt;
* [[template:GalleryImage|GalleryImage template]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Template==&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{| align=left; width=100%;&lt;br /&gt;
|- style=&amp;quot;font-weight:bold; color:#333; font-size:125%; font-style:italic; text-align:center;&amp;quot; &lt;br /&gt;
| {{{title}}} || What To Type&lt;br /&gt;
|- style=&amp;quot;font-weight:medium; background:#ddd; color: #333; font-style: normal; vertical-align:top;&amp;quot;&lt;br /&gt;
| width=25%; style=&amp;quot;background:white; vertical-align:top;&amp;quot;|&lt;br /&gt;
&amp;lt;table BORDER=&amp;quot;0&amp;quot; CELLPADDING=&amp;quot;0&amp;quot; CELLSPACING=&amp;quot;0&amp;quot; width=100%;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;[[Image:{{{image}}}|200px]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Description&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;{{{description}}}&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;See Also&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;left&amp;quot;&amp;gt;&lt;br /&gt;
{{{seeAlso}}}&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
|width=75%;|&lt;br /&gt;
{{{cmdString}}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ojganesh</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=627</id>
		<title>Template:GalleryImageTest</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=627"/>
		<updated>2008-08-26T15:03:26Z</updated>

		<summary type="html">&lt;p&gt;Ojganesh: /* GalleryImageTest Template */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
==GalleryImageTest Template==&lt;br /&gt;
'''Usage:'''&lt;br /&gt;
&amp;lt;source lang=css&amp;gt;&lt;br /&gt;
{{GalleryImageTest&lt;br /&gt;
| title=theTitle&lt;br /&gt;
| image=[[ImageName.png]]&lt;br /&gt;
| description=theDescription&lt;br /&gt;
| seeAlso=seeAlso&lt;br /&gt;
| cmdString=commandString&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
* '''ImageName.png''' is the name of the image (the image should already be in the wiki)&lt;br /&gt;
* '''theTitle''' is the title you would like at the top of your image&lt;br /&gt;
* '''theDescription''' is the description you would like added to your image&lt;br /&gt;
* '''cmdString''' are the commands used to create the image. You can use '''&amp;lt;nowiki&amp;gt;&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;...&amp;lt;/source&amp;gt;&amp;lt;/nowiki&amp;gt;''' within this area to prettify your PyMOL commands&lt;br /&gt;
* '''seeAlso''' can include quick links to commands used&lt;br /&gt;
* the order of these variables does not matter&lt;br /&gt;
* images are resized to 200px mainly to make columns line up better&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
{{GalleryImageTest&lt;br /&gt;
&amp;lt;!-- This creates a row entry for the Gallery section --&amp;gt;&lt;br /&gt;
|&amp;lt;!-- Image --&amp;gt;&lt;br /&gt;
image=BW_raytraced_complex_image.jpg&lt;br /&gt;
|&amp;lt;!-- Title above image --&amp;gt;&lt;br /&gt;
title=This is the title&lt;br /&gt;
|&amp;lt;!-- 'Description' section (shows up below the image)--&amp;gt;&lt;br /&gt;
description=This is the description.&lt;br /&gt;
|&amp;lt;!-- 'What to Type' section --&amp;gt;&lt;br /&gt;
cmdString=&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
many pymol commands&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
You can put other text also.&amp;lt;br&amp;gt;&lt;br /&gt;
'''Bold text'''&amp;lt;br&amp;gt;&lt;br /&gt;
''Italic text''&amp;lt;br&amp;gt;&lt;br /&gt;
* even bulleted lists!&lt;br /&gt;
|&amp;lt;!-- 'See Also' section (shows up below the image)--&amp;gt;&lt;br /&gt;
seeAlso=&lt;br /&gt;
* [[Main_Page|PyMOLWiki]]&lt;br /&gt;
* [[template:GalleryImage|GalleryImage template]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Template==&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{| align=left; width=100%;&lt;br /&gt;
|- style=&amp;quot;font-weight:bold; color:#333; font-size:125%; font-style:italic; text-align:center;&amp;quot; &lt;br /&gt;
| {{{title}}} || What To Type&lt;br /&gt;
|- style=&amp;quot;font-weight:medium; background:#ddd; color: #333; font-style: normal; vertical-align:top;&amp;quot;&lt;br /&gt;
| width=25%; style=&amp;quot;background:white; vertical-align:top;&amp;quot;|&lt;br /&gt;
&amp;lt;table BORDER=&amp;quot;0&amp;quot; CELLPADDING=&amp;quot;0&amp;quot; CELLSPACING=&amp;quot;0&amp;quot; width=100%;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;[[Image:{{{image}}}|200px]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Description&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;{{{description}}}&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;See Also&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;left&amp;quot;&amp;gt;&lt;br /&gt;
{{{seeAlso}}}&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
|width=75%;|&lt;br /&gt;
{{{cmdString}}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ojganesh</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=626</id>
		<title>Template:GalleryImageTest</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=626"/>
		<updated>2008-08-26T15:01:21Z</updated>

		<summary type="html">&lt;p&gt;Ojganesh: /* GalleryImageTest Template */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
==GalleryImageTest Template==&lt;br /&gt;
'''Usage:'''&lt;br /&gt;
&amp;lt;source lang=css&amp;gt;&lt;br /&gt;
{{GalleryImageTest&lt;br /&gt;
| title=theTitle&lt;br /&gt;
| image=[[ImageName.png]]&lt;br /&gt;
| description=theDescription&lt;br /&gt;
| seeAlso=seeAlso&lt;br /&gt;
| cmdString=commandString&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
* '''ImageName.png''' is the name of the image (the image should already be in the wiki)&lt;br /&gt;
* '''theTitle''' is the title you would like at the top of your image&lt;br /&gt;
* '''theDescription''' is the description you would like added to your image&lt;br /&gt;
* '''cmdString''' are the commands used to create the image. You can use '''&amp;lt;nowiki&amp;gt;&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;...&amp;lt;/source&amp;gt;&amp;lt;/nowiki&amp;gt;''' within this area to prettify your PyMOL commands.&lt;br /&gt;
* '''seeAlso''' can include quick links to commands used.&lt;br /&gt;
* the order of these variables does not matter.&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
{{GalleryImageTest&lt;br /&gt;
&amp;lt;!-- This creates a row entry for the Gallery section --&amp;gt;&lt;br /&gt;
|&amp;lt;!-- Image --&amp;gt;&lt;br /&gt;
image=BW_raytraced_complex_image.jpg&lt;br /&gt;
|&amp;lt;!-- Title above image --&amp;gt;&lt;br /&gt;
title=This is the title&lt;br /&gt;
|&amp;lt;!-- 'Description' section (shows up below the image)--&amp;gt;&lt;br /&gt;
description=This is the description.&lt;br /&gt;
|&amp;lt;!-- 'What to Type' section --&amp;gt;&lt;br /&gt;
cmdString=&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
many pymol commands&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
You can put other text also.&amp;lt;br&amp;gt;&lt;br /&gt;
'''Bold text'''&amp;lt;br&amp;gt;&lt;br /&gt;
''Italic text''&amp;lt;br&amp;gt;&lt;br /&gt;
* even bulleted lists!&lt;br /&gt;
|&amp;lt;!-- 'See Also' section (shows up below the image)--&amp;gt;&lt;br /&gt;
seeAlso=&lt;br /&gt;
* [[Main_Page|PyMOLWiki]]&lt;br /&gt;
* [[template:GalleryImage|GalleryImage template]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Template==&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{| align=left; width=100%;&lt;br /&gt;
|- style=&amp;quot;font-weight:bold; color:#333; font-size:125%; font-style:italic; text-align:center;&amp;quot; &lt;br /&gt;
| {{{title}}} || What To Type&lt;br /&gt;
|- style=&amp;quot;font-weight:medium; background:#ddd; color: #333; font-style: normal; vertical-align:top;&amp;quot;&lt;br /&gt;
| width=25%; style=&amp;quot;background:white; vertical-align:top;&amp;quot;|&lt;br /&gt;
&amp;lt;table BORDER=&amp;quot;0&amp;quot; CELLPADDING=&amp;quot;0&amp;quot; CELLSPACING=&amp;quot;0&amp;quot; width=100%;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;[[Image:{{{image}}}|200px]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Description&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;{{{description}}}&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;See Also&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;left&amp;quot;&amp;gt;&lt;br /&gt;
{{{seeAlso}}}&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
|width=75%;|&lt;br /&gt;
{{{cmdString}}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ojganesh</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=625</id>
		<title>Template:GalleryImageTest</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=625"/>
		<updated>2008-08-26T14:55:39Z</updated>

		<summary type="html">&lt;p&gt;Ojganesh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
==GalleryImageTest Template==&lt;br /&gt;
'''Usage:'''&lt;br /&gt;
This is the current incarnation of the GalleryImage template.&lt;br /&gt;
This is only a test&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;{{GalleryImageTest&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| title=theTitle&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| image=[[ImageName.png]]&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| description=theDescription&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| seeAlso=seeAlso &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| cmdString=commandString &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
* '''ImageName.png''' is the name of the image&lt;br /&gt;
* '''theTitle''' is the title you would like at the top of your image&lt;br /&gt;
* '''theDescription''' is the description you would like added to your image&lt;br /&gt;
* '''cmdString''' are the commands used to create the image. You can use '''&amp;lt;nowiki&amp;gt;&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;...&amp;lt;/source&amp;gt;&amp;lt;/nowiki&amp;gt;''' within this area to prettify your PyMOL commands.&lt;br /&gt;
* '''seeAlso''' can include quick links to commands used.&lt;br /&gt;
* the order of these variables does not matter.&lt;br /&gt;
==Example==&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
{{GalleryImageTest&lt;br /&gt;
&amp;lt;!-- This creates a row entry for the Gallery section --&amp;gt;&lt;br /&gt;
|&amp;lt;!-- Image --&amp;gt;&lt;br /&gt;
image=BW_raytraced_complex_image.jpg&lt;br /&gt;
|&amp;lt;!-- Title above image --&amp;gt;&lt;br /&gt;
title=This is the title&lt;br /&gt;
|&amp;lt;!-- 'Description' section (shows up below the image)--&amp;gt;&lt;br /&gt;
description=This is the description.&lt;br /&gt;
|&amp;lt;!-- 'What to Type' section --&amp;gt;&lt;br /&gt;
cmdString=&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
many pymol commands&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
You can put other text also.&amp;lt;br&amp;gt;&lt;br /&gt;
'''Bold text'''&amp;lt;br&amp;gt;&lt;br /&gt;
''Italic text''&amp;lt;br&amp;gt;&lt;br /&gt;
* even bulleted lists!&lt;br /&gt;
|&amp;lt;!-- 'See Also' section (shows up below the image)--&amp;gt;&lt;br /&gt;
seeAlso=&lt;br /&gt;
* [[Main_Page|PyMOLWiki]]&lt;br /&gt;
* [[template:GalleryImage|GalleryImage template]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Template==&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{| align=left; width=100%;&lt;br /&gt;
|- style=&amp;quot;font-weight:bold; color:#333; font-size:125%; font-style:italic; text-align:center;&amp;quot; &lt;br /&gt;
| {{{title}}} || What To Type&lt;br /&gt;
|- style=&amp;quot;font-weight:medium; background:#ddd; color: #333; font-style: normal; vertical-align:top;&amp;quot;&lt;br /&gt;
| width=25%; style=&amp;quot;background:white; vertical-align:top;&amp;quot;|&lt;br /&gt;
&amp;lt;table BORDER=&amp;quot;0&amp;quot; CELLPADDING=&amp;quot;0&amp;quot; CELLSPACING=&amp;quot;0&amp;quot; width=100%;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;[[Image:{{{image}}}|200px]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Description&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;{{{description}}}&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;See Also&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;left&amp;quot;&amp;gt;&lt;br /&gt;
{{{seeAlso}}}&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
|width=75%;|&lt;br /&gt;
{{{cmdString}}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ojganesh</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=624</id>
		<title>Template:GalleryImageTest</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=624"/>
		<updated>2008-08-26T14:53:59Z</updated>

		<summary type="html">&lt;p&gt;Ojganesh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
==GalleryImageTest Template==&lt;br /&gt;
'''Usage:'''&lt;br /&gt;
This is the current incarnation of the GalleryImage template.&lt;br /&gt;
This is only a test&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;{{GalleryImageTest&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| image=[[ImageName.png]]&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| title=theTitle&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| description=theDescription&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| cmdString=commandString &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| seeAlso=seeAlso &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
* '''ImageName.png''' is the name of the image&lt;br /&gt;
* '''theTitle''' is the title you would like at the top of your image&lt;br /&gt;
* '''theDescription''' is the description you would like added to your image&lt;br /&gt;
* '''cmdString''' are the commands used to create the image. You can use '''&amp;lt;nowiki&amp;gt;&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;...&amp;lt;/source&amp;gt;&amp;lt;/nowiki&amp;gt;''' within this area to prettify your PyMOL commands.&lt;br /&gt;
* seeAlso can include quick links to commands used.&lt;br /&gt;
==Example==&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
{{GalleryImageTest&lt;br /&gt;
&amp;lt;!-- This creates a row entry for the Gallery section --&amp;gt;&lt;br /&gt;
|&amp;lt;!-- Image --&amp;gt;&lt;br /&gt;
image=BW_raytraced_complex_image.jpg&lt;br /&gt;
|&amp;lt;!-- Title above image --&amp;gt;&lt;br /&gt;
title=This is the title&lt;br /&gt;
|&amp;lt;!-- 'Description' section (shows up below the image)--&amp;gt;&lt;br /&gt;
description=This is the description.&lt;br /&gt;
|&amp;lt;!-- 'See Also' section (shows up below the image)--&amp;gt;&lt;br /&gt;
seeAlso=&lt;br /&gt;
* [[Main_Page|PyMOLWiki]]&lt;br /&gt;
* [[template:GalleryImage|GalleryImage template]]&lt;br /&gt;
|&amp;lt;!-- 'What to Type' section --&amp;gt;&lt;br /&gt;
cmdString=&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
many pymol commands&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
You can put other text also.&lt;br /&gt;
'''Bold text'''&amp;lt;br&amp;gt;&lt;br /&gt;
''Italic text''&amp;lt;br&amp;gt;&lt;br /&gt;
* even bulleted lists!&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Template==&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{| align=left; width=100%;&lt;br /&gt;
|- style=&amp;quot;font-weight:bold; color:#333; font-size:125%; font-style:italic; text-align:center;&amp;quot; &lt;br /&gt;
| {{{title}}} || What To Type&lt;br /&gt;
|- style=&amp;quot;font-weight:medium; background:#ddd; color: #333; font-style: normal; vertical-align:top;&amp;quot;&lt;br /&gt;
| width=25%; style=&amp;quot;background:white; vertical-align:top;&amp;quot;|&lt;br /&gt;
&amp;lt;table BORDER=&amp;quot;0&amp;quot; CELLPADDING=&amp;quot;0&amp;quot; CELLSPACING=&amp;quot;0&amp;quot; width=100%;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;[[Image:{{{image}}}|200px]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Description&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;{{{description}}}&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;See Also&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;left&amp;quot;&amp;gt;&lt;br /&gt;
{{{seeAlso}}}&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
|width=75%;|&lt;br /&gt;
{{{cmdString}}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ojganesh</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=623</id>
		<title>Template:GalleryImageTest</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=623"/>
		<updated>2008-08-26T14:50:15Z</updated>

		<summary type="html">&lt;p&gt;Ojganesh: /* Example */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
==GalleryImageTest Template==&lt;br /&gt;
'''Usage:'''&lt;br /&gt;
This is the current incarnation of the GalleryImage template.&lt;br /&gt;
This is only a test&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;{{GalleryImageTest&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| image=[[ImageName.png]]&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| title=theTitle&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| description=theDescription&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| cmdString=commandString &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| seeAlso=seeAlso &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
* ImageName.png is the name of the image&lt;br /&gt;
* theTitle is the title you would like at the top of your image&lt;br /&gt;
* theDescription is the description you would like added to your image&lt;br /&gt;
* cmdString are the commands used to create the image. You can use '''&amp;lt;nowiki&amp;gt;&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;...&amp;lt;/source&amp;gt;&amp;lt;/nowiki&amp;gt;''' within this area to prettify your PyMOL commands.&lt;br /&gt;
* seeAlso can include quick links to commands used.&lt;br /&gt;
==Example==&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
{{GalleryImageTest&lt;br /&gt;
&amp;lt;!-- This creates a row entry for the Gallery section --&amp;gt;&lt;br /&gt;
|&amp;lt;!-- Image --&amp;gt;&lt;br /&gt;
image=BW_raytraced_complex_image.jpg&lt;br /&gt;
|&amp;lt;!-- Title above image --&amp;gt;&lt;br /&gt;
title=This is the title&lt;br /&gt;
|&amp;lt;!-- 'Description' section (shows up below the image)--&amp;gt;&lt;br /&gt;
description=This is the description.&lt;br /&gt;
|&amp;lt;!-- 'What to Type' section --&amp;gt;&lt;br /&gt;
cmdString=&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
many pymol commands&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
You can put other text also.&lt;br /&gt;
'''Bold text'''&lt;br /&gt;
''Italic text''&lt;br /&gt;
* bulleted lists&lt;br /&gt;
etc...&lt;br /&gt;
|&amp;lt;!-- 'See Also' section --&amp;gt;&lt;br /&gt;
seeAlso=&lt;br /&gt;
* [[Main_Page|PyMOLWiki]]&lt;br /&gt;
* [[template:GalleryImage|GalleryImage template]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Template==&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{| align=left; width=100%;&lt;br /&gt;
|- style=&amp;quot;font-weight:bold; color:#333; font-size:125%; font-style:italic; text-align:center;&amp;quot; &lt;br /&gt;
| {{{title}}} || What To Type&lt;br /&gt;
|- style=&amp;quot;font-weight:medium; background:#ddd; color: #333; font-style: normal; vertical-align:top;&amp;quot;&lt;br /&gt;
| width=25%; style=&amp;quot;background:white; vertical-align:top;&amp;quot;|&lt;br /&gt;
&amp;lt;table BORDER=&amp;quot;0&amp;quot; CELLPADDING=&amp;quot;0&amp;quot; CELLSPACING=&amp;quot;0&amp;quot; width=100%;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;[[Image:{{{image}}}|200px]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Description&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;{{{description}}}&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;See Also&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;left&amp;quot;&amp;gt;&lt;br /&gt;
{{{seeAlso}}}&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
|width=75%;|&lt;br /&gt;
{{{cmdString}}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ojganesh</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=622</id>
		<title>Template:GalleryImageTest</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=622"/>
		<updated>2008-08-26T14:48:24Z</updated>

		<summary type="html">&lt;p&gt;Ojganesh: /* Template */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
==GalleryImageTest Template==&lt;br /&gt;
'''Usage:'''&lt;br /&gt;
This is the current incarnation of the GalleryImage template.&lt;br /&gt;
This is only a test&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;{{GalleryImageTest&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| image=[[ImageName.png]]&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| title=theTitle&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| description=theDescription&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| cmdString=commandString &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| seeAlso=seeAlso &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
* ImageName.png is the name of the image&lt;br /&gt;
* theTitle is the title you would like at the top of your image&lt;br /&gt;
* theDescription is the description you would like added to your image&lt;br /&gt;
* cmdString are the commands used to create the image. You can use '''&amp;lt;nowiki&amp;gt;&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;...&amp;lt;/source&amp;gt;&amp;lt;/nowiki&amp;gt;''' within this area to prettify your PyMOL commands.&lt;br /&gt;
* seeAlso can include quick links to commands used.&lt;br /&gt;
==Example==&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
{{GalleryImageTest&lt;br /&gt;
&amp;lt;!-- This creates a row entry for the Gallery section --&amp;gt;&lt;br /&gt;
|&amp;lt;!-- Image --&amp;gt;&lt;br /&gt;
image=BW_raytraced_complex_image.jpg&lt;br /&gt;
|&amp;lt;!-- Title above image --&amp;gt;&lt;br /&gt;
title=This is the title&lt;br /&gt;
|&amp;lt;!-- 'Description' section (shows up below the image)--&amp;gt;&lt;br /&gt;
description=This is the description.&lt;br /&gt;
|&amp;lt;!-- 'What to Type' section --&amp;gt;&lt;br /&gt;
cmdString=&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
many pymol commands&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
You can put other text also.&lt;br /&gt;
* even bulleted lists&lt;br /&gt;
|&amp;lt;!-- 'See Also' section --&amp;gt;&lt;br /&gt;
seeAlso=&lt;br /&gt;
* [[template:GalleryImage|GalleryImage template]]&lt;br /&gt;
* [[template:GalleryImage|GalleryImage template]]&lt;br /&gt;
}}&lt;br /&gt;
==Template==&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{| align=left; width=100%;&lt;br /&gt;
|- style=&amp;quot;font-weight:bold; color:#333; font-size:125%; font-style:italic; text-align:center;&amp;quot; &lt;br /&gt;
| {{{title}}} || What To Type&lt;br /&gt;
|- style=&amp;quot;font-weight:medium; background:#ddd; color: #333; font-style: normal; vertical-align:top;&amp;quot;&lt;br /&gt;
| width=25%; style=&amp;quot;background:white; vertical-align:top;&amp;quot;|&lt;br /&gt;
&amp;lt;table BORDER=&amp;quot;0&amp;quot; CELLPADDING=&amp;quot;0&amp;quot; CELLSPACING=&amp;quot;0&amp;quot; width=100%;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;[[Image:{{{image}}}|200px]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Description&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;{{{description}}}&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;See Also&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;left&amp;quot;&amp;gt;&lt;br /&gt;
{{{seeAlso}}}&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
|width=75%;|&lt;br /&gt;
{{{cmdString}}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ojganesh</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=621</id>
		<title>Template:GalleryImageTest</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=621"/>
		<updated>2008-08-26T14:47:33Z</updated>

		<summary type="html">&lt;p&gt;Ojganesh: /* Template */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
==GalleryImageTest Template==&lt;br /&gt;
'''Usage:'''&lt;br /&gt;
This is the current incarnation of the GalleryImage template.&lt;br /&gt;
This is only a test&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;{{GalleryImageTest&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| image=[[ImageName.png]]&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| title=theTitle&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| description=theDescription&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| cmdString=commandString &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| seeAlso=seeAlso &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
* ImageName.png is the name of the image&lt;br /&gt;
* theTitle is the title you would like at the top of your image&lt;br /&gt;
* theDescription is the description you would like added to your image&lt;br /&gt;
* cmdString are the commands used to create the image. You can use '''&amp;lt;nowiki&amp;gt;&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;...&amp;lt;/source&amp;gt;&amp;lt;/nowiki&amp;gt;''' within this area to prettify your PyMOL commands.&lt;br /&gt;
* seeAlso can include quick links to commands used.&lt;br /&gt;
==Example==&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
{{GalleryImageTest&lt;br /&gt;
&amp;lt;!-- This creates a row entry for the Gallery section --&amp;gt;&lt;br /&gt;
|&amp;lt;!-- Image --&amp;gt;&lt;br /&gt;
image=BW_raytraced_complex_image.jpg&lt;br /&gt;
|&amp;lt;!-- Title above image --&amp;gt;&lt;br /&gt;
title=This is the title&lt;br /&gt;
|&amp;lt;!-- 'Description' section (shows up below the image)--&amp;gt;&lt;br /&gt;
description=This is the description.&lt;br /&gt;
|&amp;lt;!-- 'What to Type' section --&amp;gt;&lt;br /&gt;
cmdString=&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
many pymol commands&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
You can put other text also.&lt;br /&gt;
* even bulleted lists&lt;br /&gt;
|&amp;lt;!-- 'See Also' section --&amp;gt;&lt;br /&gt;
seeAlso=&lt;br /&gt;
* [[template:GalleryImage|GalleryImage template]]&lt;br /&gt;
* [[template:GalleryImage|GalleryImage template]]&lt;br /&gt;
}}&lt;br /&gt;
==Template==&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{| align=left; width=100%;&lt;br /&gt;
|- style=&amp;quot;font-weight:bold; color:#333; font-size:125%; font-style:italic; text-align:center;&amp;quot; &lt;br /&gt;
|width=25%;| {{{title}}} || What To Type&lt;br /&gt;
|- style=&amp;quot;font-weight:medium; background:#ddd; color: #333; font-style: normal; vertical-align:top;&amp;quot;&lt;br /&gt;
| width=25%; style=&amp;quot;background:white; vertical-align:top;&amp;quot;|&lt;br /&gt;
&amp;lt;table BORDER=&amp;quot;0&amp;quot; CELLPADDING=&amp;quot;0&amp;quot; CELLSPACING=&amp;quot;0&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;[[Image:{{{image}}}|200px]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Description&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;{{{description}}}&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;See Also&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;left&amp;quot;&amp;gt;&lt;br /&gt;
{{{seeAlso}}}&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
|width=75%;|&lt;br /&gt;
{{{cmdString}}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ojganesh</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=620</id>
		<title>Template:GalleryImageTest</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=620"/>
		<updated>2008-08-26T14:46:48Z</updated>

		<summary type="html">&lt;p&gt;Ojganesh: /* Template */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
==GalleryImageTest Template==&lt;br /&gt;
'''Usage:'''&lt;br /&gt;
This is the current incarnation of the GalleryImage template.&lt;br /&gt;
This is only a test&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;{{GalleryImageTest&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| image=[[ImageName.png]]&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| title=theTitle&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| description=theDescription&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| cmdString=commandString &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| seeAlso=seeAlso &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
* ImageName.png is the name of the image&lt;br /&gt;
* theTitle is the title you would like at the top of your image&lt;br /&gt;
* theDescription is the description you would like added to your image&lt;br /&gt;
* cmdString are the commands used to create the image. You can use '''&amp;lt;nowiki&amp;gt;&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;...&amp;lt;/source&amp;gt;&amp;lt;/nowiki&amp;gt;''' within this area to prettify your PyMOL commands.&lt;br /&gt;
* seeAlso can include quick links to commands used.&lt;br /&gt;
==Example==&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
{{GalleryImageTest&lt;br /&gt;
&amp;lt;!-- This creates a row entry for the Gallery section --&amp;gt;&lt;br /&gt;
|&amp;lt;!-- Image --&amp;gt;&lt;br /&gt;
image=BW_raytraced_complex_image.jpg&lt;br /&gt;
|&amp;lt;!-- Title above image --&amp;gt;&lt;br /&gt;
title=This is the title&lt;br /&gt;
|&amp;lt;!-- 'Description' section (shows up below the image)--&amp;gt;&lt;br /&gt;
description=This is the description.&lt;br /&gt;
|&amp;lt;!-- 'What to Type' section --&amp;gt;&lt;br /&gt;
cmdString=&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
many pymol commands&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
You can put other text also.&lt;br /&gt;
* even bulleted lists&lt;br /&gt;
|&amp;lt;!-- 'See Also' section --&amp;gt;&lt;br /&gt;
seeAlso=&lt;br /&gt;
* [[template:GalleryImage|GalleryImage template]]&lt;br /&gt;
* [[template:GalleryImage|GalleryImage template]]&lt;br /&gt;
}}&lt;br /&gt;
==Template==&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{| align=left; width=100%;&lt;br /&gt;
|- style=&amp;quot;font-weight:bold; color:#333; font-size:125%; font-style:italic; text-align:center;&amp;quot; &lt;br /&gt;
| {{{title}}} || What To Type&lt;br /&gt;
|- style=&amp;quot;font-weight:medium; background:#ddd; color: #333; font-style: normal; vertical-align:top;&amp;quot;&lt;br /&gt;
| width=100%; style=&amp;quot;background:white; vertical-align:top;&amp;quot;|&lt;br /&gt;
&amp;lt;table BORDER=&amp;quot;0&amp;quot; CELLPADDING=&amp;quot;0&amp;quot; CELLSPACING=&amp;quot;0&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;[[Image:{{{image}}}|200px]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Description&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;{{{description}}}&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;See Also&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;left&amp;quot;&amp;gt;&lt;br /&gt;
{{{seeAlso}}}&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
|width=75%;|&lt;br /&gt;
{{{cmdString}}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ojganesh</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=619</id>
		<title>Template:GalleryImageTest</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=619"/>
		<updated>2008-08-26T14:46:27Z</updated>

		<summary type="html">&lt;p&gt;Ojganesh: /* Template */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
==GalleryImageTest Template==&lt;br /&gt;
'''Usage:'''&lt;br /&gt;
This is the current incarnation of the GalleryImage template.&lt;br /&gt;
This is only a test&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;{{GalleryImageTest&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| image=[[ImageName.png]]&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| title=theTitle&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| description=theDescription&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| cmdString=commandString &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| seeAlso=seeAlso &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
* ImageName.png is the name of the image&lt;br /&gt;
* theTitle is the title you would like at the top of your image&lt;br /&gt;
* theDescription is the description you would like added to your image&lt;br /&gt;
* cmdString are the commands used to create the image. You can use '''&amp;lt;nowiki&amp;gt;&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;...&amp;lt;/source&amp;gt;&amp;lt;/nowiki&amp;gt;''' within this area to prettify your PyMOL commands.&lt;br /&gt;
* seeAlso can include quick links to commands used.&lt;br /&gt;
==Example==&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
{{GalleryImageTest&lt;br /&gt;
&amp;lt;!-- This creates a row entry for the Gallery section --&amp;gt;&lt;br /&gt;
|&amp;lt;!-- Image --&amp;gt;&lt;br /&gt;
image=BW_raytraced_complex_image.jpg&lt;br /&gt;
|&amp;lt;!-- Title above image --&amp;gt;&lt;br /&gt;
title=This is the title&lt;br /&gt;
|&amp;lt;!-- 'Description' section (shows up below the image)--&amp;gt;&lt;br /&gt;
description=This is the description.&lt;br /&gt;
|&amp;lt;!-- 'What to Type' section --&amp;gt;&lt;br /&gt;
cmdString=&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
many pymol commands&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
You can put other text also.&lt;br /&gt;
* even bulleted lists&lt;br /&gt;
|&amp;lt;!-- 'See Also' section --&amp;gt;&lt;br /&gt;
seeAlso=&lt;br /&gt;
* [[template:GalleryImage|GalleryImage template]]&lt;br /&gt;
* [[template:GalleryImage|GalleryImage template]]&lt;br /&gt;
}}&lt;br /&gt;
==Template==&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{| align=left; width=100%;&lt;br /&gt;
|- style=&amp;quot;font-weight:bold; color:#333; font-size:125%; font-style:italic; text-align:center;&amp;quot; &lt;br /&gt;
| {{{title}}} || What To Type&lt;br /&gt;
|- style=&amp;quot;font-weight:medium; background:#ddd; color: #333; font-style: normal; vertical-align:top;&amp;quot;&lt;br /&gt;
| width=25%; style=&amp;quot;background:white; vertical-align:top;&amp;quot;|&lt;br /&gt;
&amp;lt;table BORDER=&amp;quot;0&amp;quot; CELLPADDING=&amp;quot;0&amp;quot; CELLSPACING=&amp;quot;0&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;[[Image:{{{image}}}|200px]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Description&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;{{{description}}}&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;See Also&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;left&amp;quot;&amp;gt;&lt;br /&gt;
{{{seeAlso}}}&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
|width=75%;|&lt;br /&gt;
{{{cmdString}}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ojganesh</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=618</id>
		<title>Template:GalleryImageTest</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=618"/>
		<updated>2008-08-26T14:45:54Z</updated>

		<summary type="html">&lt;p&gt;Ojganesh: /* Template */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
==GalleryImageTest Template==&lt;br /&gt;
'''Usage:'''&lt;br /&gt;
This is the current incarnation of the GalleryImage template.&lt;br /&gt;
This is only a test&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;{{GalleryImageTest&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| image=[[ImageName.png]]&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| title=theTitle&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| description=theDescription&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| cmdString=commandString &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| seeAlso=seeAlso &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
* ImageName.png is the name of the image&lt;br /&gt;
* theTitle is the title you would like at the top of your image&lt;br /&gt;
* theDescription is the description you would like added to your image&lt;br /&gt;
* cmdString are the commands used to create the image. You can use '''&amp;lt;nowiki&amp;gt;&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;...&amp;lt;/source&amp;gt;&amp;lt;/nowiki&amp;gt;''' within this area to prettify your PyMOL commands.&lt;br /&gt;
* seeAlso can include quick links to commands used.&lt;br /&gt;
==Example==&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
{{GalleryImageTest&lt;br /&gt;
&amp;lt;!-- This creates a row entry for the Gallery section --&amp;gt;&lt;br /&gt;
|&amp;lt;!-- Image --&amp;gt;&lt;br /&gt;
image=BW_raytraced_complex_image.jpg&lt;br /&gt;
|&amp;lt;!-- Title above image --&amp;gt;&lt;br /&gt;
title=This is the title&lt;br /&gt;
|&amp;lt;!-- 'Description' section (shows up below the image)--&amp;gt;&lt;br /&gt;
description=This is the description.&lt;br /&gt;
|&amp;lt;!-- 'What to Type' section --&amp;gt;&lt;br /&gt;
cmdString=&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
many pymol commands&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
You can put other text also.&lt;br /&gt;
* even bulleted lists&lt;br /&gt;
|&amp;lt;!-- 'See Also' section --&amp;gt;&lt;br /&gt;
seeAlso=&lt;br /&gt;
* [[template:GalleryImage|GalleryImage template]]&lt;br /&gt;
* [[template:GalleryImage|GalleryImage template]]&lt;br /&gt;
}}&lt;br /&gt;
==Template==&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{| align=left; width=100%;&lt;br /&gt;
|- style=&amp;quot;font-weight:bold; color:#333; font-size:125%; font-style:italic; text-align:center;&amp;quot; &lt;br /&gt;
| {{{title}}} || What To Type&lt;br /&gt;
|- style=&amp;quot;font-weight:medium; background:#ddd; color: #333; font-style: normal; vertical-align:top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:white; vertical-align:top;&amp;quot;|&lt;br /&gt;
&amp;lt;table BORDER=&amp;quot;0&amp;quot; CELLPADDING=&amp;quot;0&amp;quot; CELLSPACING=&amp;quot;0&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;[[Image:{{{image}}}|200px]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Description&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;{{{description}}}&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;See Also&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;left&amp;quot;&amp;gt;&lt;br /&gt;
{{{seeAlso}}}&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
|width=75%;|&lt;br /&gt;
{{{cmdString}}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ojganesh</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=617</id>
		<title>Template:GalleryImageTest</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=617"/>
		<updated>2008-08-26T14:44:53Z</updated>

		<summary type="html">&lt;p&gt;Ojganesh: /* Template */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
==GalleryImageTest Template==&lt;br /&gt;
'''Usage:'''&lt;br /&gt;
This is the current incarnation of the GalleryImage template.&lt;br /&gt;
This is only a test&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;{{GalleryImageTest&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| image=[[ImageName.png]]&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| title=theTitle&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| description=theDescription&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| cmdString=commandString &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| seeAlso=seeAlso &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
* ImageName.png is the name of the image&lt;br /&gt;
* theTitle is the title you would like at the top of your image&lt;br /&gt;
* theDescription is the description you would like added to your image&lt;br /&gt;
* cmdString are the commands used to create the image. You can use '''&amp;lt;nowiki&amp;gt;&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;...&amp;lt;/source&amp;gt;&amp;lt;/nowiki&amp;gt;''' within this area to prettify your PyMOL commands.&lt;br /&gt;
* seeAlso can include quick links to commands used.&lt;br /&gt;
==Example==&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
{{GalleryImageTest&lt;br /&gt;
&amp;lt;!-- This creates a row entry for the Gallery section --&amp;gt;&lt;br /&gt;
|&amp;lt;!-- Image --&amp;gt;&lt;br /&gt;
image=BW_raytraced_complex_image.jpg&lt;br /&gt;
|&amp;lt;!-- Title above image --&amp;gt;&lt;br /&gt;
title=This is the title&lt;br /&gt;
|&amp;lt;!-- 'Description' section (shows up below the image)--&amp;gt;&lt;br /&gt;
description=This is the description.&lt;br /&gt;
|&amp;lt;!-- 'What to Type' section --&amp;gt;&lt;br /&gt;
cmdString=&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
many pymol commands&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
You can put other text also.&lt;br /&gt;
* even bulleted lists&lt;br /&gt;
|&amp;lt;!-- 'See Also' section --&amp;gt;&lt;br /&gt;
seeAlso=&lt;br /&gt;
* [[template:GalleryImage|GalleryImage template]]&lt;br /&gt;
* [[template:GalleryImage|GalleryImage template]]&lt;br /&gt;
}}&lt;br /&gt;
==Template==&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{| align=left; width=100%;&lt;br /&gt;
|- style=&amp;quot;font-weight:bold; color:#333; font-size:125%; font-style:italic; text-align:center;&amp;quot; &lt;br /&gt;
| {{{title}}} || What To Type&lt;br /&gt;
|- style=&amp;quot;font-weight:medium; background:#ddd; color: #333; font-style: normal; vertical-align:top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:white; width=25%; vertical-align:top;&amp;quot;|&lt;br /&gt;
&amp;lt;table BORDER=&amp;quot;0&amp;quot; CELLPADDING=&amp;quot;0&amp;quot; CELLSPACING=&amp;quot;0&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;[[Image:{{{image}}}|200px]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Description&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;{{{description}}}&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;See Also&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;left&amp;quot;&amp;gt;&lt;br /&gt;
{{{seeAlso}}}&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
|width=75%;|&lt;br /&gt;
{{{cmdString}}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ojganesh</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=616</id>
		<title>Template:GalleryImageTest</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=616"/>
		<updated>2008-08-26T14:44:19Z</updated>

		<summary type="html">&lt;p&gt;Ojganesh: /* Template */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
==GalleryImageTest Template==&lt;br /&gt;
'''Usage:'''&lt;br /&gt;
This is the current incarnation of the GalleryImage template.&lt;br /&gt;
This is only a test&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;{{GalleryImageTest&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| image=[[ImageName.png]]&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| title=theTitle&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| description=theDescription&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| cmdString=commandString &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| seeAlso=seeAlso &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
* ImageName.png is the name of the image&lt;br /&gt;
* theTitle is the title you would like at the top of your image&lt;br /&gt;
* theDescription is the description you would like added to your image&lt;br /&gt;
* cmdString are the commands used to create the image. You can use '''&amp;lt;nowiki&amp;gt;&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;...&amp;lt;/source&amp;gt;&amp;lt;/nowiki&amp;gt;''' within this area to prettify your PyMOL commands.&lt;br /&gt;
* seeAlso can include quick links to commands used.&lt;br /&gt;
==Example==&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
{{GalleryImageTest&lt;br /&gt;
&amp;lt;!-- This creates a row entry for the Gallery section --&amp;gt;&lt;br /&gt;
|&amp;lt;!-- Image --&amp;gt;&lt;br /&gt;
image=BW_raytraced_complex_image.jpg&lt;br /&gt;
|&amp;lt;!-- Title above image --&amp;gt;&lt;br /&gt;
title=This is the title&lt;br /&gt;
|&amp;lt;!-- 'Description' section (shows up below the image)--&amp;gt;&lt;br /&gt;
description=This is the description.&lt;br /&gt;
|&amp;lt;!-- 'What to Type' section --&amp;gt;&lt;br /&gt;
cmdString=&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
many pymol commands&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
You can put other text also.&lt;br /&gt;
* even bulleted lists&lt;br /&gt;
|&amp;lt;!-- 'See Also' section --&amp;gt;&lt;br /&gt;
seeAlso=&lt;br /&gt;
* [[template:GalleryImage|GalleryImage template]]&lt;br /&gt;
* [[template:GalleryImage|GalleryImage template]]&lt;br /&gt;
}}&lt;br /&gt;
==Template==&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{| align=left; &lt;br /&gt;
|- style=&amp;quot;font-weight:bold; color:#333; font-size:125%; font-style:italic; text-align:center;&amp;quot; &lt;br /&gt;
| {{{title}}} || What To Type&lt;br /&gt;
|- style=&amp;quot;font-weight:medium; background:#ddd; color: #333; font-style: normal; vertical-align:top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:white; width=25%; vertical-align:top;&amp;quot;|&lt;br /&gt;
&amp;lt;table BORDER=&amp;quot;0&amp;quot; CELLPADDING=&amp;quot;0&amp;quot; CELLSPACING=&amp;quot;0&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;[[Image:{{{image}}}|200px]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Description&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;{{{description}}}&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;See Also&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;left&amp;quot;&amp;gt;&lt;br /&gt;
{{{seeAlso}}}&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
||&lt;br /&gt;
{{{cmdString}}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ojganesh</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=615</id>
		<title>Template:GalleryImageTest</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=615"/>
		<updated>2008-08-26T14:43:41Z</updated>

		<summary type="html">&lt;p&gt;Ojganesh: /* Template */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
==GalleryImageTest Template==&lt;br /&gt;
'''Usage:'''&lt;br /&gt;
This is the current incarnation of the GalleryImage template.&lt;br /&gt;
This is only a test&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;{{GalleryImageTest&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| image=[[ImageName.png]]&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| title=theTitle&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| description=theDescription&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| cmdString=commandString &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| seeAlso=seeAlso &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
* ImageName.png is the name of the image&lt;br /&gt;
* theTitle is the title you would like at the top of your image&lt;br /&gt;
* theDescription is the description you would like added to your image&lt;br /&gt;
* cmdString are the commands used to create the image. You can use '''&amp;lt;nowiki&amp;gt;&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;...&amp;lt;/source&amp;gt;&amp;lt;/nowiki&amp;gt;''' within this area to prettify your PyMOL commands.&lt;br /&gt;
* seeAlso can include quick links to commands used.&lt;br /&gt;
==Example==&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
{{GalleryImageTest&lt;br /&gt;
&amp;lt;!-- This creates a row entry for the Gallery section --&amp;gt;&lt;br /&gt;
|&amp;lt;!-- Image --&amp;gt;&lt;br /&gt;
image=BW_raytraced_complex_image.jpg&lt;br /&gt;
|&amp;lt;!-- Title above image --&amp;gt;&lt;br /&gt;
title=This is the title&lt;br /&gt;
|&amp;lt;!-- 'Description' section (shows up below the image)--&amp;gt;&lt;br /&gt;
description=This is the description.&lt;br /&gt;
|&amp;lt;!-- 'What to Type' section --&amp;gt;&lt;br /&gt;
cmdString=&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
many pymol commands&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
You can put other text also.&lt;br /&gt;
* even bulleted lists&lt;br /&gt;
|&amp;lt;!-- 'See Also' section --&amp;gt;&lt;br /&gt;
seeAlso=&lt;br /&gt;
* [[template:GalleryImage|GalleryImage template]]&lt;br /&gt;
* [[template:GalleryImage|GalleryImage template]]&lt;br /&gt;
}}&lt;br /&gt;
==Template==&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{| align=left; width=100%;&lt;br /&gt;
|- style=&amp;quot;font-weight:bold; color:#333; font-size:125%; font-style:italic; text-align:center;&amp;quot; &lt;br /&gt;
| {{{title}}} || What To Type&lt;br /&gt;
|- style=&amp;quot;font-weight:medium; background:#ddd; color: #333; font-style: normal; vertical-align:top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:white; width=25%; vertical-align:top;&amp;quot;|&lt;br /&gt;
&amp;lt;table BORDER=&amp;quot;0&amp;quot; CELLPADDING=&amp;quot;0&amp;quot; CELLSPACING=&amp;quot;0&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;[[Image:{{{image}}}|200px]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Description&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;{{{description}}}&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;See Also&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;left&amp;quot;&amp;gt;&lt;br /&gt;
{{{seeAlso}}}&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
||&lt;br /&gt;
{{{cmdString}}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ojganesh</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=614</id>
		<title>Template:GalleryImageTest</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=614"/>
		<updated>2008-08-26T14:42:50Z</updated>

		<summary type="html">&lt;p&gt;Ojganesh: /* Template */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
==GalleryImageTest Template==&lt;br /&gt;
'''Usage:'''&lt;br /&gt;
This is the current incarnation of the GalleryImage template.&lt;br /&gt;
This is only a test&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;{{GalleryImageTest&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| image=[[ImageName.png]]&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| title=theTitle&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| description=theDescription&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| cmdString=commandString &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| seeAlso=seeAlso &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
* ImageName.png is the name of the image&lt;br /&gt;
* theTitle is the title you would like at the top of your image&lt;br /&gt;
* theDescription is the description you would like added to your image&lt;br /&gt;
* cmdString are the commands used to create the image. You can use '''&amp;lt;nowiki&amp;gt;&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;...&amp;lt;/source&amp;gt;&amp;lt;/nowiki&amp;gt;''' within this area to prettify your PyMOL commands.&lt;br /&gt;
* seeAlso can include quick links to commands used.&lt;br /&gt;
==Example==&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
{{GalleryImageTest&lt;br /&gt;
&amp;lt;!-- This creates a row entry for the Gallery section --&amp;gt;&lt;br /&gt;
|&amp;lt;!-- Image --&amp;gt;&lt;br /&gt;
image=BW_raytraced_complex_image.jpg&lt;br /&gt;
|&amp;lt;!-- Title above image --&amp;gt;&lt;br /&gt;
title=This is the title&lt;br /&gt;
|&amp;lt;!-- 'Description' section (shows up below the image)--&amp;gt;&lt;br /&gt;
description=This is the description.&lt;br /&gt;
|&amp;lt;!-- 'What to Type' section --&amp;gt;&lt;br /&gt;
cmdString=&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
many pymol commands&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
You can put other text also.&lt;br /&gt;
* even bulleted lists&lt;br /&gt;
|&amp;lt;!-- 'See Also' section --&amp;gt;&lt;br /&gt;
seeAlso=&lt;br /&gt;
* [[template:GalleryImage|GalleryImage template]]&lt;br /&gt;
* [[template:GalleryImage|GalleryImage template]]&lt;br /&gt;
}}&lt;br /&gt;
==Template==&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{| align=right; width=100&lt;br /&gt;
|- style=&amp;quot;font-weight:bold; color:#333; font-size:125%; font-style:italic; text-align:center;&amp;quot; &lt;br /&gt;
| {{{title}}} || What To Type&lt;br /&gt;
|- style=&amp;quot;font-weight:medium; background:#ddd; color: #333; font-style: normal; vertical-align:top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:white; width=25%; vertical-align:top;&amp;quot;|&lt;br /&gt;
&amp;lt;table BORDER=&amp;quot;0&amp;quot; CELLPADDING=&amp;quot;0&amp;quot; CELLSPACING=&amp;quot;0&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;[[Image:{{{image}}}|200px]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Description&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;{{{description}}}&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;See Also&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;left&amp;quot;&amp;gt;&lt;br /&gt;
{{{seeAlso}}}&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
||&lt;br /&gt;
{{{cmdString}}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ojganesh</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=613</id>
		<title>Template:GalleryImageTest</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=613"/>
		<updated>2008-08-26T14:41:07Z</updated>

		<summary type="html">&lt;p&gt;Ojganesh: /* Template */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
==GalleryImageTest Template==&lt;br /&gt;
'''Usage:'''&lt;br /&gt;
This is the current incarnation of the GalleryImage template.&lt;br /&gt;
This is only a test&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;{{GalleryImageTest&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| image=[[ImageName.png]]&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| title=theTitle&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| description=theDescription&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| cmdString=commandString &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| seeAlso=seeAlso &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
* ImageName.png is the name of the image&lt;br /&gt;
* theTitle is the title you would like at the top of your image&lt;br /&gt;
* theDescription is the description you would like added to your image&lt;br /&gt;
* cmdString are the commands used to create the image. You can use '''&amp;lt;nowiki&amp;gt;&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;...&amp;lt;/source&amp;gt;&amp;lt;/nowiki&amp;gt;''' within this area to prettify your PyMOL commands.&lt;br /&gt;
* seeAlso can include quick links to commands used.&lt;br /&gt;
==Example==&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
{{GalleryImageTest&lt;br /&gt;
&amp;lt;!-- This creates a row entry for the Gallery section --&amp;gt;&lt;br /&gt;
|&amp;lt;!-- Image --&amp;gt;&lt;br /&gt;
image=BW_raytraced_complex_image.jpg&lt;br /&gt;
|&amp;lt;!-- Title above image --&amp;gt;&lt;br /&gt;
title=This is the title&lt;br /&gt;
|&amp;lt;!-- 'Description' section (shows up below the image)--&amp;gt;&lt;br /&gt;
description=This is the description.&lt;br /&gt;
|&amp;lt;!-- 'What to Type' section --&amp;gt;&lt;br /&gt;
cmdString=&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
many pymol commands&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
You can put other text also.&lt;br /&gt;
* even bulleted lists&lt;br /&gt;
|&amp;lt;!-- 'See Also' section --&amp;gt;&lt;br /&gt;
seeAlso=&lt;br /&gt;
* [[template:GalleryImage|GalleryImage template]]&lt;br /&gt;
* [[template:GalleryImage|GalleryImage template]]&lt;br /&gt;
}}&lt;br /&gt;
==Template==&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;p align=&amp;quot;left&amp;quot;&amp;gt;&lt;br /&gt;
{| align=&amp;quot;center&amp;quot;&lt;br /&gt;
|- style=&amp;quot;font-weight:bold; color:#333; font-size:125%; font-style:italic; text-align:center;&amp;quot; &lt;br /&gt;
| {{{title}}} || What To Type&lt;br /&gt;
|- style=&amp;quot;font-weight:medium; background:#ddd; color: #333; font-style: normal; vertical-align:top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:white; width=25%; vertical-align:top;&amp;quot;|&lt;br /&gt;
&amp;lt;table BORDER=&amp;quot;0&amp;quot; CELLPADDING=&amp;quot;0&amp;quot; CELLSPACING=&amp;quot;0&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;[[Image:{{{image}}}|200px]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Description&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;{{{description}}}&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;See Also&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;left&amp;quot;&amp;gt;&lt;br /&gt;
{{{seeAlso}}}&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
||&lt;br /&gt;
{{{cmdString}}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;/p&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ojganesh</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=612</id>
		<title>Template:GalleryImageTest</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=612"/>
		<updated>2008-08-26T14:40:16Z</updated>

		<summary type="html">&lt;p&gt;Ojganesh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
==GalleryImageTest Template==&lt;br /&gt;
'''Usage:'''&lt;br /&gt;
This is the current incarnation of the GalleryImage template.&lt;br /&gt;
This is only a test&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;{{GalleryImageTest&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| image=[[ImageName.png]]&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| title=theTitle&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| description=theDescription&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| cmdString=commandString &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| seeAlso=seeAlso &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
* ImageName.png is the name of the image&lt;br /&gt;
* theTitle is the title you would like at the top of your image&lt;br /&gt;
* theDescription is the description you would like added to your image&lt;br /&gt;
* cmdString are the commands used to create the image. You can use '''&amp;lt;nowiki&amp;gt;&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;...&amp;lt;/source&amp;gt;&amp;lt;/nowiki&amp;gt;''' within this area to prettify your PyMOL commands.&lt;br /&gt;
* seeAlso can include quick links to commands used.&lt;br /&gt;
==Example==&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
{{GalleryImageTest&lt;br /&gt;
&amp;lt;!-- This creates a row entry for the Gallery section --&amp;gt;&lt;br /&gt;
|&amp;lt;!-- Image --&amp;gt;&lt;br /&gt;
image=BW_raytraced_complex_image.jpg&lt;br /&gt;
|&amp;lt;!-- Title above image --&amp;gt;&lt;br /&gt;
title=This is the title&lt;br /&gt;
|&amp;lt;!-- 'Description' section (shows up below the image)--&amp;gt;&lt;br /&gt;
description=This is the description.&lt;br /&gt;
|&amp;lt;!-- 'What to Type' section --&amp;gt;&lt;br /&gt;
cmdString=&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
many pymol commands&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
You can put other text also.&lt;br /&gt;
* even bulleted lists&lt;br /&gt;
|&amp;lt;!-- 'See Also' section --&amp;gt;&lt;br /&gt;
seeAlso=&lt;br /&gt;
* [[template:GalleryImage|GalleryImage template]]&lt;br /&gt;
* [[template:GalleryImage|GalleryImage template]]&lt;br /&gt;
}}&lt;br /&gt;
==Template==&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| align=&amp;quot;center&amp;quot;&lt;br /&gt;
|- style=&amp;quot;font-weight:bold; color:#333; font-size:125%; font-style:italic; text-align:center;&amp;quot; &lt;br /&gt;
| {{{title}}} || What To Type&lt;br /&gt;
|- style=&amp;quot;font-weight:medium; background:#ddd; color: #333; font-style: normal; vertical-align:top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:white; width=25%; vertical-align:top;&amp;quot;|&lt;br /&gt;
&amp;lt;table BORDER=&amp;quot;0&amp;quot; CELLPADDING=&amp;quot;0&amp;quot; CELLSPACING=&amp;quot;0&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;[[Image:{{{image}}}|200px]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Description&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;{{{description}}}&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;See Also&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;left&amp;quot;&amp;gt;&lt;br /&gt;
{{{seeAlso}}}&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
|style=&amp;quot;width=75%; vertical-align:top;&amp;quot;|&lt;br /&gt;
{{{cmdString}}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ojganesh</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=611</id>
		<title>Template:GalleryImageTest</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=611"/>
		<updated>2008-08-26T14:33:27Z</updated>

		<summary type="html">&lt;p&gt;Ojganesh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
==GalleryImageTest Template==&lt;br /&gt;
'''Usage:'''&lt;br /&gt;
This is the current incarnation of the GalleryImage template.&lt;br /&gt;
This is only a test&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;{{GalleryImageTest&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| image=[[ImageName.png]]&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| title=theTitle&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| description=theDescription&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| cmdString=commandString &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| seeAlso=seeAlso &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
* ImageName.png is the name of the image&lt;br /&gt;
* theTitle is the title you would like at the top of your image&lt;br /&gt;
* theDescription is the description you would like added to your image&lt;br /&gt;
* cmdString are the commands used to create the image. You can use '''&amp;lt;nowiki&amp;gt;&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;...&amp;lt;/source&amp;gt;&amp;lt;/nowiki&amp;gt;''' within this area to prettify your PyMOL commands.&lt;br /&gt;
* seeAlso can include quick links to commands used.&lt;br /&gt;
==Example==&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
{{GalleryImageTest&lt;br /&gt;
&amp;lt;!-- This creates a row entry for the Gallery section --&amp;gt;&lt;br /&gt;
|&amp;lt;!-- Image --&amp;gt;&lt;br /&gt;
image=BW_raytraced_complex_image.jpg&lt;br /&gt;
|&amp;lt;!-- Title above image --&amp;gt;&lt;br /&gt;
title=This is the title&lt;br /&gt;
|&amp;lt;!-- 'Description' section (shows up below the image)--&amp;gt;&lt;br /&gt;
description=This is the description.&lt;br /&gt;
|&amp;lt;!-- 'What to Type' section --&amp;gt;&lt;br /&gt;
cmdString=&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
many pymol commands&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
You can put other text also.&lt;br /&gt;
* even bulleted lists&lt;br /&gt;
|&amp;lt;!-- 'See Also' section --&amp;gt;&lt;br /&gt;
seeAlso=&lt;br /&gt;
* [[template:GalleryImage|GalleryImage template]]&lt;br /&gt;
* [[template:GalleryImage|GalleryImage template]]&lt;br /&gt;
}}&lt;br /&gt;
==Template==&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| align=&amp;quot;center&amp;quot;&lt;br /&gt;
|- style=&amp;quot;font-weight:bold; color:#333; font-size:125%; font-style:italic; text-align:center;&amp;quot; &lt;br /&gt;
| {{{title}}} || What To Type&lt;br /&gt;
|- style=&amp;quot;font-weight:medium; background:#ddd; color: #333; font-style: normal; vertical-align:top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:white; width=25%; vertical-align:top;&amp;quot;|&lt;br /&gt;
&amp;lt;table BORDER=&amp;quot;0&amp;quot; CELLPADDING=&amp;quot;0&amp;quot; CELLSPACING=&amp;quot;0&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;[[Image:{{{image}}}|200px]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Description&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;{{{description}}}&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;See Also&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;left&amp;quot;&amp;gt;&lt;br /&gt;
{{{seeAlso}}}&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
||&lt;br /&gt;
{{{cmdString}}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ojganesh</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=610</id>
		<title>Template:GalleryImageTest</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=610"/>
		<updated>2008-08-26T14:32:52Z</updated>

		<summary type="html">&lt;p&gt;Ojganesh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
==GalleryImageTest Template==&lt;br /&gt;
'''Usage:'''&lt;br /&gt;
This is the current incarnation of the GalleryImage template.&lt;br /&gt;
This is only a test&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;{{GalleryImageTest&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| image=[[ImageName.png]]&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| title=theTitle&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| description=theDescription&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| cmdString=commandString &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| seeAlso=seeAlso &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
* ImageName.png is the name of the image&lt;br /&gt;
* theTitle is the title you would like at the top of your image&lt;br /&gt;
* theDescription is the description you would like added to your image&lt;br /&gt;
* cmdString are the commands used to create the image. You can use '''&amp;lt;nowiki&amp;gt;&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;...&amp;lt;/source&amp;gt;&amp;lt;/nowiki&amp;gt;''' within this area to prettify your PyMOL commands.&lt;br /&gt;
* seeAlso can include quick links to commands used.&lt;br /&gt;
==Example==&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
{{GalleryImageTest&lt;br /&gt;
&amp;lt;!-- This creates a row entry for the Gallery section --&amp;gt;&lt;br /&gt;
|&amp;lt;!-- Image --&amp;gt;&lt;br /&gt;
image=BW_raytraced_complex_image.jpg&lt;br /&gt;
|&amp;lt;!-- Title above image --&amp;gt;&lt;br /&gt;
title=This is the title&lt;br /&gt;
|&amp;lt;!-- 'Description' section (shows up below the image)--&amp;gt;&lt;br /&gt;
description=This is the description.&lt;br /&gt;
|&amp;lt;!-- 'What to Type' section --&amp;gt;&lt;br /&gt;
cmdString=&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
many pymol commands&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
You can put other text also.&lt;br /&gt;
* even bulleted lists&lt;br /&gt;
|&amp;lt;!-- 'See Also' section --&amp;gt;&lt;br /&gt;
seeAlso=&lt;br /&gt;
* [[template:GalleryImage|GalleryImage template]]&lt;br /&gt;
* [[template:GalleryImage|GalleryImage template]]&lt;br /&gt;
}}&lt;br /&gt;
==Template==&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| align=&amp;quot;left&amp;quot;&lt;br /&gt;
|- style=&amp;quot;font-weight:bold; color:#333; font-size:125%; font-style:italic; text-align:center;&amp;quot; &lt;br /&gt;
| {{{title}}} || What To Type&lt;br /&gt;
|- style=&amp;quot;font-weight:medium; background:#ddd; color: #333; font-style: normal; vertical-align:top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:white; width=25%; vertical-align:top;&amp;quot;|&lt;br /&gt;
&amp;lt;table BORDER=&amp;quot;0&amp;quot; CELLPADDING=&amp;quot;0&amp;quot; CELLSPACING=&amp;quot;0&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;[[Image:{{{image}}}|200px]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Description&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;{{{description}}}&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;See Also&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;left&amp;quot;&amp;gt;&lt;br /&gt;
{{{seeAlso}}}&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
||&lt;br /&gt;
{{{cmdString}}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ojganesh</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=609</id>
		<title>Template:GalleryImageTest</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=609"/>
		<updated>2008-08-26T14:31:54Z</updated>

		<summary type="html">&lt;p&gt;Ojganesh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
==GalleryImageTest Template==&lt;br /&gt;
'''Usage:'''&lt;br /&gt;
This is the current incarnation of the GalleryImage template.&lt;br /&gt;
This is only a test&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;{{GalleryImageTest&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| image=[[ImageName.png]]&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| title=theTitle&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| description=theDescription&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| cmdString=commandString &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| seeAlso=seeAlso &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
* ImageName.png is the name of the image&lt;br /&gt;
* theTitle is the title you would like at the top of your image&lt;br /&gt;
* theDescription is the description you would like added to your image&lt;br /&gt;
* cmdString are the commands used to create the image. You can use '''&amp;lt;nowiki&amp;gt;&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;...&amp;lt;/source&amp;gt;&amp;lt;/nowiki&amp;gt;''' within this area to prettify your PyMOL commands.&lt;br /&gt;
* seeAlso can include quick links to commands used.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
{{GalleryImageTest&lt;br /&gt;
&amp;lt;!-- This creates a row entry for the Gallery section --&amp;gt;&lt;br /&gt;
|&amp;lt;!-- Image --&amp;gt;&lt;br /&gt;
image=BW_raytraced_complex_image.jpg&lt;br /&gt;
|&amp;lt;!-- Title above image --&amp;gt;&lt;br /&gt;
title=This is the title&lt;br /&gt;
|&amp;lt;!-- 'Description' section (shows up below the image)--&amp;gt;&lt;br /&gt;
description=This is the description.&lt;br /&gt;
|&amp;lt;!-- 'What to Type' section --&amp;gt;&lt;br /&gt;
cmdString=&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
many pymol commands&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
You can put other text also.&lt;br /&gt;
* even bulleted lists&lt;br /&gt;
|&amp;lt;!-- 'See Also' section --&amp;gt;&lt;br /&gt;
seeAlso=&lt;br /&gt;
* [[template:GalleryImage|GalleryImage template]]&lt;br /&gt;
* [[template:GalleryImage|GalleryImage template]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| align=&amp;quot;center&amp;quot;&lt;br /&gt;
|- style=&amp;quot;font-weight:bold; color:#333; font-size:125%; font-style:italic; text-align:center;&amp;quot; &lt;br /&gt;
| {{{title}}} || What To Type&lt;br /&gt;
|- style=&amp;quot;font-weight:medium; background:#ddd; color: #333; font-style: normal; vertical-align:top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:white; width=25%; vertical-align:top;&amp;quot;|&lt;br /&gt;
&amp;lt;table BORDER=&amp;quot;0&amp;quot; CELLPADDING=&amp;quot;0&amp;quot; CELLSPACING=&amp;quot;0&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;[[Image:{{{image}}}|200px]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Description&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;{{{description}}}&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;See Also&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;left&amp;quot;&amp;gt;&lt;br /&gt;
{{{seeAlso}}}&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
||&lt;br /&gt;
{{{cmdString}}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ojganesh</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=608</id>
		<title>Template:GalleryImageTest</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=608"/>
		<updated>2008-08-26T14:31:16Z</updated>

		<summary type="html">&lt;p&gt;Ojganesh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
==GalleryImageTest Template==&lt;br /&gt;
'''Usage:'''&lt;br /&gt;
This is the current incarnation of the GalleryImage template.&lt;br /&gt;
This is only a test&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;{{GalleryImageTest&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| image=[[ImageName.png]]&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| title=theTitle&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| description=theDescription&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| cmdString=commandString &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| seeAlso=seeAlso &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
* ImageName.png is the name of the image&lt;br /&gt;
* theTitle is the title you would like at the top of your image&lt;br /&gt;
* theDescription is the description you would like added to your image&lt;br /&gt;
* cmdString are the commands used to create the image. You can use '''&amp;lt;nowiki&amp;gt;&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;...&amp;lt;/source&amp;gt;&amp;lt;/nowiki&amp;gt;''' within this area to prettify your PyMOL commands.&lt;br /&gt;
* seeAlso can include quick links to commands used.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| align=&amp;quot;center&amp;quot;&lt;br /&gt;
|- style=&amp;quot;font-weight:bold; color:#333; font-size:125%; font-style:italic; text-align:center;&amp;quot; &lt;br /&gt;
| {{{title}}} || What To Type&lt;br /&gt;
|- style=&amp;quot;font-weight:medium; background:#ddd; color: #333; font-style: normal; vertical-align:top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:white; width=25%; vertical-align:top;&amp;quot;|&lt;br /&gt;
&amp;lt;table BORDER=&amp;quot;0&amp;quot; CELLPADDING=&amp;quot;0&amp;quot; CELLSPACING=&amp;quot;0&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;[[Image:{{{image}}}|200px]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Description&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;{{{description}}}&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;See Also&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;left&amp;quot;&amp;gt;&lt;br /&gt;
{{{seeAlso}}}&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
||&lt;br /&gt;
{{{cmdString}}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ojganesh</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=607</id>
		<title>Template:GalleryImageTest</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=607"/>
		<updated>2008-08-26T14:30:41Z</updated>

		<summary type="html">&lt;p&gt;Ojganesh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
==GalleryImageTest Template==&lt;br /&gt;
'''Usage:'''&lt;br /&gt;
This is the current incarnation of the GalleryImage template.&lt;br /&gt;
This is only a test&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;{{GalleryImageTest&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| image=[[ImageName.png]]&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| title=theTitle&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| description=theDescription&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| cmdString=commandString &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| seeAlso=seeAlso &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
* ImageName.png is the name of the image&lt;br /&gt;
* theTitle is the title you would like at the top of your image&lt;br /&gt;
* theDescription is the description you would like added to your image&lt;br /&gt;
* cmdString are the commands used to create the image. You can use '''&amp;lt;nowiki&amp;gt;&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;...&amp;lt;/source&amp;gt;&amp;lt;/nowiki&amp;gt;''' within this area to prettify your PyMOL commands.&lt;br /&gt;
* seeAlso can include quick links to commands used.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| align=&amp;quot;center&amp;quot;&lt;br /&gt;
|- style=&amp;quot;font-weight:bold; color:#333; font-size:125%; font-style:italic; text-align:center;&amp;quot; &lt;br /&gt;
| {{{title}}} || What To Type&lt;br /&gt;
|- style=&amp;quot;font-weight:medium; background:#ddd; color: #333; font-style: normal; vertical-align:top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:white; width=25%; vertical-align:top;&amp;quot;|&lt;br /&gt;
&amp;lt;table BORDER=&amp;quot;0&amp;quot; CELLPADDING=&amp;quot;0&amp;quot; CELLSPACING=&amp;quot;0&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;[[Image:{{{image}}}|200px]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Description&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;{{{description}}}&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;See Also&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;left&amp;quot;&amp;gt;&lt;br /&gt;
{{{seeAlso}}}&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
{{{description}}}&lt;br /&gt;
||&lt;br /&gt;
{{{cmdString}}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ojganesh</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=606</id>
		<title>Template:GalleryImageTest</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=606"/>
		<updated>2008-08-26T14:29:52Z</updated>

		<summary type="html">&lt;p&gt;Ojganesh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
==GalleryImageTest Template==&lt;br /&gt;
'''Usage:'''&lt;br /&gt;
This is the current incarnation of the GalleryImage template.&lt;br /&gt;
This is only a test&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;{{GalleryImageTest&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| image=[[ImageName.png]]&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| title=theTitle&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| description=theDescription&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| cmdString=commandString &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| seeAlso=seeAlso &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
* ImageName.png is the name of the image&lt;br /&gt;
* theTitle is the title you would like at the top of your image&lt;br /&gt;
* theDescription is the description you would like added to your image&lt;br /&gt;
* cmdString are the commands used to create the image. You can use '''&amp;lt;nowiki&amp;gt;&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;...&amp;lt;/source&amp;gt;&amp;lt;/nowiki&amp;gt;''' within this area to prettify your PyMOL commands.&lt;br /&gt;
* seeAlso can include quick links to commands used.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| align=&amp;quot;center&amp;quot;&lt;br /&gt;
|- style=&amp;quot;font-weight:bold; color:#333; font-size:125%; font-style:italic; text-align:center;&amp;quot; &lt;br /&gt;
| {{{title}}} || What To Type&lt;br /&gt;
|- style=&amp;quot;font-weight:medium; background:#ddd; color: #333; font-style: normal; vertical-align:top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:white; width=25%; vertical-align:top;&amp;quot;|&lt;br /&gt;
&amp;lt;table BORDER=&amp;quot;0&amp;quot; CELLPADDING=&amp;quot;0&amp;quot; CELLSPACING=&amp;quot;0&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;[[Image:{{{image}}}|200px]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Description&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;{{{description}}}&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
{{{description}}}&lt;br /&gt;
||&lt;br /&gt;
{{{cmdString}}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ojganesh</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=605</id>
		<title>Template:GalleryImageTest</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=605"/>
		<updated>2008-08-26T14:29:04Z</updated>

		<summary type="html">&lt;p&gt;Ojganesh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
==GalleryImageTest Template==&lt;br /&gt;
'''Usage:'''&lt;br /&gt;
This is the current incarnation of the GalleryImage template.&lt;br /&gt;
This is only a test&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;{{GalleryImageTest&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| image=[[ImageName.png]]&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| title=theTitle&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| description=theDescription&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| cmdString=commandString &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| seeAlso=seeAlso &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
* ImageName.png is the name of the image&lt;br /&gt;
* theTitle is the title you would like at the top of your image&lt;br /&gt;
* theDescription is the description you would like added to your image&lt;br /&gt;
* cmdString are the commands used to create the image. You can use '''&amp;lt;nowiki&amp;gt;&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;...&amp;lt;/source&amp;gt;&amp;lt;/nowiki&amp;gt;''' within this area to prettify your PyMOL commands.&lt;br /&gt;
* seeAlso can include quick links to commands used.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| align=&amp;quot;center&amp;quot;&lt;br /&gt;
|- style=&amp;quot;font-weight:bold; color:#333; font-size:125%; font-style:italic; text-align:center;&amp;quot; &lt;br /&gt;
| {{{title}}} || What To Type&lt;br /&gt;
|- style=&amp;quot;font-weight:medium; background:#ddd; color: #333; font-style: normal; vertical-align:top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:white; width=25%; vertical-align:top;&amp;quot;|&lt;br /&gt;
&amp;lt;table BORDER=&amp;quot;0&amp;quot; CELLPADDING=&amp;quot;0&amp;quot; CELLSPACING=&amp;quot;0&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;[[Image:{{{image}}}|200px]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
{{{description}}}&lt;br /&gt;
||&lt;br /&gt;
{{{cmdString}}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ojganesh</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=604</id>
		<title>Template:GalleryImageTest</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=604"/>
		<updated>2008-08-26T14:28:00Z</updated>

		<summary type="html">&lt;p&gt;Ojganesh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
==GalleryImageTest Template==&lt;br /&gt;
'''Usage:'''&lt;br /&gt;
This is the current incarnation of the GalleryImage template.&lt;br /&gt;
This is only a test&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;{{GalleryImageTest&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| image=[[ImageName.png]]&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| title=theTitle&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| description=theDescription&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| cmdString=commandString &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| seeAlso=seeAlso &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
* ImageName.png is the name of the image&lt;br /&gt;
* theTitle is the title you would like at the top of your image&lt;br /&gt;
* theDescription is the description you would like added to your image&lt;br /&gt;
* cmdString are the commands used to create the image. You can use '''&amp;lt;nowiki&amp;gt;&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;...&amp;lt;/source&amp;gt;&amp;lt;/nowiki&amp;gt;''' within this area to prettify your PyMOL commands.&lt;br /&gt;
* seeAlso can include quick links to commands used.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| align=&amp;quot;center&amp;quot;&lt;br /&gt;
|- style=&amp;quot;font-weight:bold; color:#333; font-size:125%; font-style:italic; text-align:center;&amp;quot; &lt;br /&gt;
| {{{title}}} || What To Type&lt;br /&gt;
|- style=&amp;quot;font-weight:medium; background:#ddd; color: #333; font-style: normal; vertical-align:top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:white; width=25%; vertical-align:top;&amp;quot;|&lt;br /&gt;
[[Image:{{{image}}}|200px]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
{{{description}}}&lt;br /&gt;
||&lt;br /&gt;
{{{cmdString}}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ojganesh</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=603</id>
		<title>Template:GalleryImageTest</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=603"/>
		<updated>2008-08-26T14:27:24Z</updated>

		<summary type="html">&lt;p&gt;Ojganesh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
==GalleryImageTest Template==&lt;br /&gt;
'''Usage:'''&lt;br /&gt;
This is the current incarnation of the GalleryImage template.&lt;br /&gt;
This is only a test&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;{{GalleryImageTest&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| image=[[ImageName.png]]&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| title=theTitle&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| description=theDescription&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| cmdString=commandString &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| seeAlso=seeAlso &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
* ImageName.png is the name of the image&lt;br /&gt;
* theTitle is the title you would like at the top of your image&lt;br /&gt;
* theDescription is the description you would like added to your image&lt;br /&gt;
* cmdString are the commands used to create the image. You can use '''&amp;lt;nowiki&amp;gt;&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;...&amp;lt;/source&amp;gt;&amp;lt;/nowiki&amp;gt;''' within this area to prettify your PyMOL commands.&lt;br /&gt;
* seeAlso can include quick links to commands used.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| align=&amp;quot;center&amp;quot;&lt;br /&gt;
|- style=&amp;quot;font-weight:bold; color:#333; font-size:125%; font-style:italic; text-align:center;&amp;quot; &lt;br /&gt;
| {{{title}}} || What To Type&lt;br /&gt;
|- style=&amp;quot;font-weight:medium; background:#ddd; color: #333; font-style: normal; vertical-align:top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:white; width=25%; vertical-align:top;&amp;quot;|[[Image:{{{image}}}|200px]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
{{{description}}}&lt;br /&gt;
||&lt;br /&gt;
{{{cmdString}}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ojganesh</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=602</id>
		<title>Template:GalleryImageTest</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=602"/>
		<updated>2008-08-26T14:26:49Z</updated>

		<summary type="html">&lt;p&gt;Ojganesh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
==GalleryImageTest Template==&lt;br /&gt;
'''Usage:'''&lt;br /&gt;
This is the current incarnation of the GalleryImage template.&lt;br /&gt;
This is only a test&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;{{GalleryImageTest&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| image=[[ImageName.png]]&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| title=theTitle&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| description=theDescription&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| cmdString=commandString &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| seeAlso=seeAlso &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
* ImageName.png is the name of the image&lt;br /&gt;
* theTitle is the title you would like at the top of your image&lt;br /&gt;
* theDescription is the description you would like added to your image&lt;br /&gt;
* cmdString are the commands used to create the image. You can use '''&amp;lt;nowiki&amp;gt;&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;...&amp;lt;/source&amp;gt;&amp;lt;/nowiki&amp;gt;''' within this area to prettify your PyMOL commands.&lt;br /&gt;
* seeAlso can include quick links to commands used.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| align=&amp;quot;center&amp;quot;&lt;br /&gt;
|- style=&amp;quot;font-weight:bold; color:#333; font-size:125%; font-style:italic; text-align:center;&amp;quot; &lt;br /&gt;
| {{{title}}} || What To Type&lt;br /&gt;
|- style=&amp;quot;font-weight:medium; background:#ddd; color: #333; font-style: normal; vertical-align:top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:white; width=25%; vertical-align:top;&amp;quot;|[[Image:{{{image}}}|{{{size}}}]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
{{{description}}}&lt;br /&gt;
||&lt;br /&gt;
{{{cmdString}}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ojganesh</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=601</id>
		<title>Template:GalleryImageTest</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=601"/>
		<updated>2008-08-26T14:25:40Z</updated>

		<summary type="html">&lt;p&gt;Ojganesh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
==GalleryImageTest Template==&lt;br /&gt;
'''Usage:'''&lt;br /&gt;
This is the current incarnation of the GalleryImage template.&lt;br /&gt;
This is only a test&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;{{GalleryImageTest&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| image=[[ImageName.png]]&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| title=theTitle&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| description=theDescription&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| cmdString=commandString &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| seeAlso=seeAlso &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
* ImageName.png is the name of the image&lt;br /&gt;
* theTitle is the title you would like at the top of your image&lt;br /&gt;
* theDescription is the description you would like added to your image&lt;br /&gt;
* cmdString are the commands used to create the image. You can use '''&amp;lt;nowiki&amp;gt;&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;...&amp;lt;/source&amp;gt;&amp;lt;/nowiki&amp;gt;''' within this area to prettify your PyMOL commands.&lt;br /&gt;
* seeAlso can include quick links to commands used.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| align=&amp;quot;center&amp;quot;&lt;br /&gt;
|- style=&amp;quot;font-weight:bold; color:#333; font-size:125%; font-style:italic; text-align:center;&amp;quot; &lt;br /&gt;
| {{{title}}} || What To Type&lt;br /&gt;
|- style=&amp;quot;font-weight:medium; background:#ddd; color: #333; font-style: normal; vertical-align:top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:white; width=25%; text-align:center; vertical-align:middle;&amp;quot;|[[Image:{{{image}}}|200px]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
{{{description}}}&lt;br /&gt;
||&lt;br /&gt;
{{{cmdString}}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ojganesh</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=600</id>
		<title>Template:GalleryImageTest</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=600"/>
		<updated>2008-08-26T14:24:28Z</updated>

		<summary type="html">&lt;p&gt;Ojganesh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
==GalleryImageTest Template==&lt;br /&gt;
'''Usage:'''&lt;br /&gt;
This is the current incarnation of the GalleryImage template.&lt;br /&gt;
This is only a test&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;{{GalleryImageTest&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| image=[[ImageName.png]]&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| title=theTitle&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| description=theDescription&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| cmdString=commandString &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| seeAlso=seeAlso &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
* ImageName.png is the name of the image&lt;br /&gt;
* theTitle is the title you would like at the top of your image&lt;br /&gt;
* theDescription is the description you would like added to your image&lt;br /&gt;
* cmdString are the commands used to create the image. You can use '''&amp;lt;nowiki&amp;gt;&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;...&amp;lt;/source&amp;gt;&amp;lt;/nowiki&amp;gt;''' within this area to prettify your PyMOL commands.&lt;br /&gt;
* seeAlso can include quick links to commands used.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| align=&amp;quot;center&amp;quot;&lt;br /&gt;
|- style=&amp;quot;font-weight:bold; color:#333; font-size:125%; font-style:italic; text-align:center;&amp;quot; &lt;br /&gt;
| {{{title}}} || Description || What To Type || See Also&lt;br /&gt;
|- style=&amp;quot;font-weight:medium; background:#ddd; color: #333; font-style: normal; vertical-align:top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:white; width=25%; text-align:center; vertical-align:middle;&amp;quot;|[[Image:{{{image}}}|{{{size}}}]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
{{{description}}}&lt;br /&gt;
||&lt;br /&gt;
{{{seeAlso}}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ojganesh</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=599</id>
		<title>Template:GalleryImageTest</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=599"/>
		<updated>2008-08-26T14:19:48Z</updated>

		<summary type="html">&lt;p&gt;Ojganesh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
==GalleryImageTest Template==&lt;br /&gt;
'''Usage:'''&lt;br /&gt;
This is the current incarnation of the GalleryImage template.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;{{GalleryImageTest&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| image=[[ImageName.png]]&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| title=theTitle&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| description=theDescription&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| cmdString=commandString &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| seeAlso=seeAlso &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
* ImageName.png is the name of the image&lt;br /&gt;
* theTitle is the title you would like at the top of your image&lt;br /&gt;
* theDescription is the description you would like added to your image&lt;br /&gt;
* cmdString are the commands used to create the image. You can use '''&amp;lt;nowiki&amp;gt;&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;...&amp;lt;/source&amp;gt;&amp;lt;/nowiki&amp;gt;''' within this area to prettify your PyMOL commands.&lt;br /&gt;
* seeAlso can include quick links to commands used.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| align=&amp;quot;left&amp;quot;&lt;br /&gt;
|- style=&amp;quot;font-weight:bold; color:#333; font-size:125%; font-style:italic; text-align:center;&amp;quot; &lt;br /&gt;
| {{{title}}} || What To Type&lt;br /&gt;
|- style=&amp;quot;font-weight:medium; background:#ddd; color: #333; font-style: normal; vertical-align:top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:white; width=25%; vertical-align:top;&amp;quot;|&amp;lt;table BORDER=&amp;quot;0&amp;quot; CELLPADDING=&amp;quot;0&amp;quot; CELLSPACING=&amp;quot;0&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;[[Image:{{{image}}}|200px]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Description&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;{{{description}}}&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;See Also&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;left&amp;quot;&amp;gt;&lt;br /&gt;
{{{seeAlso}}}&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
||&lt;br /&gt;
{{{cmdString}}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ojganesh</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=598</id>
		<title>Template:GalleryImageTest</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=598"/>
		<updated>2008-08-26T14:16:48Z</updated>

		<summary type="html">&lt;p&gt;Ojganesh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
==GalleryImageTest Template==&lt;br /&gt;
'''Usage:'''&lt;br /&gt;
This is the current incarnation of the GalleryImage template.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;{{GalleryImageTest&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| image=[[ImageName.png]]&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| title=theTitle&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| description=theDescription&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| cmdString=commandString &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| seeAlso=seeAlso &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
* ImageName.png is the name of the image&lt;br /&gt;
* theTitle is the title you would like at the top of your image&lt;br /&gt;
* theDescription is the description you would like added to your image&lt;br /&gt;
* cmdString are the commands used to create the image. You can use &amp;lt;nowiki&amp;gt;&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;...&amp;lt;/source&amp;gt;&amp;lt;/nowiki&amp;gt; within this area to prettify your PyMOL commands.&lt;br /&gt;
* seeAlso can include quick links to commands used.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
{{GalleryImageTest&lt;br /&gt;
&amp;lt;!-- This creates a row entry for the Gallery section --&amp;gt;&lt;br /&gt;
|&amp;lt;!-- Image --&amp;gt;&lt;br /&gt;
image=BW_raytraced_complex_image.jpg&lt;br /&gt;
|&amp;lt;!-- Title above image --&amp;gt;&lt;br /&gt;
title=This is the title&lt;br /&gt;
|&amp;lt;!-- 'Description' section (shows up below the image)--&amp;gt;&lt;br /&gt;
description=This is the description.&lt;br /&gt;
|&amp;lt;!-- 'What to Type' section --&amp;gt;&lt;br /&gt;
cmdString=&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
many pymol commands&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
You can put other text also.&lt;br /&gt;
* even bulleted lists&lt;br /&gt;
|&amp;lt;!-- 'See Also' section --&amp;gt;&lt;br /&gt;
seeAlso=&lt;br /&gt;
* [[template:GalleryImage|GalleryImage template]]&lt;br /&gt;
* [[template:GalleryImage|GalleryImage template]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| align=&amp;quot;left&amp;quot;&lt;br /&gt;
|- style=&amp;quot;font-weight:bold; color:#333; font-size:125%; font-style:italic; text-align:center;&amp;quot; &lt;br /&gt;
| {{{title}}} || What To Type&lt;br /&gt;
|- style=&amp;quot;font-weight:medium; background:#ddd; color: #333; font-style: normal; vertical-align:top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:white; width=25%; vertical-align:top;&amp;quot;|&amp;lt;table BORDER=&amp;quot;0&amp;quot; CELLPADDING=&amp;quot;0&amp;quot; CELLSPACING=&amp;quot;0&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;[[Image:{{{image}}}|200px]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Description&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;{{{description}}}&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;See Also&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;left&amp;quot;&amp;gt;&lt;br /&gt;
{{{seeAlso}}}&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
||&lt;br /&gt;
{{{cmdString}}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ojganesh</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=597</id>
		<title>Template:GalleryImageTest</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=597"/>
		<updated>2008-08-26T14:15:06Z</updated>

		<summary type="html">&lt;p&gt;Ojganesh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
==GalleryImageTest Template==&lt;br /&gt;
'''Usage:'''&lt;br /&gt;
This is the current incarnation of the GalleryImage template.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;{{GalleryImageTest&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| image=[[ImageName.png]]&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| title=theTitle&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| description=theDescription&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| cmdString=commandString &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| seeAlso=seeAlso &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
* ImageName.png is the name of the image&lt;br /&gt;
* theTitle is the title you would like at the top of your image&lt;br /&gt;
* theDescription is the description you would like added to your image&lt;br /&gt;
* cmdString are the commands used to create the image. You can use &amp;lt;nowiki&amp;gt;&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;...&amp;lt;/source&amp;gt;&amp;lt;/nowiki&amp;gt; within this area to prettify your PyMOL commands.&lt;br /&gt;
* seeAlso can include quick links to commands used.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
{{GalleryImageTest&lt;br /&gt;
&amp;lt;!-- This creates a row entry for the Gallery section --&amp;gt;&lt;br /&gt;
&amp;lt;!-- columns resize dynamically, and poorly --&amp;gt;&lt;br /&gt;
&amp;lt;!-- the image and 'What to Type' sections define the space --&amp;gt;&lt;br /&gt;
&amp;lt;!-- the 'Description' and 'See Also' sections take whatever's left --&amp;gt;&lt;br /&gt;
|&amp;lt;!-- Image --&amp;gt;&lt;br /&gt;
image=BW_raytraced_complex_image.jpg&lt;br /&gt;
|&amp;lt;!-- Title above image --&amp;gt;&lt;br /&gt;
title=This is the title&lt;br /&gt;
|&amp;lt;!-- 'Description' section (shows up below the image)--&amp;gt;&lt;br /&gt;
description=This is the description.&lt;br /&gt;
|&amp;lt;!-- 'What to Type' section --&amp;gt;&lt;br /&gt;
cmdString=&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
(do many things)&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
There's other text here.&lt;br /&gt;
|&amp;lt;!-- 'See Also' section --&amp;gt;&lt;br /&gt;
seeAlso=&lt;br /&gt;
* [[template:GalleryImage|GalleryImage template]]&lt;br /&gt;
* [[template:GalleryImage|GalleryImage template]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| align=&amp;quot;left&amp;quot;&lt;br /&gt;
|- style=&amp;quot;font-weight:bold; color:#333; font-size:125%; font-style:italic; text-align:center;&amp;quot; &lt;br /&gt;
| {{{title}}} || What To Type&lt;br /&gt;
|- style=&amp;quot;font-weight:medium; background:#ddd; color: #333; font-style: normal; vertical-align:top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:white; width=25%; vertical-align:top;&amp;quot;|&amp;lt;table BORDER=&amp;quot;0&amp;quot; CELLPADDING=&amp;quot;0&amp;quot; CELLSPACING=&amp;quot;0&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;[[Image:{{{image}}}|200px]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Description&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;{{{description}}}&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;See Also&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;left&amp;quot;&amp;gt;&lt;br /&gt;
{{{seeAlso}}}&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
||&lt;br /&gt;
{{{cmdString}}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ojganesh</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=596</id>
		<title>Template:GalleryImageTest</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=596"/>
		<updated>2008-08-26T14:13:52Z</updated>

		<summary type="html">&lt;p&gt;Ojganesh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
==GalleryImageTest Template==&lt;br /&gt;
'''Usage:'''&lt;br /&gt;
This is the current incarnation of the GalleryImage template.&lt;br /&gt;
&amp;lt;nowiki&amp;gt;{{GalleryImageTest&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| image=[[ImageName.png]]&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| title=theTitle&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| description=theDescription&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| cmdString=commandString &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| seeAlso=seeAlso &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
* ImageName.png is the name of the image&lt;br /&gt;
* theTitle is the title you would like at the top of your image&lt;br /&gt;
* theDescription is the description you would like added to your image&lt;br /&gt;
* cmdString are the commands used to create the image. You can use &amp;lt;nowiki&amp;gt;&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;...&amp;lt;/source&amp;gt;&amp;lt;/nowiki&amp;gt; within this area to prettify your PyMOL commands.&lt;br /&gt;
* seeAlso can include quick links to commands used.&lt;br /&gt;
&lt;br /&gt;
{{GalleryImageTest&lt;br /&gt;
&amp;lt;!-- This creates a row entry for the Gallery section --&amp;gt;&lt;br /&gt;
&amp;lt;!-- columns resize dynamically, and poorly --&amp;gt;&lt;br /&gt;
&amp;lt;!-- the image and 'What to Type' sections define the space --&amp;gt;&lt;br /&gt;
&amp;lt;!-- the 'Description' and 'See Also' sections take whatever's left --&amp;gt;&lt;br /&gt;
|&amp;lt;!-- Image --&amp;gt;&lt;br /&gt;
image=BW_raytraced_complex_image.jpg&lt;br /&gt;
|&amp;lt;!-- Title above image --&amp;gt;&lt;br /&gt;
title=This is the title&lt;br /&gt;
|&amp;lt;!-- 'Description' section (shows up below the image)--&amp;gt;&lt;br /&gt;
description=This is the description.&lt;br /&gt;
|&amp;lt;!-- 'What to Type' section --&amp;gt;&lt;br /&gt;
cmdString=&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
(do many things)&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
There's other text here.&lt;br /&gt;
|&amp;lt;!-- 'See Also' section --&amp;gt;&lt;br /&gt;
seeAlso=&lt;br /&gt;
* [[Bg_Color|bg_color]]&lt;br /&gt;
* [[Get_View|get_view]]&lt;br /&gt;
* Mouse Modes (no good reference for this?)&lt;br /&gt;
* [[png]]&lt;br /&gt;
* [[Cartoon#Sausage_Representation|putty]]&lt;br /&gt;
* [[ray]]&lt;br /&gt;
* [[Ray#Modes|ray_trace_mode]]&lt;br /&gt;
* [[set]]&lt;br /&gt;
* [[Set_View|set_view]]&lt;br /&gt;
* [[Single-word_Selectors |single word property selectors]]&lt;br /&gt;
* [[Advanced_Coloring#Coloring_by_atom_type|util.cbag]]&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| align=&amp;quot;left&amp;quot;&lt;br /&gt;
|- style=&amp;quot;font-weight:bold; color:#333; font-size:125%; font-style:italic; text-align:center;&amp;quot; &lt;br /&gt;
| {{{title}}} || What To Type&lt;br /&gt;
|- style=&amp;quot;font-weight:medium; background:#ddd; color: #333; font-style: normal; vertical-align:top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:white; width=25%; vertical-align:top;&amp;quot;|&amp;lt;table BORDER=&amp;quot;0&amp;quot; CELLPADDING=&amp;quot;0&amp;quot; CELLSPACING=&amp;quot;0&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;[[Image:{{{image}}}|200px]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Description&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;{{{description}}}&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;See Also&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;left&amp;quot;&amp;gt;&lt;br /&gt;
{{{seeAlso}}}&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
||&lt;br /&gt;
{{{cmdString}}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ojganesh</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=595</id>
		<title>Template:GalleryImageTest</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=595"/>
		<updated>2008-08-26T14:13:19Z</updated>

		<summary type="html">&lt;p&gt;Ojganesh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
==GalleryImageTest Template==&lt;br /&gt;
'''Usage:'''&lt;br /&gt;
This is the current incarnation of the GalleryImage template.&lt;br /&gt;
&amp;lt;nowiki&amp;gt;{{GalleryImageTest&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| image=[[ImageName.png]]&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| title=theTitle&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| description=theDescription&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| cmdString=commandString &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| seeAlso=seeAlso &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
* ImageName.png is the name of the image&lt;br /&gt;
* theTitle is the title you would like at the top of your image&lt;br /&gt;
* theDescription is the description you would like added to your image&lt;br /&gt;
* cmdString are the commands used to create the image. You can use &amp;lt;nowiki&amp;gt;&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;...&amp;lt;/source&amp;gt;&amp;lt;/nowiki&amp;gt; within this area to prettify your PyMOL commands.&lt;br /&gt;
* seeAlso can include quick links to commands used.&lt;br /&gt;
&lt;br /&gt;
{{GalleryImageTest&lt;br /&gt;
&amp;lt;!-- This creates a row entry for the Gallery section --&amp;gt;&lt;br /&gt;
&amp;lt;!-- columns resize dynamically, and poorly --&amp;gt;&lt;br /&gt;
&amp;lt;!-- the image and 'What to Type' sections define the space --&amp;gt;&lt;br /&gt;
&amp;lt;!-- the 'Description' and 'See Also' sections take whatever's left --&amp;gt;&lt;br /&gt;
|&amp;lt;!-- Image --&amp;gt;&lt;br /&gt;
image=BW_raytraced_complex_image.jpg&lt;br /&gt;
|&amp;lt;!-- Title above image --&amp;gt;&lt;br /&gt;
title=This is the title&lt;br /&gt;
|&amp;lt;!-- 'Description' section (shows up below the image)--&amp;gt;&lt;br /&gt;
description=This is the description.&lt;br /&gt;
|&amp;lt;!-- 'What to Type' section --&amp;gt;&lt;br /&gt;
cmdString=&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
(do many things)&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
There's other text here.&lt;br /&gt;
|&amp;lt;!-- 'See Also' section --&amp;gt;&lt;br /&gt;
seeAlso=&lt;br /&gt;
* [[Bg_Color|bg_color]]&lt;br /&gt;
* [[Get_View|get_view]]&lt;br /&gt;
* Mouse Modes (no good reference for this?)&lt;br /&gt;
* [[png]]&lt;br /&gt;
* [[Cartoon#Sausage_Representation|putty]]&lt;br /&gt;
* [[ray]]&lt;br /&gt;
* [[Ray#Modes|ray_trace_mode]]&lt;br /&gt;
* [[set]]&lt;br /&gt;
* [[Set_View|set_view]]&lt;br /&gt;
* [[Single-word_Selectors |single word property selectors]]&lt;br /&gt;
* [[Advanced_Coloring#Coloring_by_atom_type|util.cbag]]&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| align=&amp;quot;left&amp;quot;&lt;br /&gt;
|- style=&amp;quot;font-weight:bold; color:#333; font-size:125%; font-style:italic; text-align:center;&amp;quot; &lt;br /&gt;
| {{{title}}} || What To Type&lt;br /&gt;
|- style=&amp;quot;font-weight:medium; background:#ddd; color: #333; font-style: normal; vertical-align:top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:white; width=25%; vertical-align:top;&amp;quot;|&amp;lt;table BORDER=&amp;quot;0&amp;quot; CELLPADDING=&amp;quot;0&amp;quot; CELLSPACING=&amp;quot;0&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;[[Image:{{{image}}}|200px]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Description&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;{{{description}}}&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;See Also&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;left&amp;quot;&amp;gt;&lt;br /&gt;
{{{seeAlso}}}&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
||&lt;br /&gt;
{{{cmdString}}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ojganesh</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=594</id>
		<title>Template:GalleryImageTest</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=594"/>
		<updated>2008-08-26T14:06:58Z</updated>

		<summary type="html">&lt;p&gt;Ojganesh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
==GalleryImageTest Template==&lt;br /&gt;
'''Usage:'''&lt;br /&gt;
incorrect usage, see page code to deduce usage for now.&lt;br /&gt;
&amp;lt;nowiki&amp;gt;{{GalleryImageTest&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| image=[[ImageName.png]]&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| title=theTitle&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| description=theDescription&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| cmdString=commandString &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| seeAlso=seeAlso &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| align=&amp;quot;left&amp;quot;&lt;br /&gt;
|- style=&amp;quot;font-weight:bold; color:#333; font-size:125%; font-style:italic; text-align:center;&amp;quot; &lt;br /&gt;
| {{{title}}} || What To Type&lt;br /&gt;
|- style=&amp;quot;font-weight:medium; background:#ddd; color: #333; font-style: normal; vertical-align:top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:white; width=25%; vertical-align:top;&amp;quot;|&amp;lt;table BORDER=&amp;quot;0&amp;quot; CELLPADDING=&amp;quot;0&amp;quot; CELLSPACING=&amp;quot;0&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;[[Image:{{{image}}}|200px]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Description&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;{{{description}}}&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;See Also&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;left&amp;quot;&amp;gt;&lt;br /&gt;
{{{seeAlso}}}&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
||&lt;br /&gt;
{{{cmdString}}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ojganesh</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=593</id>
		<title>Template:GalleryImageTest</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=593"/>
		<updated>2008-08-26T13:23:05Z</updated>

		<summary type="html">&lt;p&gt;Ojganesh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
==GalleryImageTest Template==&lt;br /&gt;
'''Usage:'''&lt;br /&gt;
incorrect usage, see page code to deduce usage for now.&lt;br /&gt;
&amp;lt;nowiki&amp;gt;{{GalleryImageTest&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| image=[[ImageName.png]]&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| title=theTitle&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| description=theDescription&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| cmdString=commandString &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| seeAlso=seeAlso &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| align=&amp;quot;left&amp;quot;&lt;br /&gt;
|- style=&amp;quot;font-weight:bold; color:#333; font-size:125%; font-style:italic; text-align:center;&amp;quot; &lt;br /&gt;
| {{{title}}} || What To Type&lt;br /&gt;
|- style=&amp;quot;font-weight:medium; background:#ddd; color: #333; font-style: normal; vertical-align:top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:white; width=25%; vertical-align:top;&amp;quot;|&amp;lt;table BORDER=&amp;quot;0&amp;quot; CELLPADDING=&amp;quot;0&amp;quot; CELLSPACING=&amp;quot;0&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;[[Image:{{{image}}}|200px]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Description&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;{{{description}}}&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;See Also&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;left&amp;quot;&amp;gt;&lt;br /&gt;
{{{seeAlso}}}&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
||&lt;br /&gt;
{{{cmdString}}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ojganesh</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=592</id>
		<title>Template:GalleryImageTest</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=592"/>
		<updated>2008-08-26T13:21:16Z</updated>

		<summary type="html">&lt;p&gt;Ojganesh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
==GalleryImageTest Template==&lt;br /&gt;
'''Usage:'''&lt;br /&gt;
incorrect usage, see page code to deduce usage for now.&lt;br /&gt;
&amp;lt;nowiki&amp;gt;{{GalleryImageTest&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| image=[[ImageName.png]]&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| size=250px&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| title=theTitle&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| description=theDescription&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| cmdString=commandString &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| seeAlso=seeAlso &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| align=&amp;quot;left&amp;quot;&lt;br /&gt;
|- style=&amp;quot;font-weight:bold; color:#333; font-size:125%; font-style:italic; text-align:center;&amp;quot; &lt;br /&gt;
| {{{title}}} || What To Type&lt;br /&gt;
|- style=&amp;quot;font-weight:medium; background:#ddd; color: #333; font-style: normal; vertical-align:top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:white; width=25%; vertical-align:top;&amp;quot;|&amp;lt;table BORDER=&amp;quot;0&amp;quot; CELLPADDING=&amp;quot;0&amp;quot; CELLSPACING=&amp;quot;0&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;[[Image:{{{image}}}|200px]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Description&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;{{{description}}}&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;See Also&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;left&amp;quot;&amp;gt;&lt;br /&gt;
{{{seeAlso}}}&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
||&lt;br /&gt;
{{{cmdString}}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ojganesh</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=591</id>
		<title>Template:GalleryImageTest</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=591"/>
		<updated>2008-08-26T13:20:49Z</updated>

		<summary type="html">&lt;p&gt;Ojganesh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
==GalleryImageTest Template==&lt;br /&gt;
'''Usage:'''&lt;br /&gt;
incorrect usage, see page code to deduce usage for now.&lt;br /&gt;
&amp;lt;nowiki&amp;gt;{{GalleryImageTest&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| image=[[ImageName.png]]&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| size=250px&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| title=theTitle&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| description=theDescription&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| cmdString=commandString &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| seeAlso=seeAlso &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| align=&amp;quot;left&amp;quot;&lt;br /&gt;
|- style=&amp;quot;font-weight:bold; color:#333; font-size:125%; font-style:italic; text-align:center;&amp;quot; &lt;br /&gt;
| {{{title}}} || What To Type&lt;br /&gt;
|- style=&amp;quot;font-weight:medium; background:#ddd; color: #333; font-style: normal; vertical-align:top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:white; width=25%; text-align:center; vertical-align:top;&amp;quot;|&amp;lt;table BORDER=&amp;quot;0&amp;quot; CELLPADDING=&amp;quot;0&amp;quot; CELLSPACING=&amp;quot;0&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;[[Image:{{{image}}}|200px]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Description&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;{{{description}}}&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;See Also&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;left&amp;quot;&amp;gt;&lt;br /&gt;
{{{seeAlso}}}&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
{text-align:left}&lt;br /&gt;
hi&lt;br /&gt;
||&lt;br /&gt;
{{{cmdString}}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ojganesh</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=590</id>
		<title>Template:GalleryImageTest</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=590"/>
		<updated>2008-08-26T13:19:17Z</updated>

		<summary type="html">&lt;p&gt;Ojganesh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
==GalleryImageTest Template==&lt;br /&gt;
'''Usage:'''&lt;br /&gt;
incorrect usage, see page code to deduce usage for now.&lt;br /&gt;
&amp;lt;nowiki&amp;gt;{{GalleryImageTest&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| image=[[ImageName.png]]&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| size=250px&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| title=theTitle&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| description=theDescription&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| cmdString=commandString &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| seeAlso=seeAlso &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| align=&amp;quot;left&amp;quot;&lt;br /&gt;
|- style=&amp;quot;font-weight:bold; color:#333; font-size:125%; font-style:italic; text-align:center;&amp;quot; &lt;br /&gt;
| {{{title}}} || What To Type&lt;br /&gt;
|- style=&amp;quot;font-weight:medium; background:#ddd; color: #333; font-style: normal; vertical-align:top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:white; width=25%; text-align:center; vertical-align:top;&amp;quot;|&amp;lt;table BORDER=&amp;quot;0&amp;quot; CELLPADDING=&amp;quot;0&amp;quot; CELLSPACING=&amp;quot;0&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;[[Image:{{{image}}}|250px]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Description&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;{{{description}}}&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;See Also&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;left&amp;quot;&amp;gt;&lt;br /&gt;
{{{seeAlso}}}&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
||&lt;br /&gt;
{{{cmdString}}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ojganesh</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=589</id>
		<title>Template:GalleryImageTest</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=589"/>
		<updated>2008-08-26T13:17:43Z</updated>

		<summary type="html">&lt;p&gt;Ojganesh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
==GalleryImageTest Template==&lt;br /&gt;
'''Usage:'''&lt;br /&gt;
incorrect usage, see page code to deduce usage for now.&lt;br /&gt;
&amp;lt;nowiki&amp;gt;{{GalleryImageTest&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| image=[[ImageName.png]]&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| size=250px&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| title=theTitle&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| description=theDescription&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| cmdString=commandString &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| seeAlso=seeAlso &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| align=&amp;quot;left&amp;quot;&lt;br /&gt;
|- style=&amp;quot;font-weight:bold; color:#333; font-size:125%; font-style:italic; text-align:center;&amp;quot; &lt;br /&gt;
| {{{title}}} || What To Type&lt;br /&gt;
|- style=&amp;quot;font-weight:medium; background:#ddd; color: #333; font-style: normal; vertical-align:top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:white; width=25%; text-align:center; vertical-align:top;&amp;quot;|&amp;lt;table BORDER=&amp;quot;0&amp;quot; CELLPADDING=&amp;quot;0&amp;quot; CELLSPACING=&amp;quot;0&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;[[Image:{{{image}}}|{{{size}}}]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Description&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;{{{description}}}&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;See Also&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;left&amp;quot;&amp;gt;&lt;br /&gt;
{{{seeAlso}}}&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
||&lt;br /&gt;
{{{cmdString}}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ojganesh</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=588</id>
		<title>Template:GalleryImageTest</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=588"/>
		<updated>2008-08-26T13:16:31Z</updated>

		<summary type="html">&lt;p&gt;Ojganesh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
==GalleryImageTest Template==&lt;br /&gt;
'''Usage:'''&lt;br /&gt;
incorrect usage, see page code to deduce usage for now.&lt;br /&gt;
&amp;lt;nowiki&amp;gt;{{GalleryImageTest&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| image=[[ImageName.png]]&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| size=250px&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| title=theTitle&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| description=theDescription&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| cmdString=commandString &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| seeAlso=seeAlso &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| align=&amp;quot;left&amp;quot;&lt;br /&gt;
|- style=&amp;quot;font-weight:bold; color:#333; font-size:125%; font-style:italic; text-align:center;&amp;quot; &lt;br /&gt;
| {{{title}}} || What To Type&lt;br /&gt;
|- style=&amp;quot;font-weight:medium; background:#ddd; color: #333; font-style: normal; vertical-align:top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:white; width=25%; text-align:center; vertical-align:top;&amp;quot;|&amp;lt;table&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;[[Image:{{{image}}}|{{{size}}}]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Description&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;{{{description}}}&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;See Also&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;left&amp;quot;&amp;gt;{{{seeAlso}}}&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
||&lt;br /&gt;
{{{cmdString}}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ojganesh</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=587</id>
		<title>Template:GalleryImageTest</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Template:GalleryImageTest&amp;diff=587"/>
		<updated>2008-08-26T13:16:19Z</updated>

		<summary type="html">&lt;p&gt;Ojganesh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
==GalleryImageTest Template==&lt;br /&gt;
'''Usage:'''&lt;br /&gt;
incorrect usage, see page code to deduce usage for now.&lt;br /&gt;
&amp;lt;nowiki&amp;gt;{{GalleryImageTest&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| image=[[ImageName.png]]&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| size=250px&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| title=theTitle&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| description=theDescription&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| cmdString=commandString &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
| seeAlso=seeAlso &amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| align=&amp;quot;left&amp;quot;&lt;br /&gt;
|- style=&amp;quot;font-weight:bold; color:#333; font-size:125%; font-style:italic; text-align:center;&amp;quot; &lt;br /&gt;
| {{{title}}} || What To Type&lt;br /&gt;
|- style=&amp;quot;font-weight:medium; background:#ddd; color: #333; font-style: normal; vertical-align:top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:white; width=25%; text-align:center; vertical-align:top;&amp;quot;|&amp;lt;table&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;[[Image:{{{image}}}|{{{size}}}]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Description&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;{{{description}}}&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;b&amp;gt;See Also&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;{{{seeAlso}}}&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
||&lt;br /&gt;
{{{cmdString}}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ojganesh</name></author>
	</entry>
</feed>