<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
<channel>
<title>theCAMPVS</title>

<link>http://thecampvs.com</link>
<description>Greek, Latin, and Classical Humanities</description>
<lastBuildDate>Fri, 30 Mar 2012 16:25:14 +0000</lastBuildDate>
<language>en</language>
<sy:updatePeriod>hourly</sy:updatePeriod>
<sy:updateFrequency>1</sy:updateFrequency>
<generator>http://wordpress.org/?v=3.3.2</generator>
<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/theCAMPVS" /><feedburner:info uri="thecampvs" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>theCAMPVS</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
<title>Formatting Poetry, v.2</title>
<link>http://feedproxy.google.com/~r/theCAMPVS/~3/-vgXLS0pLeQ/</link>
<comments>http://thecampvs.com/2012/03/29/formatting-poetry-v-2/#comments</comments>
<pubDate>Thu, 29 Mar 2012 22:52:50 +0000</pubDate>
<dc:creator>Dennis</dc:creator>
<category>
<![CDATA[Digital Humanities]]>
</category>
<category>
<![CDATA[Technology]]>
</category>
<guid isPermaLink="false">http://thecampvs.com/?p=3920</guid>
<description>
<![CDATA[I&#8217;ve worked out a new working standard for marking up verse through ordered lists in HTML using CSS. Special thanks go to Alun Salt for sharing my Google+ post on the subject and Markos Giannopoulos for responding to Alun&#8217;s share with a very helpful tip about using what&#8217;s called an nth-child selector to simplify the [...]]]>
</description>
<content:encoded><![CDATA[
<p>I&#8217;ve worked out a new working standard for marking up verse through ordered lists in HTML using CSS. Special thanks go to Alun Salt for sharing my Google+ post on the subject and Markos Giannopoulos for responding to Alun&#8217;s share with a very helpful tip about using what&#8217;s called an nth-child selector to simplify the markup.</p>
<p>You can hop over to my page on <a href="http://thecampvs.com/formatting-poetry/">Formatting Poetry</a> to see the old standard, and if you do you may notice that there was quite a bit less in the style sheet before.</p>
<p>While that may seem more advantageous, this new method seems to me to make far better use of CSS and eliminates a lot of unnecessary markup within LI (&#8216;list item&#8217;) tags. Using the current markup the only thing you&#8217;ll be modifying is the OL (&#8216;ordered list&#8217;) tag, whereas with the previous version you&#8217;d modify that as well as every fifth line and every indented line, which could amount to a daunting number of LI tags and a very tedious chore. That&#8217;s an awful lot of extra markup, and kind of flies in the face of what CSS is meant to do.</p>
<p><strong>THE NEW STANDARD</strong></p>
<p>So here&#8217;s the new portion to be put into your style sheet:</p>
<pre class="wp-code-highlight prettyprint">/* New CSS for Formatting Poetry, Dennis McHenry, 3/29/2012. Thanks to
   Markos Giannopoulos for the hint about nth-child selectors, and to
   David Primmer for suggesting CSS comments to clarify usage. */

/* VERSE (.vrs)
   This marks the ordered list as a snippet (or more) of verse to be
   set with a given margin and with numbers suppressed, which will be
   called out as desired by another class (i.e., .s16, etc.). */

ol.vrs {
        margin-left:5em;
        list-style:none;
        position:relative;
}

/* INDENT FROM THE 2ND LINE (.in2)
   For elegiacs (vel sim.). Verses are indented alternately beginning with the
   SECOND line cited. */

ol.in2 li:nth-child(2n+2) {
        text-indent:1.5em;
}

/* INDENT FROM THE 1ST LINE (.in1)
   For elegiacs (vel sim.), when the lines printed begin with an indented line. */

ol.in1 li:nth-child(2n+1) {
        text-indent:1.5em;
}

/* STARTING LINE (.s16, etc.)
   Show every line number which is a multiple of five, based on the final digit
   of the first line of the passage. If the final digit of the first line cited
   is a 1 or a 6, choose .s16; for a 2 or a 7 choose .s27; for a 3 or an 8
   choose .s38; for a 4 or a 9 choose .s49; and for a 5 or a 0 choose .s50. */

.s16 li:nth-child(5n+5) {
        list-style:decimal;
}

.s27 li:nth-child(5n+4) {
        list-style:decimal;
}

.s38 li:nth-child(5n+3) {
        list-style:decimal;
}

.s49 li:nth-child(5n+2) {
        list-style:decimal;
}

.s50 li:nth-child(5n+1) {
        list-style:decimal;
}</pre>
<p>The first indicates the fact that you&#8217;re dealing with verse, and the next two may be used indicate which lines should be indented.</p>
<p>The remainder are used to ensure that line numbers appear only on the fives and the zeros, no matter which starting number you use (but you absolutely must indicate the correct starting number). 16, for example, means that your starting verse number is or ends with a 1 or a 6, and it tells the browser to show the numbers only for the fifth line and every fifth line after it. If you use 38, then it tells your browser to show the numbers only for the third line and every fifth line after it. And so on.</p>
<p><strong>EXAMPLES</strong></p>
<p>Propertius 3.17, 14–16.</p>
<pre class="wp-code-highlight prettyprint">&lt;ol start=&quot;14&quot; class=&quot;vrs in1 s49&quot;&gt;
        &lt;li&gt;accersitus erit somnus in ossa mea,&lt;/li&gt;
        &lt;li&gt;ipse seram vites pangamque ex ordine colles,&lt;/li&gt;
        &lt;li&gt;quos carpant nullae me vigilante ferae.&lt;/li&gt;
&lt;/ol&gt;</pre>
<ol start="14" class="vrs in1 s49">
<li>accersitus erit somnus in ossa mea,</li>
<li>ipse seram vites pangamque ex ordine colles,</li>
<li>quos carpant nullae me vigilante ferae.</li>
</ol>
<p>Lucan 1.8—12.</p>
<pre class="wp-code-highlight prettyprint">&lt;ol start=&quot;9&quot; class=&quot;vrs s49&quot;&gt;
        &lt;li&gt;gentibus invisis Latium praebere cruorem?&lt;/li&gt;
        &lt;li&gt;cumque superba foret Babylon spolianda tropaeis&lt;/li&gt;
        &lt;li&gt;Ausoniis umbraque erraret Crassus inulta&lt;/li&gt;
        &lt;li&gt;bella geri placuit nullos habitura triumphos?&lt;/li&gt;
&lt;/ol&gt;</pre>
<ol start="9" class="vrs s49">
<li>gentibus invisis Latium praebere cruorem?</li>
<li>cumque superba foret Babylon spolianda tropaeis</li>
<li>Ausoniis umbraque erraret Crassus inulta</li>
<li>bella geri placuit nullos habitura triumphos?</li>
</ol>
<p>When I worked it out the first time I used an elegy by Housman, and the lines were formatted in this way (notice the extra, tedious markup on every other line):</p>
<p>The old markup:</p>
<pre class="wp-code-highlight prettyprint">&lt;ol class=&quot;poem&quot;&gt;
        &lt;li&gt;Signa pruinosae variantia luce cavernas&lt;/li&gt;
        &lt;li class=&quot;indent&quot;&gt;noctis et extincto lumina nata die&lt;/li&gt;
        &lt;li&gt;solo rure vagi lateque tacentibus arvis&lt;/li&gt;
        &lt;li class=&quot;indent&quot;&gt;surgere nos una vidimus oceano.&lt;/li&gt;
        &lt;li class=&quot;show&quot;&gt;vidimus: illa prius, cum luce carebat uterque,&lt;/li&gt;
        &lt;li class=&quot;indent&quot;&gt;viderat in latium prona poeta mare,&lt;/li&gt;
        &lt;li&gt;seque memor terra mortalem matre creatum&lt;/li&gt;
        &lt;li class=&quot;indent&quot;&gt;intulit aeternis carmina sideribus,&lt;/li&gt;
        &lt;li&gt;clara nimis post se genitis exempla daturus&lt;/li&gt;
        &lt;li class=&quot;insh&quot;&gt;ne quis forte deis fidere vellet homo.&lt;/li&gt;
&lt;/ol&gt;</pre>
<p>The new markup:</p>
<pre class="wp-code-highlight prettyprint">&lt;ol class=&quot;vrs in2 s16&quot;&gt;
        &lt;li&gt;Signa pruinosae variantia luce cavernas&lt;/li&gt;
        &lt;li&gt;noctis et extincto lumina nata die&lt;/li&gt;
        &lt;li&gt;solo rure vagi lateque tacentibus arvis&lt;/li&gt;
        &lt;li&gt;surgere nos una vidimus oceano.&lt;/li&gt;
        &lt;li&gt;vidimus: illa prius, cum luce carebat uterque,&lt;/li&gt;
        &lt;li&gt;viderat in latium prona poeta mare,&lt;/li&gt;
        &lt;li&gt;seque memor terra mortalem matre creatum&lt;/li&gt;
        &lt;li&gt;intulit aeternis carmina sideribus,&lt;/li&gt;
        &lt;li&gt;clara nimis post se genitis exempla daturus&lt;/li&gt;
        &lt;li&gt;ne quis forte deis fidere vellet homo.&lt;/li&gt;
&lt;/ol&gt;</pre>
<p>Notice how much simpler the new markup will be for anyone who chooses to employ it.</p>
<p>Result of the old markup:</p>
<ol class="poem">
<li>Signa pruinosae variantia luce cavernas</li>
<li class="indent">noctis et extincto lumina nata die</li>
<li>solo rure vagi lateque tacentibus arvis</li>
<li class="indent">surgere nos una vidimus oceano.</li>
<li class="show">vidimus: illa prius, cum luce carebat uterque,</li>
<li class="indent">viderat in latium prona poeta mare,</li>
<li>seque memor terra mortalem matre creatum</li>
<li class="indent">intulit aeternis carmina sideribus,</li>
<li>clara nimis post se genitis exempla daturus</li>
<li class="insh">ne quis forte deis fidere vellet homo.</li>
</ol>
<p>Result of the new markup:</p>
<ol class="vrs in2 s16">
<li>Signa pruinosae variantia luce cavernas</li>
<li>noctis et extincto lumina nata die</li>
<li>solo rure vagi lateque tacentibus arvis</li>
<li>surgere nos una vidimus oceano.</li>
<li>vidimus: illa prius, cum luce carebat uterque,</li>
<li>viderat in latium prona poeta mare,</li>
<li>seque memor terra mortalem matre creatum</li>
<li>intulit aeternis carmina sideribus,</li>
<li>clara nimis post se genitis exempla daturus</li>
<li>ne quis forte deis fidere vellet homo.</li>
</ol>
<p>It is virtually identical, but the really important thing is that it&#8217;s much easier to do. There are no superfluous class attributes clogging the LI tags, and once you understand them, the classes for the OL tag are pretty intuitive: vrs in2 16 = &#8220;a bit verse alternately indented beginning with the second line, and cited from a line number ending in a 1 or a 6.&#8221;</p>
<p>Just remember that if the starting line <em>is</em> something other than 1, you need to add the &#8216;start&#8217; attribute and the starting number, e.g., start=&#8221;2&#8243;, to the OL tag as in many of the examples above.</p>
<p><strong>ADDENDUM</strong></p>
<p>It can still be a little tedious to add the LI tag to each line of poetry, but if you&#8217;re using WordPress this can done automatically by pasting the block of text in the Visual Editor then highlighting the whole block and clicking the ordered list from the editing panel. If you switch back to the HTML Editor you&#8217;ll see that you have a perfectly formatted and very clean bit of markup, and need only add the starting number (if not 1) and the required classes.</p>
<p>Just beware of the Visual Editor potentially altering anything you might have done previously in the HTML Editor (e.g., those markup examples printed above became unreadable and had to be re-pasted).</p>
<p>I&#8217;m sure that other WYSIWYG editors can also make that part of the process a little easier, but otherwise the HTML editor is the way to go to ensure clean markup.</p>
<p><strong>BONUS</strong><br />
Maybe I&#8217;m getting carried away here, but I&#8217;ve added another optional bit that may be helpful for making a large block of verse a little easier to read: alternating background colors (white to light gray).</p>
<pre class="wp-code-highlight prettyprint">/* Slightly distinguish alternating lines with a light tone.
   Aesthetic option for easier web viewing of blocks of verse. */

ol.alt li:nth-child(2n+2) {
        background-color: #f9f9f9;
}</pre>
<p>Homer, Odyssey 20.492&#8211;501.</p>
<pre class="wp-code-highlight prettyprint">&lt;ol start=&quot;492&quot; class=&quot;vrs s27 alt&quot;&gt;
        &lt;li&gt;ὣς ἔφατ᾽, οὐδ᾽ ἀπίθησε φίλη τροφὸς Εὐρύκλεια,&lt;/li&gt;
        &lt;li&gt;ἤνεικεν δ᾽ ἄρα πῦρ καὶ θήϊον· αὐτὰρ Ὀδυσσεὺς&lt;/li&gt;
        &lt;li&gt;εὖ διεθείωσεν μέγαρον καὶ δῶμα καὶ αὐλήν.&lt;/li&gt;
        &lt;li&gt;γρηῢς δ᾽ αὖτ᾽ ἀπέβη διὰ δώματα κάλ᾽ Ὀδυσῆος&lt;/li&gt;
        &lt;li&gt;ἀγγελέουσα γυναιξὶ καὶ ὀτρυνέουσα νέεσθαι·&lt;/li&gt;
        &lt;li&gt;αἱ δ᾽ ἴσαν ἐκ μεγάροιο δάος μετὰ χερσὶν ἔχουσαι.&lt;/li&gt;
        &lt;li&gt;αἱ μὲν ἄρ᾽ ἀμφεχέοντο καὶ ἠσπάζοντ᾽ Ὀδυσῆα,&lt;/li&gt;
        &lt;li&gt;καὶ κύνεον ἀγαπαξόμεναι κεφαλήν τε καὶ ὤμους&lt;/li&gt;
        &lt;li&gt;χεῖράς τ᾽ αἰνύμεναι· τὸν δὲ γλυκὺς ἵμερος ἥιρει&lt;/li&gt;
        &lt;li&gt;κλαυθμοῦ καὶ στοναχῆς, γίγνωσκε δ᾽ ἄρα φρεσὶ πάσας.&lt;/li&gt;
&lt;/ol&gt;</pre>
<ol start="492" class="vrs s27 alt">
<li>ὣς ἔφατ᾽, οὐδ᾽ ἀπίθησε φίλη τροφὸς Εὐρύκλεια,</li>
<li>ἤνεικεν δ᾽ ἄρα πῦρ καὶ θήϊον· αὐτὰρ Ὀδυσσεὺς</li>
<li>εὖ διεθείωσεν μέγαρον καὶ δῶμα καὶ αὐλήν.</li>
<li>γρηῢς δ᾽ αὖτ᾽ ἀπέβη διὰ δώματα κάλ᾽ Ὀδυσῆος</li>
<li>ἀγγελέουσα γυναιξὶ καὶ ὀτρυνέουσα νέεσθαι·</li>
<li>αἱ δ᾽ ἴσαν ἐκ μεγάροιο δάος μετὰ χερσὶν ἔχουσαι.</li>
<li>αἱ μὲν ἄρ᾽ ἀμφεχέοντο καὶ ἠσπάζοντ᾽ Ὀδυσῆα,</li>
<li>καὶ κύνεον ἀγαπαξόμεναι κεφαλήν τε καὶ ὤμους</li>
<li>χεῖράς τ᾽ αἰνύμεναι· τὸν δὲ γλυκὺς ἵμερος ἥιρει</li>
<li>κλαυθμοῦ καὶ στοναχῆς, γίγνωσκε δ᾽ ἄρα φρεσὶ πάσας.</li>
</ol>


<p><a href="http://feedads.g.doubleclick.net/~a/TPLPbBdpHNFxq97gURwLEHxHsgs/0/da"><img src="http://feedads.g.doubleclick.net/~a/TPLPbBdpHNFxq97gURwLEHxHsgs/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/TPLPbBdpHNFxq97gURwLEHxHsgs/1/da"><img src="http://feedads.g.doubleclick.net/~a/TPLPbBdpHNFxq97gURwLEHxHsgs/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/theCAMPVS?a=-vgXLS0pLeQ:P6oWaYtqOT8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/theCAMPVS?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/theCAMPVS?a=-vgXLS0pLeQ:P6oWaYtqOT8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/theCAMPVS?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/theCAMPVS?a=-vgXLS0pLeQ:P6oWaYtqOT8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/theCAMPVS?i=-vgXLS0pLeQ:P6oWaYtqOT8:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/theCAMPVS?a=-vgXLS0pLeQ:P6oWaYtqOT8:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/theCAMPVS?i=-vgXLS0pLeQ:P6oWaYtqOT8:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/theCAMPVS?a=-vgXLS0pLeQ:P6oWaYtqOT8:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/theCAMPVS?i=-vgXLS0pLeQ:P6oWaYtqOT8:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/theCAMPVS?a=-vgXLS0pLeQ:P6oWaYtqOT8:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/theCAMPVS?i=-vgXLS0pLeQ:P6oWaYtqOT8:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/theCAMPVS/~4/-vgXLS0pLeQ" height="1" width="1"/>]]></content:encoded>
<wfw:commentRss>http://thecampvs.com/2012/03/29/formatting-poetry-v-2/feed/</wfw:commentRss>
<slash:comments>0</slash:comments>
<feedburner:origLink>http://thecampvs.com/2012/03/29/formatting-poetry-v-2/</feedburner:origLink></item>
<item>
<title>Linux Latīnē</title>
<link>http://feedproxy.google.com/~r/theCAMPVS/~3/NDJTuvaYB9M/</link>
<comments>http://thecampvs.com/2012/03/27/linux-latine/#comments</comments>
<pubDate>Tue, 27 Mar 2012 17:30:29 +0000</pubDate>
<dc:creator>Dennis</dc:creator>
<category>
<![CDATA[Digital Humanities]]>
</category>
<category>
<![CDATA[Technology]]>
</category>
<guid isPermaLink="false">http://thecampvs.com/?p=3904</guid>
<description>
<![CDATA[I&#8217;ve just jettisoned Windows XP from my ten year old PC and installed Linux Mint. I was pretty excited to learn how easy it was to designate a Compose key, which &#8212; together with a hyphen before the vowels a, e, i, o, and u &#8212; produces a vowel with a macron (so long as [...]]]>
</description>
<content:encoded><![CDATA[
<p>I&#8217;ve just jettisoned Windows XP from my <a href="http://support.dell.com/support/edocs/systems/dim8200/specs.htm">ten year old PC</a> and installed <a href="http://linuxmint.com/">Linux Mint</a>.</p>
<p>I was pretty excited to learn how easy it was to designate a Compose key, which &#8212; together with a hyphen before the vowels a, e, i, o, and u &#8212; produces a vowel with a macron (so long as you use the U.S. international keyboard).</p>
<p>It&#8217;s just as simple as it is on a Mac, where the sequence is alt-a followed by the desired vowel.</p>
<p>Unfortunately the effort to translate the <a href="http://live.gnome.org/Latin">Gnome UI</a> into Latin has never seemed to catch on.</p>
<p>Any other classicists out there using some form of Linux? It&#8217;s an interesting platform that I should&#8217;ve jumped into years ago.</p>
<p>I&#8217;m itching to learn a bit of programming along the way, and hope to do something useful in classics in the process. I&#8217;ve already got a few ideas, but there&#8217;s a long road ahead.</p>


<p><a href="http://feedads.g.doubleclick.net/~a/wPBiyrSCPyqUXYNKyZJJ6IB8bmg/0/da"><img src="http://feedads.g.doubleclick.net/~a/wPBiyrSCPyqUXYNKyZJJ6IB8bmg/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/wPBiyrSCPyqUXYNKyZJJ6IB8bmg/1/da"><img src="http://feedads.g.doubleclick.net/~a/wPBiyrSCPyqUXYNKyZJJ6IB8bmg/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/theCAMPVS?a=NDJTuvaYB9M:j5SH2lvt46s:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/theCAMPVS?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/theCAMPVS?a=NDJTuvaYB9M:j5SH2lvt46s:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/theCAMPVS?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/theCAMPVS?a=NDJTuvaYB9M:j5SH2lvt46s:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/theCAMPVS?i=NDJTuvaYB9M:j5SH2lvt46s:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/theCAMPVS?a=NDJTuvaYB9M:j5SH2lvt46s:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/theCAMPVS?i=NDJTuvaYB9M:j5SH2lvt46s:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/theCAMPVS?a=NDJTuvaYB9M:j5SH2lvt46s:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/theCAMPVS?i=NDJTuvaYB9M:j5SH2lvt46s:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/theCAMPVS?a=NDJTuvaYB9M:j5SH2lvt46s:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/theCAMPVS?i=NDJTuvaYB9M:j5SH2lvt46s:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/theCAMPVS/~4/NDJTuvaYB9M" height="1" width="1"/>]]></content:encoded>
<wfw:commentRss>http://thecampvs.com/2012/03/27/linux-latine/feed/</wfw:commentRss>
<slash:comments>0</slash:comments>
<feedburner:origLink>http://thecampvs.com/2012/03/27/linux-latine/</feedburner:origLink></item>
<item>
<title>Hypermetric verses</title>
<link>http://feedproxy.google.com/~r/theCAMPVS/~3/dmr_I4dxUJw/</link>
<comments>http://thecampvs.com/2011/11/16/hypermetric-verses/#comments</comments>
<pubDate>Thu, 17 Nov 2011 03:26:03 +0000</pubDate>
<dc:creator>Dennis</dc:creator>
<category>
<![CDATA[Literature]]>
</category>
<category>
<![CDATA[Scholarship]]>
</category>
<guid isPermaLink="false">http://thecampvs.com/?p=3713</guid>
<description>
<![CDATA[I thought others might find it useful to have collected in one place all instances of hypermetric verses in classical Latin poetry (i.e., lines that have an &#8216;extra&#8217; syllable at the end that elides with the opening vowel of the following line). Lucilius, fragment 17. 6: (cf. Vergil, Aeneid 5. 422) &#8230; magna ossa lacertique [...]]]>
</description>
<content:encoded><![CDATA[
<p>I thought others might find it useful to have collected in one place all instances of hypermetric verses in classical Latin poetry (i.e., lines that have an &#8216;extra&#8217; syllable at the end that elides with the opening vowel of the following line).</p>
<div style="background-color: #eeeeee;">Lucilius, fragment 17. 6: (cf. Vergil, <em>Aeneid</em> 5. 422)</p>
<ol start="6" class="poem">
<li>&#8230; magna ossa lacertique</li>
<li>apparent homini &#8230;</li>
</ol>
</div>
<p>Lucretius, <em>De rerum natura</em> 5. 849–50:</p>
<ol start="849" class="poem">
<li>multa videmus enim rebus concurrere debere,</li>
<li class="show">ut propagando possint procudere saecla</li>
</ol>
<div style="background-color: #eeeeee;">Catullus, carmen 64. 298:</p>
<ol start="298" class="poem">
<li>inde pater divum sancta cum coniuge natisque</li>
<li>advenit caelo, te solum, Phoebe, relinquens</li>
</ol>
</div>
<p>Catullus, carmen 115. 5:</p>
<ol start="5" class="poem">
<li class="show">prata arva ingentes silvas saltusque paludesque</li>
<li class="indent">usque ad Hyperboreos et mare ad Oceanum?</li>
</ol>
<div style="background-color: #eeeeee;">Horace, <em>Satires</em> 1. 4. 96:</p>
<ol start="96" class="poem">
<li>me Capitolinus convictore usus amicoque</li>
<li>a puero est causaque mea permulta rogatus</li>
</ol>
</div>
<p>Horace, <em>Satires</em> 1. 6. 102:</p>
<ol start="102" class="poem">
<li>et comes alter, uti ne solus rusve peregreve</li>
<li>exirem, plures calones atque caballi</li>
</ol>
<div style="background-color: #eeeeee;">Vergil, <em>Georgics</em> 1. 295:</p>
<ol start="295" class="poem">
<li class="show">aut dulcis musti Volcano decoquit umorem</li>
<li>et foliis undam trepidi despumat aeni.</li>
</ol>
</div>
<p>Vergil, <em>Georgics</em> 2. 69:</p>
<ol start="69" class="poem">
<li>inseritur vero et fetu nucis arbutus horrida,</li>
<li class="show">et steriles platani malos gessere valentis,</li>
</ol>
<div style="background-color: #eeeeee;">Vergil, <em>Georgics</em> 2. 344:</p>
<ol start="344" class="poem">
<li>si non tanta quies iret frigusque caloremque</li>
<li class="show">inter, et exciperet caeli indulgentia terras.</li>
</ol>
</div>
<p>Vergil, <em>Georgics</em> 2. 443:</p>
<ol start="443" class="poem">
<li>navigiis pinus, domibus cedrumque cupressosque;</li>
<li>hinc radios trivere rotis, hinc tympana plaustris</li>
</ol>
<div style="background-color: #eeeeee;">Vergil, <em>Georgics</em> 3. 242:</p>
<ol start="242" class="poem">
<li>Omne adeo genus in terris hominumque ferarumque</li>
<li>et genus aequoreum, pecudes pictaeque volucres,</li>
</ol>
</div>
<p>Vergil, <em>Georgics</em> 3. 377:</p>
<ol start="377" class="poem">
<li>otia agunt terra, congestaque robora totasque</li>
<li>advolvere focis ulmos ignique dedere.</li>
</ol>
<div style="background-color: #eeeeee;">Vergil, <em>Georgics</em> 3. 449:</p>
<ol start="449" class="poem">
<li>et spumas miscent argenti vivaque sulpura</li>
<li class="show">Idaeasque pices et pinguis unguine ceras</li>
</ol>
</div>
<p>Vergil, <em>Aeneid</em> 1. 332:</p>
<ol start="332" class="poem">
<li>iactemur, doceas. Ignari hominumque locorumque</li>
<li>erramus, vento huc vastis et fluctibus acti</li>
</ol>
<div style="background-color: #eeeeee;">Vergil, <em>Aeneid</em> 1. 448:</p>
<ol start="448" class="poem">
<li>aerea cui gradibus surgebant limina, nexaeque</li>
<li>aere trabes, foribus cardo stridebat aenis.</li>
</ol>
</div>
<p>Vergil, <em>Aeneid</em> 2. 745:</p>
<ol start="745" class="poem">
<li class="show">quem non incusavi amens hominumque deorumque,</li>
<li>aut quid in eversa vidi crudelius urbe?</li>
</ol>
<div style="background-color: #eeeeee;">Vergil, <em>Aeneid</em> 4. 558:</p>
<ol start="558" class="poem">
<li>omnia Mercurio similis, vocemque coloremque</li>
<li>et crinis flavos et membra decora iuventa</li>
</ol>
</div>
<p>Vergil, <em>Aeneid</em> 4. 629:</p>
<ol start="629" class="poem">
<li>imprecor, arma armis: pugnent ipsique nepotesque.</li>
<li class="show">Haec ait, et partis animum versabat in omnis</li>
</ol>
<div style="background-color: #eeeeee;">Vergil, <em>Aeneid</em> 5. 422:</p>
<ol start="422" class="poem">
<li>et magnos membrorum artus, magna ossa lacertosque</li>
<li>exuit atque ingens media consistit harena.</li>
</ol>
</div>
<p>Vergil, <em>Aeneid</em> 5. 753:</p>
<ol start="753" class="poem">
<li>robora navigiis, aptant remosque rudentisque,</li>
<li>exigui numero, sed bello vivida virtus.</li>
</ol>
<div style="background-color: #eeeeee;">Vergil, <em>Aeneid</em> 6. 602:</p>
<ol start="602" class="poem">
<li>quos super atra silex iam iam lapsura cadentique</li>
<li>imminet adsimilis; lucent genialibus altis</li>
</ol>
</div>
<p>Vergil, <em>Aeneid</em> 7. 160:</p>
<ol start="160" class="poem">
<li class="show">iamque iter emensi turris ac tecta Latinorum</li>
<li>ardua cernebant iuvenes muroque subibant.</li>
</ol>
<div style="background-color: #eeeeee;">Vergil, <em>Aeneid</em> 7. 470:</p>
<ol start="470" class="poem">
<li class="show">se satis ambobus Teucrisque venire Latinisque.</li>
<li>haec ubi dicta dedit divosque in vota vocavit</li>
</ol>
</div>
<p>Vergil, <em>Aeneid</em> 8. 228:</p>
<ol start="228" class="poem">
<li>ecce furens animis aderat Tirynthius omnemque</li>
<li>accessum lustrans huc ora ferebat et illuc</li>
</ol>
<div style="background-color: #eeeeee;">Vergil, <em>Aeneid</em> 9. 650:</p>
<ol start="650" class="poem">
<li class="show">omnia longaevo similis vocemque coloremque</li>
<li>et crinis albos et saeva sonoribus arma</li>
</ol>
</div>
<p>Vergil, <em>Aeneid</em> 10. 781:</p>
<ol start="781" class="poem">
<li>sternitur infelix alieno vulnere, caelumque</li>
<li>aspicit et dulcis moriens reminiscitur Argos.</li>
</ol>
<div style="background-color: #eeeeee;">Vergil, <em>Aeneid</em> 10. 895:</p>
<ol start="895" class="poem">
<li class="show">clamore incendunt caelum Troesque Latinique.</li>
<li>advolat Aeneas vaginaque eripit ensem</li>
</ol>
</div>
<p>Vergil, <em>Aeneid</em> 11. 609:</p>
<ol start="609" class="poem">
<li>substiterat: subito erumpunt clamore furentisque</li>
<li class="show">exhortantur equos, fundunt simul undique tela</li>
</ol>
<div style="background-color: #eeeeee;">Ovid, <em>Metamorphoses</em> 4. 11:</p>
<ol start="11" class="poem">
<li>turaque dant Bacchumque vocant Bromiumque Lyaeumque</li>
<li>ignigenamque satumque iterum solumque bimatrem</li>
</ol>
</div>
<p>Ovid, <em>Metamorphoses</em> 4. 780:</p>
<ol start="780" class="poem">
<li class="show">perque vias vidisse hominum simulacra ferarumque</li>
<li>in silicem ex ipsis visa conversa Medusa</li>
</ol>
<div style="background-color: #eeeeee;">Ovid, <em>Metamorphoses</em> 6. 507:</p>
<ol start="507" class="poem">
<li>inter seque datas iunxit natamque nepotemque</li>
<li>absentes pro se memori rogat ore salutent</li>
</ol>
</div>
<p>Do with that what you will. (Including, of course, correcting me if I&#8217;m wrong or missed anything.)</p>


<p><a href="http://feedads.g.doubleclick.net/~a/gLaCGqD8qx-T980hB3RDwdEkrPU/0/da"><img src="http://feedads.g.doubleclick.net/~a/gLaCGqD8qx-T980hB3RDwdEkrPU/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/gLaCGqD8qx-T980hB3RDwdEkrPU/1/da"><img src="http://feedads.g.doubleclick.net/~a/gLaCGqD8qx-T980hB3RDwdEkrPU/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/theCAMPVS?a=dmr_I4dxUJw:wtARlxWqf1Y:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/theCAMPVS?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/theCAMPVS?a=dmr_I4dxUJw:wtARlxWqf1Y:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/theCAMPVS?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/theCAMPVS?a=dmr_I4dxUJw:wtARlxWqf1Y:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/theCAMPVS?i=dmr_I4dxUJw:wtARlxWqf1Y:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/theCAMPVS?a=dmr_I4dxUJw:wtARlxWqf1Y:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/theCAMPVS?i=dmr_I4dxUJw:wtARlxWqf1Y:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/theCAMPVS?a=dmr_I4dxUJw:wtARlxWqf1Y:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/theCAMPVS?i=dmr_I4dxUJw:wtARlxWqf1Y:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/theCAMPVS?a=dmr_I4dxUJw:wtARlxWqf1Y:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/theCAMPVS?i=dmr_I4dxUJw:wtARlxWqf1Y:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/theCAMPVS/~4/dmr_I4dxUJw" height="1" width="1"/>]]></content:encoded>
<wfw:commentRss>http://thecampvs.com/2011/11/16/hypermetric-verses/feed/</wfw:commentRss>
<slash:comments>4</slash:comments>
<feedburner:origLink>http://thecampvs.com/2011/11/16/hypermetric-verses/</feedburner:origLink></item>
<item>
<title>GapVis: Visual Interface for Reading Ancient Texts</title>
<link>http://feedproxy.google.com/~r/theCAMPVS/~3/JZ3DkqAKqf4/</link>
<comments>http://thecampvs.com/2011/11/15/tech-tuesdays/#comments</comments>
<pubDate>Tue, 15 Nov 2011 22:00:00 +0000</pubDate>
<dc:creator>Dennis</dc:creator>
<category>
<![CDATA[Digital Humanities]]>
</category>
<category>
<![CDATA[History]]>
</category>
<category>
<![CDATA[Pedagogy]]>
</category>
<category>
<![CDATA[Technology]]>
</category>
<category>
<![CDATA[Uncategorized]]>
</category>
<guid isPermaLink="false">http://thecampvs.com/?p=3748</guid>
<description>
<![CDATA[You may know that I teach Latin in a public high school, and that my school is in the midst of a major technology push involving $2.4 million invested in MacBooks for teachers and iPads for all. Of course there&#8217;s the usual resistance — or at least disconnect — from faculty who are uncomfortable with [...]]]>
</description>
<content:encoded><![CDATA[
<p>You may know that I teach Latin in a public high school, and that my school is in the midst of a major technology push involving $2.4 million invested in MacBooks for teachers and iPads for all. Of course there&#8217;s the usual resistance — or at least disconnect — from faculty who are uncomfortable with technology. But I&#8217;ve made it a priority to find things that students can do to enrich their experience, and in my searches for iPad compatible site I was very pleasantly surprised to find GapVis.</p>
<p><a href="http://nrabinowitz.github.com/gapvis/index.html#index" title="GapVis" target="_blank">GapVis</a> is a product of GAP, the Google Ancient Places project, and has its roots in the <a href="http://www.open.ac.uk/Arts/hestia/index.html" title="HESTIA" target="_blank">HESTIA project</a>, which focused on plotting places in Herodotus. GapVis expands on that idea by pulling texts on ancient history from Google Books and offering the reader a visualization of the places mentioned via Google Maps.</p>
<div id="attachment_3812" class="wp-caption aligncenter" style="width: 330px"><a href="http://thecampvs.com/wp-content/uploads/2011/11/gapvis-1.png?9d7bd4"><img src="http://thecampvs.com/wp-content/uploads/2011/11/gapvis-1.png?9d7bd4" alt="GapVis reading view" title="gapvis-1" width="320" height="337" class="size-full wp-image-3812" /></a><p class="wp-caption-text">The &quot;reading view&quot; of the Histories of Tacitus, from GapVis.</p></div>
<p>I was so happy to find a site like this because, as any one who has read ancient history knows, without careful attention to geography, it can quickly become very difficult to follow texts with any real precision or deep understanding. Visualization is key, and is one of the reasons the Robert B. Strassler&#8217;s &#8216;Landmark&#8217; series has been both so popular and so helpful.</p>
<p>GapVis can not yet approach what the &#8216;Landmark&#8217; editions of ancient historians offer, such as carefully edited maps, scholarly appendices, and contemporary translations, but that&#8217;s not really the point. I think that what makes GapVis such a treasure is its interactive nature and its potential, even in a beta offering.</p>
<p>The texts are often problematic, considering the state of OCR text from scanned books that haven&#8217;t been carefully reviewed. And often places are misidentified by similarities in personal names, etc. But this can lead to productive activities for students and ensure a close reading of texts. Students may be assigned particular passages and asked to perform certain tasks, including checking the place identification and reporting problems to the GapVis team.</p>
<p>I think this is a tool to watch and one that has pedagogical potential even today. I&#8217;m looking forward to see where it goes.</p>


<p><a href="http://feedads.g.doubleclick.net/~a/SWmC7xDpdZ_Nd7_nLXil3d2Qdpo/0/da"><img src="http://feedads.g.doubleclick.net/~a/SWmC7xDpdZ_Nd7_nLXil3d2Qdpo/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/SWmC7xDpdZ_Nd7_nLXil3d2Qdpo/1/da"><img src="http://feedads.g.doubleclick.net/~a/SWmC7xDpdZ_Nd7_nLXil3d2Qdpo/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/theCAMPVS?a=JZ3DkqAKqf4:Rf_XhDeuK0I:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/theCAMPVS?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/theCAMPVS?a=JZ3DkqAKqf4:Rf_XhDeuK0I:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/theCAMPVS?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/theCAMPVS?a=JZ3DkqAKqf4:Rf_XhDeuK0I:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/theCAMPVS?i=JZ3DkqAKqf4:Rf_XhDeuK0I:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/theCAMPVS?a=JZ3DkqAKqf4:Rf_XhDeuK0I:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/theCAMPVS?i=JZ3DkqAKqf4:Rf_XhDeuK0I:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/theCAMPVS?a=JZ3DkqAKqf4:Rf_XhDeuK0I:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/theCAMPVS?i=JZ3DkqAKqf4:Rf_XhDeuK0I:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/theCAMPVS?a=JZ3DkqAKqf4:Rf_XhDeuK0I:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/theCAMPVS?i=JZ3DkqAKqf4:Rf_XhDeuK0I:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/theCAMPVS/~4/JZ3DkqAKqf4" height="1" width="1"/>]]></content:encoded>
<wfw:commentRss>http://thecampvs.com/2011/11/15/tech-tuesdays/feed/</wfw:commentRss>
<slash:comments>0</slash:comments>
<feedburner:origLink>http://thecampvs.com/2011/11/15/tech-tuesdays/</feedburner:origLink></item>
<item>
<title>A scholar’s riposte</title>
<link>http://feedproxy.google.com/~r/theCAMPVS/~3/wFzsbSbO5ic/</link>
<comments>http://thecampvs.com/2011/11/14/a-scholars-riposte/#comments</comments>
<pubDate>Mon, 14 Nov 2011 14:00:00 +0000</pubDate>
<dc:creator>Dennis</dc:creator>
<category>
<![CDATA[Scholarship]]>
</category>
<guid isPermaLink="false">http://thecampvs.com/?p=3747</guid>
<description>
<![CDATA[Richard Porson, who — along with Bentley and Housman, makes one third of the trinity of British textual critics — was apparently as much a wit as he was a critic. And as often happens with scholar&#8217;s of famous wit, stories are told (whether true or not). I really like this one: &#8220;Dr. Porson,&#8221; said [...]]]>
</description>
<content:encoded><![CDATA[
<p>Richard <a href="http://en.wikipedia.org/wiki/Porson" title="Porson" target="_blank">Porson</a>, who — along with <a href="http://en.wikipedia.org/wiki/Richard_Bentley" title="Bentley" target="_blank">Bentley</a> and <a href="http://en.wikipedia.org/wiki/A._E._Housman" title="Housman" target="_blank">Housman</a>, makes one third of the trinity of British textual critics — was apparently as much a wit as he was a critic. And as often happens with scholar&#8217;s of famous wit, stories are told (whether true or not). I really like <a href="http://books.google.com/books?id=CmU9AAAAYAAJ&#038;pg=PA347#v=onepage&#038;q&#038;f=false" title="Porson's wit" target="_blank">this one</a><a href="http://thecampvs.com/wp-content/uploads/2011/11/porson.jpg?9d7bd4"><img src="http://thecampvs.com/wp-content/uploads/2011/11/porson.jpg?9d7bd4" alt="" title="porson" width="250" height="302" class="alignright size-full wp-image-3819" /></a>:</p>
<blockquote><p>&#8220;Dr. Porson,&#8221; said a gentleman to the great &#8220;Grecian,&#8221; with whom he had been disputing — &#8220;Dr. Porson, my opinion of you is most contemptible.&#8221; &#8221; Sir,&#8221; returned the doctor, &#8221; I never knew an opinion of yours that was not contemptible.&#8221;</p></blockquote>
<p>Oh snap!</p>


<p><a href="http://feedads.g.doubleclick.net/~a/GMg6dzeuH-k8TWUVd9MZYsLkGNc/0/da"><img src="http://feedads.g.doubleclick.net/~a/GMg6dzeuH-k8TWUVd9MZYsLkGNc/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/GMg6dzeuH-k8TWUVd9MZYsLkGNc/1/da"><img src="http://feedads.g.doubleclick.net/~a/GMg6dzeuH-k8TWUVd9MZYsLkGNc/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/theCAMPVS?a=wFzsbSbO5ic:9rTty8xKQsA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/theCAMPVS?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/theCAMPVS?a=wFzsbSbO5ic:9rTty8xKQsA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/theCAMPVS?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/theCAMPVS?a=wFzsbSbO5ic:9rTty8xKQsA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/theCAMPVS?i=wFzsbSbO5ic:9rTty8xKQsA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/theCAMPVS?a=wFzsbSbO5ic:9rTty8xKQsA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/theCAMPVS?i=wFzsbSbO5ic:9rTty8xKQsA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/theCAMPVS?a=wFzsbSbO5ic:9rTty8xKQsA:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/theCAMPVS?i=wFzsbSbO5ic:9rTty8xKQsA:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/theCAMPVS?a=wFzsbSbO5ic:9rTty8xKQsA:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/theCAMPVS?i=wFzsbSbO5ic:9rTty8xKQsA:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/theCAMPVS/~4/wFzsbSbO5ic" height="1" width="1"/>]]></content:encoded>
<wfw:commentRss>http://thecampvs.com/2011/11/14/a-scholars-riposte/feed/</wfw:commentRss>
<slash:comments>0</slash:comments>
<feedburner:origLink>http://thecampvs.com/2011/11/14/a-scholars-riposte/</feedburner:origLink></item>
</channel>
</rss><!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching 1/27 queries in 0.220 seconds using disk: basic
Object Caching 395/456 objects using disk: basic

Served from: thecampvs.com @ 2012-05-23 00:00:27 -->

