Browse code

Remove the French short version and rename the complete version

Fred authored on02/06/2019 20:07:22
Showing2 changed files
1 1
deleted file mode 100644
... ...
@@ -1,593 +0,0 @@
1
-%Original author :Theodore P.~Pavlic
2
-%Author: Frédéric CHEVALIER
3
-%Created in: 2009-11-29
4
-%Modified in: 2011-04-14
5
-
6
-%source: http://links.tedpavlic.com/tex/tpavlic_cv.tex
7
-
8
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
9
-%% NOTE: If you find that it says                                     %%
10
-%%                                                                    %%
11
-%%                           1 of ??                                  %%
12
-%%                                                                    %%
13
-%% at the bottom of your first page, this means that the AUX file     %%
14
-%% was not available when you ran LaTeX on this source. Simply RERUN  %% 
15
-%% LaTeX to get the ``??'' replaced with the number of the last page  %% 
16
-%% of the document. The AUX file will be generated on the first run   %%
17
-%% of LaTeX and used on the second run to fill in all of the          %%
18
-%% references.                                                        %%
19
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
20
-
21
-%%%%%%%%%%%%%%%%%%%%%%%%%%%% Document Setup %%%%%%%%%%%%%%%%%%%%%%%%%%%%
22
-
23
-% Don't like 10pt? Try 11pt or 12pt
24
-\documentclass[10pt]{article}
25
-
26
-\usepackage[utf8]{inputenc}
27
-\usepackage[T1]{fontenc}
28
-
29
-% This is a helpful package that puts math inside length specifications
30
-\usepackage{calc}
31
-
32
-% This is a helpful package that puts color in your document
33
-\usepackage{xcolor}
34
-
35
-% This is a helpful package that format footnote
36
-\usepackage{footmisc}
37
-
38
-% Layout: Puts the section titles on left side of page
39
-\reversemarginpar
40
-
41
-%
42
-%         PAPER SIZE, PAGE NUMBER, AND DOCUMENT LAYOUT NOTES:
43
-%
44
-% The next \usepackage line changes the layout for CV style section
45
-% headings as marginal notes. It also sets up the paper size as either
46
-% letter or A4. By default, letter was used. If A4 paper is desired,
47
-% comment out the letterpaper lines and uncomment the a4paper lines.
48
-%
49
-% As you can see, the margin widths and section title widths can be
50
-% easily adjusted.
51
-%
52
-% ALSO: Notice that the includefoot option can be commented OUT in order
53
-% to put the PAGE NUMBER *IN* the bottom margin. This will make the
54
-% effective text area larger.
55
-%
56
-% IF YOU WISH TO REMOVE THE ``of LASTPAGE'' next to each page number,
57
-% see the note about the +LP and -LP lines below. Comment out the +LP
58
-% and uncomment the -LP.
59
-%
60
-% IF YOU WISH TO REMOVE PAGE NUMBERS, be sure that the includefoot line
61
-% is uncommented and ALSO uncomment the \pagestyle{empty} a few lines
62
-% below.
63
-%
64
-
65
-%% Use these lines for letter-sized paper
66
-%\usepackage[paper=letterpaper,
67
-%            %includefoot, % Uncomment to put page number above margin
68
-%            marginparwidth=1.2in,     % Length of section titles
69
-%            marginparsep=.05in,       % Space between titles and text
70
-%            margin=1in,               % 1 inch margins
71
-%            includemp]{geometry}
72
-
73
-%% Use these lines for A4-sized paper
74
-\usepackage[paper=a4paper,
75
-            %includefoot, % Uncomment to put page number above margin
76
-            marginparwidth=30.5mm,    % Length of section titles
77
-            marginparsep=1.5mm,       % Space between titles and text
78
-            margin=22.5mm,              % 25mm margins
79
-            includemp]{geometry}
80
-
81
-%% More layout: Get rid of indenting throughout entire document
82
-\setlength{\parindent}{0in}
83
-
84
-%% This gives us fun enumeration environments. compactitem will be nice.
85
-\usepackage{paralist}
86
-
87
-%% Reference the last page in the page number
88
-%
89
-% NOTE: comment the +LP line and uncomment the -LP line to have page
90
-%       numbers without the ``of ##'' last page reference)
91
-%
92
-% NOTE: uncomment the \pagestyle{empty} line to get rid of all page
93
-%       numbers (make sure includefoot is commented out above)
94
-%
95
-\usepackage{fancyhdr,lastpage}
96
-\pagestyle{fancy}
97
-%\pagestyle{empty}      % Uncomment this to get rid of page numbers
98
-\fancyhf{}\renewcommand{\headrulewidth}{0pt}
99
-\fancyfootoffset{\marginparsep+\marginparwidth}
100
-\newlength{\footpageshift}
101
-\setlength{\footpageshift}
102
-          {0.5\textwidth+0.5\marginparsep+0.5\marginparwidth-2in}
103
-\lfoot{\hspace{\footpageshift}%
104
-       \parbox{4in}{\, \hfill %
105
-                    \arabic{page} sur \protect\pageref*{LastPage} % +LP
106
-%                    \arabic{page}                               % -LP
107
-                    \hfill \,}}
108
-
109
-% Finally, give us PDF bookmarks
110
-\usepackage{color,hyperref}
111
-\definecolor{darkblue}{rgb}{0.0,0.0,0.3}
112
-\hypersetup{colorlinks,breaklinks,
113
-            linkcolor=darkblue,urlcolor=darkblue,
114
-            anchorcolor=darkblue,citecolor=darkblue}
115
-
116
-%%%%%%%%%%%%%%%%%%%%%%%% End Document Setup %%%%%%%%%%%%%%%%%%%%%%%%%%%%
117
-
118
-
119
-%%%%%%%%%%%%%%%%%%%%%%%%%%% Helper Commands %%%%%%%%%%%%%%%%%%%%%%%%%%%%
120
-
121
-% The title (name) with a horizontal rule under it
122
-%
123
-% Usage: \makeheading{name}
124
-%
125
-% Place at top of document. It should be the first thing.
126
-\newcommand{\makeheading}[1]%
127
-        {\hspace*{-\marginparsep minus \marginparwidth}%
128
-         \begin{minipage}[t]{\textwidth+\marginparwidth+\marginparsep}%
129
-                {\large \bfseries #1}\\[-0.15\baselineskip]%
130
-                 \rule{\columnwidth}{1pt}%
131
-         \end{minipage}}
132
-
133
-% The section headings
134
-%
135
-% Usage: \section{section name}
136
-%
137
-% Follow this section IMMEDIATELY with the first line of the section
138
-% text. Do not put whitespace in between. That is, do this:
139
-%
140
-%       \section{My Information}
141
-%       Here is my information.
142
-%
143
-% and NOT this:
144
-%
145
-%       \section{My Information}
146
-%
147
-%       Here is my information.
148
-%
149
-% Otherwise the top of the section header will not line up with the top
150
-% of the section. Of course, using a single comment character (%) on
151
-% empty lines allows for the function of the first example with the
152
-% readability of the second example.
153
-\renewcommand{\section}[2]%
154
-        {\pagebreak[2]\vspace{2\baselineskip}%	original : \pagebreak[2]\vspace{2.5\baselineskip	
155
-         \phantomsection\addcontentsline{toc}{section}{#1}%
156
-         \hspace{0in}%
157
-         \marginpar{
158
-%         \raggedright \scshape \textcolor{blue}{#1}}#2}%colored section
159
-         \raggedright \scshape #1}#2}%classical section
160
-
161
-% An itemize-style list with lots of space between items
162
-\newenvironment{outerlist}[1][\enskip\textbullet]%
163
-        {\begin{itemize}[#1]}{\end{itemize}%
164
-        \vspace{-.6\baselineskip}}
165
-
166
-% An environment IDENTICAL to outerlist that has better pre-list spacing
167
-% when used as the first thing in a \section 
168
-\newenvironment{lonelist}[1][\enskip\textbullet]%
169
-        {\vspace{-\baselineskip}\begin{list}{#1}{%
170
-        \setlength{\partopsep}{0pt}%
171
-        \setlength{\topsep}{0pt}}}
172
-        {\end{list}
173
-        \vspace{-.6\baselineskip}}
174
-
175
-% An itemize-style list with little space between items
176
-\newenvironment{innerlist}[1][\enskip\textbullet]%
177
-        {\begin{compactitem}[#1]}{\end{compactitem}}
178
-        
179
-\newenvironment{innerlist2}[1][\enskip -]%
180
-        {\begin{compactitem}[#1]}{\end{compactitem}}
181
-        
182
-\newenvironment{innerlist3}[1][\enskip $\succ$]%
183
-        {\begin{compactitem}[#1]}{\end{compactitem}}
184
-
185
-% To add some paragraph space between lines.
186
-% This also tells LaTeX to preferably break a page on one of these gaps
187
-% if there is a needed pagebreak nearby.
188
-\newcommand{\blankline}{\quad\pagebreak[2]}
189
-
190
-% Footnote style
191
-\DefineFNsymbols*{asterisks}{*{**}{***}{****}{*****}{******}{*******}}
192
-\setfnsymbol{asterisks}
193
-\renewcommand{\thefootnote}{\fnsymbol{footnote}}
194
-
195
-%%%%%%%%%%%%%%%%%%%%%%%% End Helper Commands %%%%%%%%%%%%%%%%%%%%%%%%%%%
196
-
197
-%%%%%%%%%%%%%%%%%%%%%%%%% Begin CV Document %%%%%%%%%%%%%%%%%%%%%%%%%%%%
198
-
199
-\begin{document}
200
-\makeheading{Frédéric CHEVALIER}
201
-
202
-%-----------------------------------
203
-\section{Informations personnelles}
204
-%-----------------------------------
205
-%
206
-Nom~: CHEVALIER \\
207
-Prénom~: Frédéric \\
208
-Genre~: Masculin \\
209
-Date de naissance~: 15 mai 1984\\
210
-Nationalité~: Française
211
-
212
-
213
-
214
-%---------------------------
215
-\section{Contact personnel}
216
-%---------------------------
217
-%
218
-% NOTE: Mind where the & separators and \\ breaks are in the following
219
-%       table.
220
-%
221
-% ALSO: \rcollength is the width of the right column of the table 
222
-%       (adjust it to your liking; default is 1.85in).
223
-%
224
-\newlength{\rcollength}\setlength{\rcollength}{6.5cm}%
225
-%
226
-\begin{tabular}[t]{@{}p{\textwidth-\rcollength}p{\rcollength}}
227
-Appartement 243 & \\
228
-27 rue du Pontreau & \textit{Tel.:} +33 (0)6 43 46 89 09 \\
229
-86000 Poitiers France & \textit{E-mail:} \href{mailto:f15.chevalier@gmail.com} {f15.chevalier@gmail.com}\\
230
-\end{tabular}
231
-
232
-
233
-
234
-%-------------------------------
235
-\section{Contact professionnel}
236
-%-------------------------------
237
-%
238
-% NOTE: Mind where the & separators and \\ breaks are in the following
239
-%       table.
240
-%
241
-% ALSO: \rcollength is the width of the right column of the table 
242
-%       (adjust it to your liking; default is 1.85in).
243
-%
244
-%\newlength{\rcollength}\setlength{\rcollength}{6.5cm}%
245
-%
246
-\begin{tabular}[t]{@{}p{\textwidth-\rcollength}p{\rcollength}}
247
-\href{http://ecoevol.labo.univ-poitiers.fr/spip.php?rubrique32}%
248
-     {Laboratoire Écologie, Évolution, Symbiose} & \\
249
-UMR CNRS 6556 & \textit{Tel.:} +33 (0)5 49 36 62 46 \\
250
-\href{http://www.univ-poitiers.fr/}{Université de Poitiers} & \textit{Fax:} +33 (0)5 49 45 40 15 \\
251
-40 avenue du Recteur Pineau           	& \textit{E-mail:} \href{mailto:frederic.chevalier@univ-poitiers.fr} {frederic.chevalier@univ-poitiers.fr}\\
252
-86022 Poitiers Cedex France    		& \textit{www:} \href{http://ecoevol.labo.univ-poitiers.fr/?lang=fr}{ecoevol.labo.univ-poitiers.fr}\\
253
-\end{tabular}
254
-
255
-
256
-
257
-%-----------------------------
258
-\section{Thèmes de recherche}
259
-%-----------------------------
260
-%
261
-Symbiose, Interaction Hôte-Symbiote, Immunité, Immunocompetence
262
-
263
-
264
-
265
-%--------------------
266
-\section{Cursus}
267
-%--------------------
268
-%
269
-\textbf{ATER}%
270
-        \hfill \textbf{Octobre 2010 à Septembre 2011}
271
-\begin{outerlist}
272
-\item Niveau Master
273
-	\begin{innerlist}
274
-	\item Enseignements~: 16h TD -- 37h TP
275
-	\item Domaine~: Immunologie, Ecophysiologie
276
-	\item Masters d'importance~:
277
-		\begin{innerlist2}
278
-		\item Master Recherche Biologie, Écologie, Évolution
279
-		\item Master \textit{Erasmus Mundus} EMAE (European Master in Applied Ecology)
280
-		\end{innerlist2}
281
-	\end{innerlist}
282
-\end{outerlist}
283
-
284
-\begin{outerlist}
285
-\item Niveau Licence
286
-	\begin{innerlist}
287
-	\item Enseignements~: 54h TD -- 112h TP
288
-	\item Domaine~: Fonctions sensorielles, Neuroanatomie, Evolution des plans d'organi$\-$sation
289
-	\item Licences d'importance~:	
290
-		\begin{innerlist2}
291
-		\item Licence Écologie et Biologie des Organismes
292
-		\item Licence Science de la Vie et Géologie
293
-		\end{innerlist2}
294
-	\end{innerlist}
295
-\end{outerlist}
296
-
297
-\blankline
298
-
299
-\textbf{Doctorat}
300
-        \hfill \textbf{Octobre 2007 à Juin 2011}
301
-\begin{outerlist}
302
-		\item[] \href{http://www.univ-poitiers.fr/}{\textbf{Université de Poitiers}}, Poitiers, France
303
-        \begin{innerlist}
304
-        \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)
305
-        	\begin{innerlist2}
306
-        	\item Directeurs~: 
307
-              \href{mailto:christine.braquart@univ-poitiers.fr}{Docteur Christine BRAQUART-VARNIER} --
308
-              \href{mailto:pierre.greve@univ-poitiers.fr}{Professeur Pierre GRÈVE}
309
-        	\item Financement~: \href{http://dr.education.fr/Alloc_doc/}{Allocation ministérielle} - Allocation de monitorat
310
-        	\item[]
311
-        	\end{innerlist2}
312
-        \item Formations de l'École Doctorale Gay Lussac suivies :
313
-        	\begin{innerlist2}
314
-        	\item Microscopies électronique et optique
315
-        	\item Éléments de management~: encadrement d'équipe
316
-        	\item Formations C.I.E.S à l'enseignement 
317
-        	\item TOEIC
318
-        	\end{innerlist2}
319
-        \end{innerlist}
320
-\end{outerlist}
321
-
322
-\blankline
323
-
324
-\textbf{Monitorat}%
325
-        \hfill \textbf{Octobre 2007 à 2010}
326
-\begin{outerlist}
327
-\item Niveau Master
328
-	\begin{innerlist}
329
-	\item Enseignements~: 16h TD -- 37h TP
330
-	\item Domaine~: Ecophysiologie
331
-	\item Masters d'importance~:
332
-		\begin{innerlist2}
333
-		\item Master Recherche Biologie, Écologie, Évolution
334
-		\item Master \textit{Erasmus Mundus} EMAE (European Master in Applied Ecology)
335
-		\end{innerlist2}
336
-	\end{innerlist}
337
-\end{outerlist}
338
-
339
-\begin{outerlist}
340
-\item Niveau Licence
341
-	\begin{innerlist}
342
-	\item Enseignements~: 6h TD -- 74h TP
343
-	\item Domaines~: Fonctions sensorielles, Neuroanatomie, Evolution des plans d'organi$\-$sation
344
-	\item Licences d'importance~:	
345
-		\begin{innerlist2}
346
-		\item Licence Écologie et Biologie des Organismes
347
-		\item Licence Science de la Vie et Géologie
348
-		\end{innerlist2}
349
-	\end{innerlist}
350
-\end{outerlist}
351
-
352
-\blankline
353
-              
354
-\textbf{Master Écologie fonctionnelle~: des molécules aux populations naturelles} (mention Bien) -- Responsable~: 
355
-              \href{mailto:mitta@univ-perp.fr}{Professeur Guillaume MITTA}
356
-\hfill \textbf{Septembre 2005 à Juin 2007}
357
-\begin{outerlist}
358
-		\item[] \href{http://www.univ-perp.fr/fr/index.html}{\textbf{Université Via Domitia}}, Perpignan, France
359
-        \begin{innerlist}
360
-		\item Stage Master 2~: Variation intra-spécifique de virulence dans le modèle hôte/para$\-$sitoïde \emph{Drosophila melanogaster}/\emph{Leptopilina boulardi}: recherche de protéines cibles d'un facteur de virulence    \hfill \textbf{Janvier 2007 à Juin 2007}
361
-			\begin{innerlist2}
362
-			\item Directeur~: \href{mailto:poirie@antibes.inra.fr}{Professeur Marylène POIRIÉ}
363
-			\item Financement~: \href{http://wwww.enseignementsup-recherche.gouv.fr/enseignementsup/bourses.htm/}{Bourse au mérite}
364
-			\end{innerlist2}
365
-
366
-		\end{innerlist}
367
-		\begin{innerlist}
368
-		\item Stage Master 1 (hors-cursus)~: Histoire de LARD (Large Retrotransposon Derivative)~: Évolution de l'élément Dasheng au sein du genre \emph{Oriza} \hfill \textbf{Juillet 2006 à Septembre 2006}
369
-			\begin{innerlist2}
370
-			\item Directeur~: \href{mailto:panaud@univ-perp.fr}{Professeur Olivier PANAUD}
371
-			\end{innerlist2}
372
-		\end{innerlist}
373
-
374
-		\begin{innerlist}
375
-		\item Stage Master 1~: La compatibilité dans le modèle \emph{Biomphalaria glabrata}/\emph{Echino$\-$stoma caproni}~: Banques SSH et expression tissulaire de gènes candidats \hfill \textbf{Janvier 2006 à Juin 2006}
376
-			\begin{innerlist2}
377
-			\item Directeur: \href{mailto:mitta@univ-perp.fr}{Professeur Guillaume MITTA}
378
-			\end{innerlist2}
379
-		\end{innerlist}
380
-\end{outerlist}
381
-
382
-\blankline
383
-
384
-\textbf{Licence Phytosciences} (mention Bien)
385
-\hfill \textbf{Septembre 2002 à Juin 2005}
386
-\begin{outerlist}
387
-		\item[] \href{http://www.univ-perp.fr/fr/index.html}{\textbf{Université Via Domitia}}, Perpignan, France
388
-        \begin{innerlist}
389
-        \item Biologie moléculaire et écologie végétale
390
-        \end{innerlist}
391
-\end{outerlist}
392
-
393
-
394
-
395
-%------------------------------------
396
-\section{Responsabilités}
397
-%------------------------------------
398
-%
399
-\textbf{Responsabilités administratives}
400
-\begin{outerlist}
401
-\item[] \textit{\href{http://ed-icbg.univ-poitiers.fr/}{École Doctorale ICBG}}	\hfill \textbf{Octobre 2007 à Juin 2009}
402
-	\begin{innerlist}
403
-	\item Représentant des doctorants
404
-	\end{innerlist}
405
-\item[] \textit{\href{http://www.ciescentre.fr/index.php?id=3}{CIES Centre}}	\hfill \textbf{Octobre 2007 à Juin 2009}%
406
-	\begin{innerlist}	
407
-	\item Représentant des moniteurs 
408
-	\end{innerlist}
409
-\end{outerlist}
410
-\blankline
411
-
412
-\textbf{Responsabilités associatives}
413
-\begin{outerlist}
414
-\item[] \textit{\href{http://moniteurs.poitiers.free.fr/index.php/TEMPO/TEMPO}{TEMPO} (Thésards Et Moniteurs de POitiers)}	
415
-	\begin{innerlist}
416
-	\item Président de l'association  \hfill \textbf{Mai 2009 à Mai 2010}
417
-	\item Vice-président de l'association	 \hfill \textbf{Mai 2008 à Mai 2009}
418
-	\end{innerlist}
419
-\item[] \textit{\href{http://adbep.asso.univ-poitiers.fr/index.html}{ADBEP} (Association des Doctorants en Biologie et Ecologie de Poiters)}	
420
-	\begin{innerlist}
421
-	\item Secrétaire de l'association  \hfill \textbf{Octobre 2008 à Octobre 2009}
422
-	\item Représentant de l'association auprès du réseau \href{http://www.biotechno.asso.fr/}{BioTechno}
423
-	\end{innerlist}
424
-\end{outerlist}
425
-
426
-
427
-
428
-%------------------------------------------------------------------------------------
429
-\section{Activités de diffusion et d'information sur l'enseignement et la recherche}
430
-%------------------------------------------------------------------------------------
431
-%
432
-\textbf{Diffusion scientifique}
433
-\begin{outerlist}
434
-\item[] \textit{Fête de la Science}
435
-	\begin{innerlist}
436
-	\item Présentation des thématiques du laboratoire Écologie, Évolution, Symbiose au grand public	\hfill \textbf{Novembre 2009 et Octobre 2007}
437
-	\end{innerlist}
438
-\end{outerlist}
439
-\blankline
440
-
441
-\textbf{Information sur l'enseignement}
442
-\begin{outerlist}
443
-\item[] \textit{Journées Portes Ouvertes de l'Université}
444
-	\begin{innerlist}
445
-	\item Présentation des différents parcours du département d'enseignement Biologie des Organismes et des Populations   \hfill \textbf{Janvier 2010 et Février 2009}
446
-		\begin{innerlist2}
447
-		\item Présentation des parcours Licences
448
-		\item Présentation du Master Recherche Biologie, Écologie, Évolution
449
-		\item Présentation du Master \textit{Erasmus Mundus} EMAE (European Master in Applied Ecology)
450
-		\item Présentation du Master Professionnel Génie Écologique
451
-		\end{innerlist2}
452
-	\end{innerlist}
453
-\end{outerlist}
454
-
455
-
456
-
457
-%----------------------
458
-\section{Publications}
459
-%----------------------
460
-%
461
-\textbf{\emph{Wolbachia}-isopod interactions: Expression of immune-response genes in \emph{Armadillidium vulgare}}. \textbf{\underline{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\\
462
-%\linebreak
463
-
464
-\textbf{The immune cellular effectors of terrestrial isopod \emph{Armadillidium vulgare}: Meeting with their invaders,  \emph{Wolbachia}}. \textbf{\underline{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 6(4): e18531}\\
465
-%\linebreak
466
-
467
-\textbf{Variations of immune parameters in terrestrial isopods: a matter of Gender, Aging and \emph{Wolbachia}}. Mathieu Sicard, \textbf{\underline{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}\\
468
-%\linebreak
469
-
470
-\textbf{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{\underline{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}.
471
-
472
-%\newpage
473
-
474
-
475
-
476
-%------------------------------------
477
-\section{Participations aux congrès}
478
-%------------------------------------
479
-%
480
-\textbf{Communications orales} (\footnotemark[1]Auteur ayant présenté)
481
-\begin{outerlist}
482
-	\item \href{http://www.istib-2011.si/}{8$^{th}$ International Symposium of Terrestrial Isopod Biology}~: \textit{\emph{Armadillidium vulgare} – \emph{Wolbachia} association: Impacts on host immune system and immunocompetence}. \textbf{Frédéric Chevalier}\footnotemark[1], Mathieu Sicard, Joanne Bertaux, Juline Herbinière, Franck Morel, Didier Bouchon, Pierre Grève \& Christine Braquart-Varnier. Bled, Slovénie, 19 au 23 juin 2011
483
-
484
-	\item Immuninv (communauté française d'immunologie des invertébrés)~: \textit{La symbiose à \emph{Wolbachia} et l’immunité chez \emph{Armadillidium vulgare}~: interactions et impacts}. \textbf{Frédéric Chevalier}, Joanne Bertaux, Mathieu Sicard, Juline Herbinière, Didier Bouchon, Pierre Grève \& Christine Braquart-Varnier\footnotemark[1]. Nice, France, 4 au 6 mai 2011
485
-
486
-	\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, Californie, USA, 9 au 14 juin 2010
487
-
488
-	\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
489
-
490
-	\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
491
-	
492
-	\item Journée Microbiologie Poitevine~: \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], Pierre Grève \& Christine Braquart-Varnier. Poitiers, France, 9 décembre 2009.
493
-
494
-	\item Immuninv~: \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
495
-	
496
-	\item Journée des doctorants~: \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. Poitiers, France, 25 juin 2009.
497
-
498
-	\item REID (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
499
-
500
-	\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
501
-
502
-	\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
503
-\end{outerlist}
504
-
505
-
506
-\blankline
507
-
508
-\textbf{Communications posters} (\footnotemark[1]Auteur ayant présenté)
509
-
510
-\begin{outerlist}
511
-	\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
512
-
513
-	\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
514
-	
515
-	\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
516
-
517
-	\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
518
-
519
-	\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
520
-
521
-	\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
522
-
523
-	\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
524
-\end{outerlist}
525
-
526
-
527
-
528
-%----------------------------------------------
529
-\section{Participation aux Écoles Thématiques}
530
-%----------------------------------------------
531
-%
532
-\href{http://www.agri.huji.ac.il/index-eng.html}{\textbf{Université Hébraïque de Jérusalem}}, Rehovot, Israël
533
-\begin{outerlist}
534
-\item[] \textit{\href{http://www.cost-fa0701.com/}{COST Training School} - Advances in Symbiosis Research}	\hfill \textbf{13 au 19 Mars 2009}
535
-        \begin{innerlist}
536
-        \item Objectifs~: état des lieux des avancés dans le domaine de la recherche sur la symbiose dans le cadre du COST Action FA0701.
537
-        \item Responsable~: 
538
-              \href{mailto:yuval@agri.huji.ac.il}
539
-                   {Professeur Boaz YUVAL}
540
-        \item Thème~: étude des symbioses et techniques associées.
541
-        \end{innerlist}
542
-\end{outerlist}
543
-
544
-
545
-
546
-%--------------------------------
547
-\section{Compétences techniques}
548
-%--------------------------------
549
-%
550
-\textit{Compétences expérimentales}
551
-\begin{outerlist}
552
-	\item Acides nucléiques~: extraction d'ADN, extraction d'ARN, Southern, Northern, PCR, RT-PCR, qPCR, RT-qPCR, construction de banques d'ADNc, banques soustractives (SSH), clonage, séquençage, hybridation \textit{in situ}
553
-	\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
554
-	\item Biologie cellulaire~: cytométrie en flux, marquage apoptose (marquage TUNEL et Annexin), immunomarquage, séparation de cellules sur gradient, comptage manuel et automatique de densités cellulaires, microscopie épifluorescente, microscopie confocale, préparation d'échantillons pour la microscopie électronique
555
-	\item Microbiologie~: cultures de champignons, cultures de bactéries, injections de bactéries
556
-\end{outerlist}
557
-
558
-\blankline
559
-
560
-\textit{Compétences en bioinformatique}
561
-\begin{outerlist}
562
-	\item Recherche de similarités de séquences nucléiques~: \href{http://blast.ncbi.nlm.nih.gov/Blast.cgi}{\textsc{Blast}} (blast local et en ligne)
563
-	\item Recherche de similarités de domaines protéiques~:  ProScan, Conserved Domain Search
564
-	\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
565
-\end{outerlist}
566
-
567
-
568
-
569
-%----------------------------
570
-\section{Autres compétences}
571
-%----------------------------
572
-%
573
-\textit{Compétences informatiques}
574
-\begin{outerlist}
575
-\item Logiciels statistiques~: programmes R, \textsc{Jmp}
576
-\item Programmation~: conception de scripts UNIX shell (bash, sh, etc.), de scripts R
577
-\item Maîtrise d'outils bureautiques~: Microsoft Office, OpenOffice, LibreOffice pour plateformes Windows ou GNU/Linux platformes, \TeX{}, \LaTeX{}, B\textsc{ib}\TeX{}, 
578
-\item Maîtrise de systèmes d'exploitation~: GNU/Linux (Distributions Ubuntu, Mandriva, Debian), Microsoft Windows (2000/XP/Vista/7)
579
-\end{outerlist}
580
-
581
-\blankline
582
-
583
-\textit{Compétences linguistiques}
584
-\begin{outerlist}
585
-\item Anglais~: lu, écrit, parlé (TOEIC 735/990, oral 330/495, écrit 405/495)
586
-\item Espagnol~: lu, écrit
587
-\item Latin~: lu, écrit
588
-\end{outerlist}
589
-
590
-
591
-\end{document}
592
-
593
-%%%%%%%%%%%%%%%%%%%%%%%%%% End CV Document %%%%%%%%%%%%%%%%%%%%%%%%%%%%%
594 0
\ No newline at end of file
595 1
similarity index 100%
596 2
rename from fr/CV (version complète).tex
597 3
rename to fr/F. CHEVALIER - CV.tex