<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Blog de Programacion &#187; colocar</title>
	<atom:link href="http://foro-c.com/blog/tag/colocar/feed/" rel="self" type="application/rss+xml" />
	<link>http://foro-c.com/blog</link>
	<description>Ayuda en C/C++ y LaTeX</description>
	<lastBuildDate>Sat, 06 Aug 2011 18:49:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
		<item>
		<title>phpBB3: Colocar publicidad después del primer mensaje en un tema</title>
		<link>http://foro-c.com/blog/phpbb3-colocar-publicidad-despues-del-primer-mensaje-en-un-tema/</link>
		<comments>http://foro-c.com/blog/phpbb3-colocar-publicidad-despues-del-primer-mensaje-en-un-tema/#comments</comments>
		<pubDate>Wed, 25 Mar 2009 23:33:58 +0000</pubDate>
		<dc:creator>AntonioGDL</dc:creator>
				<category><![CDATA[phpBB]]></category>
		<category><![CDATA[colocar]]></category>
		<category><![CDATA[después]]></category>
		<category><![CDATA[mensaje]]></category>
		<category><![CDATA[phpBB3]]></category>
		<category><![CDATA[primer]]></category>
		<category><![CDATA[publicidad]]></category>
		<category><![CDATA[tema]]></category>

		<guid isPermaLink="false">http://familiaytu.com/blog/?p=587</guid>
		<description><![CDATA[Ojo! esto es para la plantilla ProSilver Abrir el archivo styles/prosilver/template/viewtopic.html Buscar la siguiente línea: &#60;!&#8211; END postrow &#8211;&#62; y añadir justo ANTES de esa línea: &#60;!&#8211; IF postrow.S_FIRST_ROW &#8211;&#62; &#60;div class=&#8221;post bg2&#8243;&#62; &#60;div class=&#8221;inner&#8221;&#62; &#60;span class=&#8221;corners-top&#8221;&#62; &#60;span&#62;&#60;/span&#62;&#60;/span&#62; &#60;div class=&#8221;content&#8221;&#62; &#60;dl class=&#8221;faq&#8221;&#62; &#60;dd style=&#8221;text-align:center;&#8221;&#62; Aqui colocas el código de la publicidad &#60;/dd&#62;&#60;/dl&#62; &#60;/div&#62; &#60;span class=&#8221;corners-bottom&#8221;&#62; [...]]]></description>
		<wfw:commentRss>http://foro-c.com/blog/phpbb3-colocar-publicidad-despues-del-primer-mensaje-en-un-tema/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>phpBB3: Colocar publicidad adsense en la cabecera del foro</title>
		<link>http://foro-c.com/blog/phpbb3-colocar-publicidad-adsense-en-la-cabecera-del-foro/</link>
		<comments>http://foro-c.com/blog/phpbb3-colocar-publicidad-adsense-en-la-cabecera-del-foro/#comments</comments>
		<pubDate>Wed, 25 Mar 2009 23:14:31 +0000</pubDate>
		<dc:creator>AntonioGDL</dc:creator>
				<category><![CDATA[phpBB]]></category>
		<category><![CDATA[cabecera]]></category>
		<category><![CDATA[colocar]]></category>
		<category><![CDATA[foro]]></category>
		<category><![CDATA[phpBB3]]></category>
		<category><![CDATA[publicidad adsense]]></category>

		<guid isPermaLink="false">http://familiaytu.com/blog/?p=584</guid>
		<description><![CDATA[Para colocar publicidad en la cabecera dle foro, de manera que está siga el formato de las tablas, vamos a hacer lo siguiente: Abrimos la plantilla overall_header.html (Estilos-&#62;Plantillas, seleccionamos el estilo a editar, y elegimos el archivo en la lista desplegable que aparece) y agregamos el siguiente código hasta el final (no debe quedar ninguna [...]]]></description>
		<wfw:commentRss>http://foro-c.com/blog/phpbb3-colocar-publicidad-adsense-en-la-cabecera-del-foro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LaTeX: que ponga imágenes donde yo quiero</title>
		<link>http://foro-c.com/blog/latex-que-ponga-imagenes-donde-yo-quiero/</link>
		<comments>http://foro-c.com/blog/latex-que-ponga-imagenes-donde-yo-quiero/#comments</comments>
		<pubDate>Sat, 07 Mar 2009 00:41:55 +0000</pubDate>
		<dc:creator>AntonioGDL</dc:creator>
				<category><![CDATA[Imágenes en LaTeX]]></category>
		<category><![CDATA[colocar]]></category>
		<category><![CDATA[float]]></category>
		<category><![CDATA[here]]></category>
		<category><![CDATA[imagen]]></category>
		<category><![CDATA[LaTeX]]></category>
		<category><![CDATA[poner]]></category>

		<guid isPermaLink="false">http://familiaytu.com/blog/?p=521</guid>
		<description><![CDATA[Para colocar una imagen exactamente en una posición debes poner en el preambulo de tu documento al paquete float usepackage{float} y cambiar el parámetro h por H (mayuscula) Ejemplo: begin{figure}[H] begin{center} includegraphics[height=2.0in,width=2.0in]{image1.eps} caption{Figura 1} label{fig:figura1} end{center} end{figure} y se posicionara donde tu pusiste la imagen y no donde a LaTeX se le antoje. Nota: También [...]]]></description>
		<wfw:commentRss>http://foro-c.com/blog/latex-que-ponga-imagenes-donde-yo-quiero/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

