Re: BulletedItem in europecv.layout wrong?

2012-10-15 Thread Nikos Alexandris
Nikos:

[...]

== == == == == == == >% ==
Oops!

> \ecvbullet*{Title}{\emph{Title of the thesis}}
> \ecvbullet*{Supervisors}{Names of supervisors}
> \ecvbullet*{Description}{{\small Description text}}

That is me experimenting with the layout file!  The *original* layout instructs 
like:

\ecvitem*{...}

== 8< == == == == == == ==

[...]


BulletedItem in europecv.layout wrong?

2012-10-15 Thread Nikos Alexandris
Hi LyXers,

I noticed that the  BulletedItem  in  europecv  is printed in the left 
margin/column (you-name-it -- MWE bellow).  I think the correct position to 
print bulleted items is within the main body (right, wider column) under and 
within an Item.  Isn't it?

In the europecv.layout [*] it is defined like:

--%<---
64  Style BulletedItem
65  CopyStyle   Item
66  LatexName   ecvitem*
67  LabelString "Bulleted Item:"
68  End
--->&--

I an pure .tex example file I have found on the net [1], in which bulleted 
items are called with "\item" (within "\begin{itemize} ... \end{itemize}" ), 
are printed correctly.  If my observation is correct, how can I alter/correct 
this for LyX users?

Thank you, Nikos

[*] http://lyx.lyx.org/trac/browser/lyxsvn/lyx-
devel/trunk/lib/layouts/europecv.layout?rev=18694

[1] http://r.pinson.free.fr/cv/old/europecv/RaphaelPinson.tex

[MWE]

--%<---
% Preview source code

%% LyX 2.0.2 created this file.  For more info, see http://www.lyx.org/.
%% Do not edit unless you really know what you are doing.
\documentclass[10pt,english,nologo]{europecv}
\usepackage[T1]{fontenc}
\usepackage[utf8x]{inputenc}
\usepackage{geometry}
\geometry{verbose,tmargin=2cm,bmargin=3cm,lmargin=2cm,rmargin=2cm}
\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{3}
\setlength{\parskip}{\medskipamount}
\setlength{\parindent}{0pt}

\makeatletter
%% User specified LaTeX commands.
\usepackage{graphicx}

% Define personal data
\ecvname{Testmann, Paul}
\ecvfootername{Paul Testmann}
\ecvnationality{Swiss}
\ecvdateofbirth{June 23, 1962}
\ecvaddress{Teststreet\newline 0 Nicecity\newline Switzerland}
\ecvemail{test...@testman.xx}
% the optional phnoe number is for the mobile
\ecvtelephone[+43(0)777 ]{+43(0)999 }

% for the gender and fax number
%\ecvgender{male}
%\ecvfax{fax}

% define text or image alignment and position:
% in this case the image is shifted 6cm to the right
\ecvbeforepicture{\hspace{6cm}}

% image
\ecvpicture[height=3cm]{CV-image}

% define text or space after the image
% in this case the following shifted 2cm to the image
\ecvafterpicture{\ecvspace{-2cm}}

% if you e.g. only want the page number to be printed in the footer
%\ecvpage{\thepage}
\makeatother
\usepackage{babel}
\begin{document}
\begin{europecv}{}

\ecvpersonalinfo{}{}

\ecvsection{Master Thesis}

\ecvbullet*{Title}{\emph{Title of the thesis}}

\ecvbullet*{Supervisors}{Names of supervisors}

\ecvbullet*{Description}{{\small Description text}}

\end{europecv}{}
\end{document}
--->%--