[pypy-svn] r63537 - pypy/extradoc/talk/icooolps2009-dotnet

antocuni at codespeak.net antocuni at codespeak.net
Thu Apr 2 15:16:48 CEST 2009


Author: antocuni
Date: Thu Apr  2 15:16:44 2009
New Revision: 63537

Modified:
   pypy/extradoc/talk/icooolps2009-dotnet/clibackend.tex
   pypy/extradoc/talk/icooolps2009-dotnet/flexswitch1.png
   pypy/extradoc/talk/icooolps2009-dotnet/flexswitch2.png
   pypy/extradoc/talk/icooolps2009-dotnet/paper.tex
Log:
try to make images and listings fit into a column



Modified: pypy/extradoc/talk/icooolps2009-dotnet/clibackend.tex
==============================================================================
--- pypy/extradoc/talk/icooolps2009-dotnet/clibackend.tex	(original)
+++ pypy/extradoc/talk/icooolps2009-dotnet/clibackend.tex	Thu Apr  2 15:16:44 2009
@@ -52,8 +52,8 @@
 
 \begin{figure}[h]
 \begin{center}
-\includegraphics[height=5cm]{flexswitch1}
-\includegraphics[height=5cm]{flexswitch2}
+\includegraphics[height=4.5cm]{flexswitch1}
+\includegraphics[height=4.5cm]{flexswitch2}
 \caption{An example of a flexswitch evolution: in the picture on the
   right a new block has been dynamically added.}\label{flexswitch-fig}
 \end{center}
@@ -258,11 +258,13 @@
 The following snippet shows the special case of integer flexswitches.
 \begin{small}
 \begin{lstlisting}[language={[Sharp]C}] 
-public class IntLowLevelFlexSwitch:BaseLowLevelFlexSwitch {
+public class IntLowLevelFlexSwitch: 
+                        BaseLowLevelFlexSwitch {
   public uint default_blockid = 0xFFFFFFFF;
   public int numcases = 0;
   public int[] values = new int[4];
-  public FlexSwitchCase[] cases = new FlexSwitchCase[4];
+  public FlexSwitchCase[] cases = 
+                          new FlexSwitchCase[4];
 
   public void add_case(int value, FlexSwitchCase c) {
     ...

Modified: pypy/extradoc/talk/icooolps2009-dotnet/flexswitch1.png
==============================================================================
Binary files. No diff available.

Modified: pypy/extradoc/talk/icooolps2009-dotnet/flexswitch2.png
==============================================================================
Binary files. No diff available.

Modified: pypy/extradoc/talk/icooolps2009-dotnet/paper.tex
==============================================================================
--- pypy/extradoc/talk/icooolps2009-dotnet/paper.tex	(original)
+++ pypy/extradoc/talk/icooolps2009-dotnet/paper.tex	Thu Apr  2 15:16:44 2009
@@ -12,7 +12,7 @@
         frame=none,
         stringstyle=\color{blue},
         fancyvrb=true,
-        xleftmargin=20pt,xrightmargin=20pt,
+        xleftmargin=10pt,xrightmargin=10pt,
         showstringspaces=false}
 
 



More information about the Pypy-commit mailing list