%Original author :Theodore P.~Pavlic
%Author: Frédéric CHEVALIER
%Created in: 2009-11-29
%Modified in: 2011-04-14

%source: http://links.tedpavlic.com/tex/tpavlic_cv.tex

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% NOTE: If you find that it says                                     %%
%%                                                                    %%
%%                           1 of ??                                  %%
%%                                                                    %%
%% at the bottom of your first page, this means that the AUX file     %%
%% was not available when you ran LaTeX on this source. Simply RERUN  %% 
%% LaTeX to get the ``??'' replaced with the number of the last page  %% 
%% of the document. The AUX file will be generated on the first run   %%
%% of LaTeX and used on the second run to fill in all of the          %%
%% references.                                                        %%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

%%%%%%%%%%%%%%%%%%%%%%%%%%%% Document Setup %%%%%%%%%%%%%%%%%%%%%%%%%%%%

% Don't like 10pt? Try 11pt or 12pt
\documentclass[10pt]{article}

\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}

% This is a helpful package that puts math inside length specifications
\usepackage{calc}

% This is a helpful package that puts color in your document
\usepackage{xcolor}

% Layout: Puts the section titles on left side of page
\reversemarginpar

%
%         PAPER SIZE, PAGE NUMBER, AND DOCUMENT LAYOUT NOTES:
%
% The next \usepackage line changes the layout for CV style section
% headings as marginal notes. It also sets up the paper size as either
% letter or A4. By default, letter was used. If A4 paper is desired,
% comment out the letterpaper lines and uncomment the a4paper lines.
%
% As you can see, the margin widths and section title widths can be
% easily adjusted.
%
% ALSO: Notice that the includefoot option can be commented OUT in order
% to put the PAGE NUMBER *IN* the bottom margin. This will make the
% effective text area larger.
%
% IF YOU WISH TO REMOVE THE ``of LASTPAGE'' next to each page number,
% see the note about the +LP and -LP lines below. Comment out the +LP
% and uncomment the -LP.
%
% IF YOU WISH TO REMOVE PAGE NUMBERS, be sure that the includefoot line
% is uncommented and ALSO uncomment the \pagestyle{empty} a few lines
% below.
%

%% Use these lines for letter-sized paper
%\usepackage[paper=letterpaper,
%            %includefoot, % Uncomment to put page number above margin
%            marginparwidth=1.2in,     % Length of section titles
%            marginparsep=.05in,       % Space between titles and text
%            margin=1in,               % 1 inch margins
%            includemp]{geometry}

%% Use these lines for A4-sized paper
\usepackage[paper=a4paper,
            %includefoot, % Uncomment to put page number above margin
            marginparwidth=30.5mm,    % Length of section titles
            marginparsep=1.5mm,       % Space between titles and text
            margin=22.5mm,              % 25mm margins
            includemp]{geometry}

%% More layout: Get rid of indenting throughout entire document
\setlength{\parindent}{0in}

%% This gives us fun enumeration environments. compactitem will be nice.
\usepackage{paralist}

%% Reference the last page in the page number
%
% NOTE: comment the +LP line and uncomment the -LP line to have page
%       numbers without the ``of ##'' last page reference)
%
% NOTE: uncomment the \pagestyle{empty} line to get rid of all page
%       numbers (make sure includefoot is commented out above)
%
\usepackage{fancyhdr,lastpage}
\pagestyle{fancy}
%\pagestyle{empty}      % Uncomment this to get rid of page numbers
\fancyhf{}\renewcommand{\headrulewidth}{0pt}
\fancyfootoffset{\marginparsep+\marginparwidth}
\newlength{\footpageshift}
\setlength{\footpageshift}
          {0.5\textwidth+0.5\marginparsep+0.5\marginparwidth-2in}
\lfoot{\hspace{\footpageshift}%
       \parbox{4in}{\, \hfill %
                    \arabic{page} sur \protect\pageref*{LastPage} % +LP
%                    \arabic{page}                               % -LP
                    \hfill \,}}

% Finally, give us PDF bookmarks
\usepackage{color,hyperref}
\definecolor{darkblue}{rgb}{0.0,0.0,0.3}
\hypersetup{colorlinks,breaklinks,
            linkcolor=darkblue,urlcolor=darkblue,
            anchorcolor=darkblue,citecolor=darkblue}

%%%%%%%%%%%%%%%%%%%%%%%% End Document Setup %%%%%%%%%%%%%%%%%%%%%%%%%%%%


%%%%%%%%%%%%%%%%%%%%%%%%%%% Helper Commands %%%%%%%%%%%%%%%%%%%%%%%%%%%%

% The title (name) with a horizontal rule under it
%
% Usage: \makeheading{name}
%
% Place at top of document. It should be the first thing.
\newcommand{\makeheading}[1]%
        {\hspace*{-\marginparsep minus \marginparwidth}%
         \begin{minipage}[t]{\textwidth+\marginparwidth+\marginparsep}%
                {\large \bfseries #1}\\[-0.15\baselineskip]%
                 \rule{\columnwidth}{1pt}%
         \end{minipage}}

% The section headings
%
% Usage: \section{section name}
%
% Follow this section IMMEDIATELY with the first line of the section
% text. Do not put whitespace in between. That is, do this:
%
%       \section{My Information}
%       Here is my information.
%
% and NOT this:
%
%       \section{My Information}
%
%       Here is my information.
%
% Otherwise the top of the section header will not line up with the top
% of the section. Of course, using a single comment character (%) on
% empty lines allows for the function of the first example with the
% readability of the second example.
\renewcommand{\section}[2]%
        {\pagebreak[2]\vspace{2.5\baselineskip}%
         \phantomsection\addcontentsline{toc}{section}{#1}%
         \hspace{0in}%
         \marginpar{
%         \raggedright \scshape \textcolor{blue}{#1}}#2}%colored section
         \raggedright \scshape #1}#2}%classical section

% An itemize-style list with lots of space between items
\newenvironment{outerlist}[1][\enskip\textbullet]%
        {\begin{itemize}[#1]}{\end{itemize}%
        \vspace{-.6\baselineskip}}

% An environment IDENTICAL to outerlist that has better pre-list spacing
% when used as the first thing in a \section 
\newenvironment{lonelist}[1][\enskip\textbullet]%
        {\vspace{-\baselineskip}\begin{list}{#1}{%
        \setlength{\partopsep}{0pt}%
        \setlength{\topsep}{0pt}}}
        {\end{list}
        \vspace{-.6\baselineskip}}

% An itemize-style list with little space between items
\newenvironment{innerlist}[1][\enskip\textbullet]%
        {\begin{compactitem}[#1]}{\end{compactitem}}
        
\newenvironment{innerlist2}[1][\enskip -]%
        {\begin{compactitem}[#1]}{\end{compactitem}}
        
\newenvironment{innerlist3}[1][\enskip $\succ$]%
        {\begin{compactitem}[#1]}{\end{compactitem}}

% To add some paragraph space between lines.
% This also tells LaTeX to preferably break a page on one of these gaps
% if there is a needed pagebreak nearby.
\newcommand{\blankline}{\quad\pagebreak[2]}

%%%%%%%%%%%%%%%%%%%%%%%% End Helper Commands %%%%%%%%%%%%%%%%%%%%%%%%%%%

%%%%%%%%%%%%%%%%%%%%%%%%% Begin CV Document %%%%%%%%%%%%%%%%%%%%%%%%%%%%

\begin{document}
\makeheading{Frédéric CHEVALIER}

%-----------------------------------
\section{Informations personnelles}
%-----------------------------------
%
Nom~: CHEVALIER \\
Prénom~: Frédéric \\
Genre~: Masculin \\
Date de naissance~: 15 mai 1984\\
Nationalité~: Française



%---------------------------
\section{Contact personnel}
%---------------------------
%
% NOTE: Mind where the & separators and \\ breaks are in the following
%       table.
%
% ALSO: \rcollength is the width of the right column of the table 
%       (adjust it to your liking; default is 1.85in).
%
\newlength{\rcollength}\setlength{\rcollength}{6.5cm}%
%
\begin{tabular}[t]{@{}p{\textwidth-\rcollength}p{\rcollength}}
Appartement 7 & \\
73 Promenade des Cours & \textit{Tel.:} +33 (0)6 74 48 56 21 \\
86000 Poitiers France & \textit{E-mail:} \href{mailto:f15.chevalier@gmail.com} {f15.chevalier@gmail.com}\\
\end{tabular}



%-------------------------------
\section{Contact professionnel}
%-------------------------------
%
% NOTE: Mind where the & separators and \\ breaks are in the following
%       table.
%
% ALSO: \rcollength is the width of the right column of the table 
%       (adjust it to your liking; default is 1.85in).
%
%\newlength{\rcollength}\setlength{\rcollength}{6.5cm}%
%
\begin{tabular}[t]{@{}p{\textwidth-\rcollength}p{\rcollength}}
\href{http://ecoevol.labo.univ-poitiers.fr/spip.php?rubrique32}%
     {Laboratoire Écologie, Évolution, Symbiose} & \\
UMR CNRS 6556 & \textit{Tel.:} +33 (0)5 49 36 62 46 \\
\href{http://www.univ-poitiers.fr/}{Université de Poitiers} & \textit{Fax:} +33 (0)5 49 45 40 15 \\
40 avenue du Recteur Pineau           	& \textit{E-mail:} \href{mailto:frederic.chevalier@univ-poitiers.fr} {frederic.chevalier@univ-poitiers.fr}\\
86022 Poitiers Cedex France    		& \textit{www:} \href{http://ecoevol.labo.univ-poitiers.fr/?lang=fr}{ecoevol.labo.univ-poitiers.fr}\\
\end{tabular}



%-----------------------------
\section{Thèmes de recherche}
%-----------------------------
%
Symbiose, Interaction Hôte-Symbiote, Immunité, Immunocompetence



%--------------------
\section{Formations}
%--------------------
%
\href{http://www.univ-poitiers.fr/}{\textbf{Université de Poitiers}}, Poitiers, France
\begin{outerlist}
\item[] \textit{Doctorat}
        \hfill \textbf{Octobre 2007 à maintenant}
        \begin{innerlist}
        \item Sujet de thèse~: Symbiose à \emph{Wolbachia} ($\alpha$-protéobactérie)~: impacts sur le système immunitaire et l'immunocompétence de son hôte \emph{Armadillidium vulgare} (crustacé isopode)
        \item Directeurs~: 
              \href{mailto:christine.braquart@univ-poitiers.fr}
                   {Docteur Christine BRAQUART-VARNIER} --
              \href{mailto:pierre.greve@univ-poitiers.fr}
                   {Professeur Pierre GRÈVE}
        \item Domaine: Effets de la présence de \emph{Wolbachia} sur l'immununité d'un invertébré
        \end{innerlist}
\end{outerlist}

\blankline
              
\href{http://www.univ-perp.fr/fr/index.html}{\textbf{Université Via Domitia}}, Perpignan, France
\begin{outerlist}
\item[] \textit{Master Écologie fonctionnelle~: des molécules aux populations naturelles} (mention Bien)
        \hfill \textbf{Septembre 2005 à Juin 2007}
        \begin{innerlist}
        \item Objectifs~: compréhension des interactions s'établissant entre les organismes et leur environnement du niveau moléculaire jusqu'au niveau écologique.
        \item Responsable~: 
              \href{mailto:mitta@univ-perp.fr}
                   {Professeur Guillaume MITTA}
        \item Thème~: biologie moléculaire et écologie
        \end{innerlist}

\item[] \textit{Licence Phytosciences} (mention Bien)
        \hfill \textbf{Septembre 2002 à Juin 2005}
        \begin{innerlist}
        \item Biologie moléculaire et écologie végétale
        \end{innerlist}
\end{outerlist}



%----------------------
\section{Financements} 
%----------------------
%
\href{http://www.enseignementsup-recherche.gouv.fr}{\textbf{Ministère de l'enseignement supérieur et de la recherche}}
\begin{innerlist}
\item {Poste d'Attaché Temporaire à l'Enseignement et à la Recherche (ATER)} 2010--2011
\item \href{http://dr.education.fr/Alloc_doc/}{Allocation ministérielle} 2007--2010
\item {Allocation de monitorat} 2007--2010
\item \href{http://wwww.enseignementsup-recherche.gouv.fr/enseignementsup/bourses.htm/}{Bourse au mérite} 2006--2007
\end{innerlist}

\newpage



%------------------------------------
\section{Expérience professionnelle}
%------------------------------------
%
\href{http://www.univ-poitiers.fr}{\textbf{Université de Poitiers}}, Poitiers, France
\begin{outerlist}
\item[] \textit{Doctorat}%
        \hfill \textbf{Octobre 2007 à maintenant}
\begin{innerlist}
\item \href{http://dr.education.fr/Alloc_doc/}{Allocation de recherche} 2007--2010
\end{innerlist}
\end{outerlist}

\begin{outerlist}
\item[] \textit{ATER}%
        \hfill \textbf{Octobre 2010 à Septembre 2011}
\begin{innerlist}
\item Niveau Master
	\begin{innerlist2}
	\item Master Recherche Biologie, Écologie, Évolution
		\begin{innerlist3}
		\item M2 -- Immunologie des Invertébrés -- 6h TD -- 8h TP
		\item M2 -- Applications de l'HPLC en biologie -- 2h TP
		\end{innerlist3}
	\item Master \textit{Erasmus Mundus} EMAE (European Master in Applied Ecology)
		\begin{innerlist3}
		\item  M1 -- Écophysiologie -- 7h TP
		\end{innerlist3}
	\item Master Professionnel Génie Écologique
		\begin{innerlist3}
		\item M1 -- Écophysiologie -- 6h TD -- 16h TP
		\end{innerlist3}
	\item Master Biologie Générale Sciences de la Terre et de l'Univers
		\begin{innerlist3}
		\item  M1 -- Évolution des grandes fonctions -- 4h TD -- 4h TP
		\end{innerlist3}
	\end{innerlist2}
\end{innerlist}

\begin{innerlist}
\item Niveau Licence
	\begin{innerlist2}
	\item Licence Écologie et Biologie des Organismes
		\begin{innerlist3}
		\item L3 -- Fonctions sensorielles -- 21h TP
		\item L3 -- Visite de Laboratoire -- 6h TD
		\item L2 -- Méthodologie -- 12h TP
		\end{innerlist3}
	\item Licence Biologie, Géologie et Sciences de la Terre
		\begin{innerlist3}
		\item L3 -- Neuroanatomie -- 16h TP
		\item L2 -- Évolution des plans d'organisation -- 6h TD
		\item L2 -- Méthodologie -- 12h TP
		\end{innerlist3}
	\item {Licence Science de la Vie et Géologie}
		\begin{innerlist3}
		\item L1 -- Diversité du Vivant -- 14h TD -- 33 h TP
		\item L1 -- Organismes et milieux -- 28h TD -- 18h TP
		\end{innerlist3}
	\end{innerlist2}
\end{innerlist}
\end{outerlist}

\begin{outerlist}
\item[] \textit{Monitorat}%
        \hfill \textbf{Octobre 2007 à 2010}
\begin{innerlist}
\item Niveau Master
	\begin{innerlist2}
	\item Master Recherche Biologie, Écologie, Évolution
		\begin{innerlist3}
		\item M2 -- Applications de l'HPLC en biologie -- 2h TP
		\end{innerlist3}
	\item Master \textit{Erasmus Mundus} EMAE (European Master in Applied Ecology)
		\begin{innerlist3}
		\item  M1 -- Écophysiologie -- 7h TP
		\end{innerlist3}
	\item Master Professionnel Génie Écologique
		\begin{innerlist3}
		\item M1 -- Écophysiologie -- 16h TP
		\end{innerlist3}
	\item Master Biologie Générale Sciences de la Terre et de l'Univers
		\begin{innerlist3}
		\item  M1 -- Évolution des grandes fonctions -- 5h TD -- 6h TP
		\end{innerlist3}
	\end{innerlist2}
\end{innerlist}

\begin{innerlist}
\item Niveau Licence
	\begin{innerlist2}
	\item Licence Écologie et Biologie des Organismes
		\begin{innerlist3}
		\item L3 -- Fonctions sensorielles -- 21h TP
		\item L2 -- Évolution des plans d'organisation -- 6h TD -- 13h TP	%?? cf ATER
		\item L2 -- Méthodologie -- 12h TP
		\end{innerlist3}
	\item Licence Biologie, Géologie et Sciences de la Terre
		\begin{innerlist3}
		\item L3 -- Neuroanatomie -- 16h TP
		\item L2 -- Méthodologie -- 12h TP
		\end{innerlist3}
	\end{innerlist2}
\end{innerlist}
\end{outerlist}
\blankline

\href{http://www.univ-perp.fr/fr/index.html}{\textbf{Université Via Domitia}}, Perpignan, France
\begin{outerlist}
\item[] \textit{Master}
        \hfill \textbf{Septembre 2005 à Juin 2007}
\begin{innerlist}
\item \href{http://wwww.enseignementsup-recherche.gouv.fr/enseignementsup/bourses.htm/}{Bourse au mérite} 2006--2007
\end{innerlist}
\item[] \textit{Stages de recherche}
\begin{innerlist}
\item Troisième stage    \hfill \textbf{Janvier 2007 à Juin 2007}
\begin{innerlist2}
\item Sujet: Variation intra-spécifique de virulence dans le modèle hôte/parasitoïde \emph{Drosophila melanogaster}/\emph{Leptopilina boulardi}: recherche de protéines cibles d'un facteur de virulence
\item Directeur~: \href{mailto:poirie@antibes.inra.fr}{Professeur Marylène POIRIÉ}
\end{innerlist2}
\end{innerlist}

\begin{innerlist}
\item Deuxième stage  \hfill \textbf{Juillet 2006 à Septembre 2006}
\begin{innerlist2}
\item Sujet~: Histoire de LARD (Large Retrotransposon Derivative)~: Évolution de l'élément Dasheng au sein du genre \emph{Oriza}
\item Directeur~: \href{mailto:panaud@univ-perp.fr}{Professeur Olivier PANAUD}
\end{innerlist2}
\end{innerlist}

\begin{innerlist}
\item Premier stage    \hfill \textbf{Janvier 2006 à Juin 2006}
\begin{innerlist2}
\item Sujet~: La compatibilité dans le modèle \emph{Biomphalaria glabrata}/\emph{Echinostoma caproni}~: Banques SSH et expression tissulaire de gènes candidats
\item Directeur: \href{mailto:mitta@univ-perp.fr}{Professeur Guillaume MITTA}
\end{innerlist2}
\end{innerlist}

\end{outerlist}



%------------------------------------
\section{Activités à responsabilité}
%------------------------------------
%
\textbf{Responsabilités administratives}
\begin{outerlist}
\item[] \textit{\href{http://ed-icbg.univ-poitiers.fr/}{École Doctorale ICBG}}	\hfill \textbf{Octobre 2007 à Juin 2009}
	\begin{innerlist}
	\item Représentant des doctorants
	\end{innerlist}
\item[] \textit{\href{http://www.ciescentre.fr/index.php?id=3}{CIES Centre}}	\hfill \textbf{Octobre 2007 à Juin 2009}%
	\begin{innerlist}	
	\item Représentant des moniteurs 
	\end{innerlist}
\end{outerlist}
\blankline

\textbf{Responsabilités associatives}
\begin{outerlist}
\item[] \textit{\href{http://moniteurs.poitiers.free.fr/index.php/TEMPO/TEMPO}{TEMPO} (Thésards Et Moniteurs de POitiers)}	
	\begin{innerlist}
	\item Président de l'association  \hfill \textbf{Mai 2009 à Mai 2010}
	\item Vice-président de l'association	 \hfill \textbf{Mai 2008 à Mai 2009}
	\end{innerlist}
\item[] \textit{\href{http://adbep.asso.univ-poitiers.fr/index.html}{ADBEP} (Association des Doctorants en Biologie et Ecologie de Poiters)}	
	\begin{innerlist}
	\item Secrétaire de l'association  \hfill \textbf{Octobre 2008 à Octobre 2009}
	\item Représentant de l'association auprès du réseau \href{http://www.biotechno.asso.fr/}{BioTechno}
	\end{innerlist}
\end{outerlist}



%-------------------------------------------------
\section{Activités de diffusion et d'information}
%-------------------------------------------------
%
\textbf{Diffusion scientifique}
\begin{outerlist}
\item[] \textit{Fête de la Science}
	\begin{innerlist}
	\item Présentation des thématiques du laboratoire au grand public	\hfill \textbf{Novembre 2009}
		\item Présentation des thématiques du laboratoire au grand public	\hfill \textbf{Octobre 2007}
	\end{innerlist}
\end{outerlist}
\blankline

\textbf{Information sur l'enseignement}
\begin{outerlist}
\item[] \textit{Journées Portes Ouvertes de l'Université}
	\begin{innerlist}
	\item Présentation des différents parcours et enseignement  \hfill \textbf{Janvier 2010}
	\item Présentation des différents parcours et enseignement  \hfill \textbf{Février 2009}
	\end{innerlist}
\end{outerlist}



%----------------------
\section{Publications}
%----------------------
%
\textit{\emph{Wolbachia}-isopod interactions: Expression of immune-response genes in \emph{Armadillidium vulgare}}. \textbf{Frédéric Chevalier}, Juline Herbinière-Gaboreau, Delphine Charif, Guillaume Mitta, Frédéric Gavory, Patrick Wincker, Pierre Grève, Christine Braquart-Varnier, Didier Bouchon. BMC Microbiology soumis\\
%\linebreak

\textit{The immune cellular effectors of terrestrial isopod \emph{Armadillidium vulgare}: Meeting with their invaders,  \emph{Wolbachia}}. \textbf{Frédéric Chevalier}, Juline Herbinière-Gaboreau, Joanne Bertaux, Maryline Raimond, Franck Morel, Didier Bouchon, Pierre Grève and Christine Braquart-Varnier. \href{http://dx.doi.org/10.1371/journal.pone.0018531}{PLoS One 2011 \textit{in press}}\\
%\linebreak

\textit{Variations of immune parameters in terrestrial isopods: a matter of Gender, Aging and \emph{Wolbachia}}. Mathieu Sicard, \textbf{Frédéric Chevalier}, Mickaël  De Vlechouver, Didier Bouchon, Pierre Grève and Christine Braquart-Varnier. \href{http://dx.doi.org/10.1007/s00114-010-0699-2}{Naturwissenschaften 2010 97(9):819-826}\\
%\linebreak

\textit{Evolutionary dynamics of an ancient retrotransposon family provides insights into evolution of genome size in the genus \emph{Oryza}}. Jetty S. S.  Ammiraju, Andrea  Zuccolo, Yeisoo  Yu, Xiang  Song, Benoit  Piegu, \textbf{Frederic  Chevalier}, Jason G.  Walling, Jianxin  Ma, Jayson  Talag, Darshan S.  Brar, Phillip J.  SanMiguel, Ning  Jiang, Scott A.  Jackson, Olivier  Panaud and Rod A. Wing. \href{http://dx.doi.org/10.1111/j.1365-313X.2007.03242.x}{The Plant Journal 2007 52(2):342-345}.

%\newpage



%------------------------------------
\section{Participations aux congrès}
%------------------------------------
%
\textbf{Communications orales}
\begin{outerlist}
	\item \href{http://wolbachia2010.neb.com/}{6$^{th}$ Internation \emph{Wolbachia} Conference}: \textit{Impact of \emph{Wolbachia} symbiosis on immune system and immunocompetence of crustacean isopods}. \textbf{Frédéric Chevalier}\footnotemark[1], Mathieu Sicard, Joanne Bertaux, Juline Herbinière, Didier Bouchon, Pierre Grève \& Christine Braquart-Varnier. Pacific Grove, Calfornia, USA, 9 au 14 juin 2010

	\item \href{http://www.cost-fa0701.com/}{COST-FA0701 COST International Training School "Advances in Symbiosis Research"}: \textit{\emph{Wolbachia} symbiosis and crustacean immunity: When the small ones bully the big one}. \textbf{Frédéric Chevalier}\footnotemark[1], Pierre Grève \& Christine Braquart-Varnier. Rehovot, Israël, 14 mars 2010

	\item \href{http://www.cost-fa0701.com/}{COST-FA0701 Action Workshop}: \textit{\emph{Wolbachia} symbiosis: Impacts on terrestrial isopod immune system}. \textbf{Frédéric Chevalier}, Juline Herbinière, Mathieu Sicard, Pierre Grève, Christine Braquart-Varnier \& Didier Bouchon\footnotemark[1]. Madeire, Portugal, 20 au 23 Janvier 2010

	\item Immuninv (communauté française d'immunologie des invertébrés)~: \textit{Effets de \emph{Wolbachia} sur les effecteurs de l'immunité d'\emph{Armadillidium vulgare} (crustacé, isopode terrestre).} \textbf{Frédéric Chevalier}\footnotemark[1], Juline Herbinière, Mathieu Sicard, Maryline Raimond, Franck Morel, Pierre Grève \& Christine Braquart-Varnier. Poi$\-$tiers France, 21 au 23 octobre 2009

	\item REID 2009 (Réseau Ecologie des Interactions Durables)~: \textit{Effets de \emph{Wolbachia} sur les effecteurs cellulaires de l'immunité d'\emph{Armadillidium vulgare} (crustacé, isopode terrestre).}  \textbf{Frédéric Chevalier}\footnotemark[1], Juline Herbinière, Mathieu Sicard, Maryline Raimond, Franck Morel, Pierre Grève \& Christine Braquart-Varnier. Amiens, France, January 14 au 15 janvier 2009

	\item Immuninv~: \textit{La symbiose à \emph{Wolbachia} ($\alpha$-protéobactérie) chez les crustacés terrestres~: interactions avec le système immunitaire.} Juline Herbinière, \textbf{Frédéric Chevalier}, Maryline Raimond, Mathieu Sicard, Jean-Marc Strub, Pierre Grève \& Christine Braquart-Varnier\footnotemark[1]. Montpellier, France, 23 au 25 avril 2008

	\item Immuninv~: \textit{Effets de \emph{Wolbachia} sur les effecteurs cellulaires de l'immunité d'\emph{Arma$\-$dillidium vulgare} (crustacé, isopode terrestre).} \textbf{Frédéric Chevalier}\footnotemark[1], Juline Herbi$\-$nière, Mathieu Sicard, Maryline Raimond, Franck Morel, Pierre Grève \& Christine Braquart-Varnier. Montpellier, France, 23 au 25 avril 2008
\end{outerlist}

\footnotetext[1]{Auteur ayant présenté}

\blankline

\textbf{Communications posters}

\begin{outerlist}
	\item \href{http://wolbachia2010.neb.com/}{6$^{th}$ Internation \emph{Wolbachia} Conference}: \textit{FISHing \emph{Wolbachia}: let woodlice catch your eyes}. Joanne Bertaux, \textbf{Frédéric Chevalier}, Christine Braquart-Varnier, Mathieu Sicard, Pierre Grève \& Didier Bouchon\footnotemark[1]. Pacific Grove, Calfornia, USA, 9 au 1 juin 2010

	\item Immuninv~: \textit{Vous Vous En Fishez, Des Cloportes ? Pas \emph{Wolbachia} !} Joanne Bertaux\footnotemark[1], \textbf{Frédéric Chevalier}, Christine Braquart-Varnier, Mathieu Sicard, Pierre Grève \& Didier Bouchon. Poitiers, France, 21 au 23 octobre 2009
	
	\item Immuninv~: \textit{Immunocompetence, aging and \emph{Wolbachia}.} \textbf{Frédéric Chevalier}\footnotemark[1], Mickael De Vlechouver, Didier Bouchon, Pierre Grève, Christine Braquart-Varnier \& Mathieu Sicard. Poitiers, France, 21 au 23 octobre 2009

	\item Immuninv~: \textit{\emph{Wolbachia} symbiosis: impacts on terrestrial isopod immune system.} \textbf{Frédéric Chevalier}\footnotemark[1], Mathieu Sicard, Juline Herbinière, Franck Morel, Didier Bouchon, Pierre Grève \& Christine Braquart-Varnier. Poitiers, France, 21 au 23 octobre 2009

	\item \href{http://www.union.wisc.edu/symbiosis}{International Symbiosis Society 6$^{th}$}~: \textit{\emph{Wolbachia} symbiosis: impacts on terrestrial isopod immune system.} \textbf{Frédéric Chevalier}, Mathieu Sicard\footnotemark[1], Juline Herbinière, Franck Morel, Didier Bouchon, Pierre Grève \& Christine Braquart-Varnier. Madison, Wisconsin, USA, 9 au 15 ao\^{u}t 2009

	\item \href{http://www.cost-fa0701.com/}{COST Action FA0701}~: \textit{Immunocompetence, aging and \emph{Wolbachia}.} \textbf{Frédéric Chevalier}\footnotemark[1], Mickael De Vlechouver, Didier Bouchon, Pierre Grève, Christine Braquart-Varnier \& Mathieu Sicard. Aussois, France, 27 au 30 mai 2009

	\item \href{http://www.cnrs.fr/insb/cjm/}{Jacques Monod Conferences}~: \textit{\emph{Wolbachia} symbiosis: impacts on terrestrial isopod immune system.} \textbf{Frédéric Chevalier}, Juline Herbinière, Mathieu Sicard, Franck Morel, Didier Bouchon, Pierre Grève \& Christine Braquart-Varnier\footnotemark[1]. Aussois, France, 23 au 27 mai 2009
\end{outerlist}

\footnotetext[1]{Auteur ayant présenté}



%----------------------------------------------
\section{Participation aux Écoles Thématiques}
%----------------------------------------------
%
\href{http://www.agri.huji.ac.il/index-eng.html}{\textbf{Université Hébraïque de Jérusalem}}, Rehovot, Israël
\begin{outerlist}
\item[] \textit{\href{http://www.cost-fa0701.com/}{COST Training School} - Advances in Symbiosis Research}	\hfill \textbf{13 au 19 Mars 2009}
        \begin{innerlist}
        \item Objectifs~: état des lieux des avancés dans le domaine de la recherche sur la symbiose dans le cadre du COST Action FA0701.
        \item Responsable~: 
              \href{mailto:yuval@agri.huji.ac.il}
                   {Professeur Boaz YUVAL}
        \item Thème~: étude des symbioses et techniques associées.
        \end{innerlist}
\end{outerlist}



%--------------------------------
\section{Compétences techniques}
%--------------------------------
%
\textit{Compétences expérimentales}
\begin{outerlist}
	\item Acides nucléiques~: extraction d'ADN, extraction d'ARN, PCR, RT-PCR, qPCR, construction de banques d'ADNc, clonage, séquençage, hybridation \textit{in situ}
	\item Protéines~: Western blot, quantification d'activité enzymatique, expression de protéines en système hétérologue, détection d'interactions (double hybride), purification de protéines par HPLC
	\item Biologie cellulaire~: cytométrie en flux, marquage apoptose (marque TUNEL et Annexin), séparation de cellules sur gradient, comptage manuel et automatique de densités cellulaires, microscopie épifluorescente, microscopie confocale, microscopie électronique
	\item Microbiologie~: cultures de champignons, cultures de bactéries, injections de bactéries
\end{outerlist}

\blankline

\textit{Compétences en bioinformatique}
\begin{outerlist}
	\item Recherche de similarités de séquences nucléiques ou de domaines protéiques~: \href{http://blast.ncbi.nlm.nih.gov/Blast.cgi}{\textsc{Blast}} (blast local et en ligne)
	\item Recherche de similarités de domaines protéiques~:  ProScan, Conserved Domain Search
	\item Alignement de séquences nucléiques et protéiques~: \href{http://www.mbio.ncsu.edu/BioEdit/bioedit.html}{\textsc{Bioedit}}, Clustal, \href{http://bioinfo.genotoul.fr/multalin/multalin.html} {\textsc{Multalin}}, \textsc{Mafft}, \textsc{Prank}, Guidance
	\item Logiciels statistiques~: programmes R, \textsc{Jmp}
\end{outerlist}



%----------------------------
\section{Autres compétences}
%----------------------------
%
\textit{Compétences informatiques}
\begin{outerlist}
\item Programmation~: conception de scripts UNIX shell (bash, sh, etc.), de scripts R
\item Maîtrise d'outils bureautiques~: Microsoft Office, OpenOffice, LibreOffice et autres suites bureautiques pour plateformes Windows ou GNU/Linux platformes, \TeX{}, \LaTeX{}, B\textsc{ib}\TeX{}, 
\item Maîtrise de systèmes d'exploitation~: GNU/Linux (Distributions Ubuntu, Mandriva, Debian), Microsoft Windows (2000/XP/Vista/7)
\end{outerlist}

\blankline

\textit{Compétences linguistiques}
\begin{outerlist}
\item Anglais~: lu, écrit, parlé (TOEIC 735/990, oral 330/495, écrit 405/495)
\item Espagnol~: lu, écrit
\item Latin~: lu, écrit
\end{outerlist}


\end{document}

%%%%%%%%%%%%%%%%%%%%%%%%%% End CV Document %%%%%%%%%%%%%%%%%%%%%%%%%%%%%