Browse code

Initial commit

Fred authored on02/06/2019 18:17:22
Showing3 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,5 @@
1
+# Ignore tex side files
2
+*.bbl
3
+*.aux
4
+*.log
5
+*.out
0 6
new file mode 100644
... ...
@@ -0,0 +1,628 @@
1
+%Original author :Theodore P.~Pavlic
2
+%Author: Frédéric CHEVALIER
3
+%Created in: 2009-11-29
4
+%Modified in: 2011-03-23
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 [french]{babel}
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=20mm,             	% 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} of \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.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{Personal Information}
204
+%-----------------------------
205
+%
206
+Name: CHEVALIER \\
207
+Firstname: Frédéric \\
208
+Sex: male \\
209
+Date of birth: 15$^{th}$ may 1984\\
210
+Citizenship: French
211
+
212
+
213
+
214
+%-------------------------------------
215
+\section{Personal Contact Information}
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 7 & \\
228
+73 Promenade des Cours & \textit{Tel.:} +33 (0)6 74 48 56 21 \\
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{Professional Contact Information}
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
+\href{http://ecoevol.labo.univ-poitiers.fr/spip.php?rubrique32}%
247
+     {Laboratory Ecology, Evolution, Symbiosis} \\
248
+\begin{tabular}[t]{@{}p{\textwidth-\rcollength}p{\rcollength}}
249
+%\href{http://ecoevol.labo.univ-poitiers.fr/spip.php?rubrique32}%
250
+%     {Laboratory Ecology, Evolution, Symbiosis} & \\
251
+UMR CNRS 6556 & \textit{Voice:} +33 (0)5 49 36 62 46 \\
252
+\href{http://www.univ-poitiers.fr/}{University of Poitiers} & \textit{Fax:} +33 (0)5 49 45 40 15 \\
253
+40 avenue du Recteur Pineau           	& \textit{E-mail:} \href{mailto:frederic.chevalier@univ-poitiers.fr} {frederic.chevalier@univ-poitiers.fr}\\
254
+86022 Poitiers Cedex France    		& \textit{www:} \href{http://ecoevol.labo.univ-poitiers.fr/?lang=en}{ecoevol.labo.univ-poitiers.fr}\\
255
+\end{tabular}
256
+
257
+
258
+
259
+%---------------------------
260
+\section{Research Interests}
261
+%---------------------------
262
+%
263
+Symbiosis, Host-Symbiont Interaction, Immunity, Immunocompetence, University education 
264
+
265
+
266
+
267
+%------------------
268
+\section{Education}
269
+%------------------
270
+%
271
+\href{http://www.univ-poitiers.fr/}{\textbf{University of Poitiers}}, Poitiers, France
272
+\begin{outerlist}
273
+\item[] \textit{PhD}
274
+        \hfill \textbf{October 2007 to present}
275
+        \begin{innerlist}
276
+        \item Thesis topic: \emph{Wolbachia} symbiosis: immunity involvement and hosts immunocompetence outcome
277
+        \item Supervisors: 
278
+              \href{mailto:christine.braquart@univ-poitiers.fr}
279
+                   {Doctor Christine BRAQUART-VARNIER} -- 
280
+              \href{mailto:pierre.greve@univ-poitiers.fr}
281
+                   {Professor Pierre GRÈVE}
282
+        \item Area of study: Impacts of \emph{Wolbachia} presence on host immunity
283
+        \end{innerlist}
284
+\end{outerlist}
285
+
286
+\blankline
287
+              
288
+\href{http://www.univ-perp.fr/en/index.html}{\textbf{Via Domitia University}}, Perpignan, France
289
+\begin{outerlist}
290
+\item[] \textit{M.S., Fonctional Ecology} (with Honors)
291
+        \hfill \textbf{September 2005 to June 2007}
292
+        \begin{innerlist}
293
+        \item Thesis topic: Understanding of interactions bewtween organisms and environment from molecular to ecology levels
294
+        \item Advisor: 
295
+              \href{mailto:mitta@univ-perp.fr}
296
+                   {Professor Guillaume MITTA}
297
+        \item Area of study: Molecular biology and ecology
298
+        \end{innerlist}
299
+
300
+\item[] \textit{B.S., Phytosciences} (with Honors)
301
+        \hfill \textbf{September 2002 to June 2005}
302
+        \begin{innerlist}
303
+        \item Area of study: Molecular biology and plant ecology
304
+        \end{innerlist}
305
+\end{outerlist}
306
+
307
+
308
+
309
+%---------------
310
+\section{Awards} 
311
+%---------------
312
+%
313
+\href{http://www.enseignementsup-recherche.gouv.fr}{\textbf{Ministère de l'enseignement supérieur et de la recherche}}
314
+\begin{innerlist}
315
+\item \href{http://dr.education.fr/Alloc_doc/}{PhD Research Fellowship} 2007--2010
316
+\item {Tutoring Fellowship} 2007--2010
317
+\item \href{http://wwww.enseignementsup-recherche.gouv.fr/enseignementsup/bourses.htm/}{Merit Fellowship}, 2006--2007
318
+\end{innerlist}
319
+
320
+\newpage
321
+
322
+
323
+
324
+%----------------------------
325
+\section{Academic Experience}
326
+%----------------------------
327
+%
328
+\href{http://www.univ-poitiers.fr}{\textbf{University of Poitiers}}, Poitiers, France
329
+\begin{outerlist}
330
+\item[] \textit{PhD Student}%
331
+        \hfill \textbf{October 2007 to present}
332
+\begin{innerlist}
333
+\item \href{http://dr.education.fr/Alloc_doc/}{PhD Research Fellowship} 2007--2010
334
+\end{innerlist}
335
+\end{outerlist}
336
+
337
+\begin{outerlist}
338
+\item[] \textit{Teaching Tutoring}%
339
+        \hfill \textbf{October 2007 to present}
340
+\begin{innerlist}
341
+\item Master Level
342
+	\begin{innerlist2}
343
+	\item Master Biology, Ecology, Evolution
344
+		\begin{innerlist3}
345
+		\item M2 -- HPLC applications in biology -- 2h of Practical Course
346
+		\end{innerlist3}
347
+	\item Master \textit{Erasmus Mundus} EMAE (European Master in Applied Ecology)
348
+		\begin{innerlist3}
349
+		\item  M1 -- Ecophysiology -- 7h of Practical Course
350
+		\end{innerlist3}
351
+	\item Master Ecology Engineering
352
+		\begin{innerlist3}
353
+		\item M1 -- Ecophysiology -- 16h of Practical Course
354
+		\end{innerlist3}
355
+	\item Master General Biology and Earth and Univers Sciences
356
+		\begin{innerlist3}
357
+		\item  M1 -- Evolution of the main functions -- 5h of Tutorials -- 6h of Practical Course
358
+		\end{innerlist3}
359
+	\end{innerlist2}
360
+
361
+\end{innerlist}
362
+
363
+\begin{innerlist}
364
+\item Bachelor Level
365
+	\begin{innerlist2}
366
+	\item Bachelor Ecology and Biology of Organisms
367
+		\begin{innerlist3}
368
+		\item L3 -- Sensory functions -- 21h of Practical Course
369
+		\item L2 -- Evolution of organization plan -- 6h of Tutorials -- 13h of Practical Course
370
+		\end{innerlist3}
371
+	\item Licence Biology, Geology and Earth and Univers Sciences
372
+		\begin{innerlist3}
373
+		\item L3 -- Neuroanatomy -- 16h of Practical Course
374
+		\item L2 -- Methodology -- 24h of Practical Course
375
+		\end{innerlist3}
376
+	\end{innerlist2}
377
+\end{innerlist}
378
+\end{outerlist}
379
+\blankline
380
+
381
+\href{http://www.univ-perp.fr/en/index.html}{\textbf{Via Domitia University}}, Perpignan, France
382
+\begin{outerlist}
383
+\item[] \textit{Graduate Student}%
384
+        \hfill \textbf{September 2005 to June 2007}
385
+\begin{innerlist}
386
+\item \href{http://wwww.enseignementsup-recherche.gouv.fr/enseignementsup/bourses.htm/}{Merit Fellowship}, 2006--2007
387
+\end{innerlist}
388
+\item[] \textit{Graduate Research}%
389
+\begin{innerlist}
390
+\item Third  training course    \hfill \textbf{January 2007 to June 2007}
391
+\begin{innerlist2}
392
+\item Thesis topic: Intra-specific variation of the virulence in the host/parasitoïd \emph{Drosophila melanogaster}/\emph{Leptopilina boulardi} model: Search of target proteins of virulence factor
393
+\item Supervisor: \href{mailto:poirie@antibes.inra.fr}{Professor Marylène POIRIÉ}
394
+\end{innerlist2}
395
+\end{innerlist}
396
+
397
+\begin{innerlist}
398
+\item Second  training course    \hfill \textbf{July 2006 to September 2006}
399
+\begin{innerlist2}
400
+\item Thesis topic: Story of LaRD (Large Retrotransposon Derivative): Evolution of \emph{Dasheng} element across \emph{Oriza} genus
401
+\item Supervisor: \href{mailto:panaud@univ-perp.fr}{Professor Olivier PANAUD}
402
+\end{innerlist2}
403
+\end{innerlist}
404
+
405
+\begin{innerlist}
406
+\item First training course    \hfill \textbf{January 2006 to June 2006}
407
+\begin{innerlist2}
408
+\item Thesis topic: The compatibility in \emph{Biomphalaria glabrata}/\emph{Echinostoma capro$\-$ni} model: Suppression subtractive hybridization library and tissular expression of candidate genes
409
+\item Supervisor: \href{mailto:mitta@univ-perp.fr}{Professor Guillaume MITTA}
410
+\end{innerlist2}
411
+\end{innerlist}
412
+
413
+\end{outerlist}
414
+
415
+
416
+
417
+
418
+%----------------------------------
419
+\section{Responsibility activities}
420
+%----------------------------------
421
+%
422
+\textbf{Administrative responsabilities}
423
+\begin{outerlist}
424
+\item[] \textit{\href{http://ed-icbg.univ-poitiers.fr/}{ICBG doctoral school}}	\hfill \textbf{October 2007 to June 2009}
425
+	\begin{innerlist}
426
+	\item PhD student delegate
427
+	\end{innerlist}
428
+\item[] \textit{\href{http://www.ciescentre.fr/index.php?id=3}{CIES Centre (teaching monitor formation)}}	\hfill \textbf{October 2007 to June 2009}
429
+	\begin{innerlist}	
430
+	\item Teaching monitor delegate
431
+	\end{innerlist}
432
+\end{outerlist}
433
+\blankline
434
+
435
+\textbf{Associative responsabilities}
436
+\begin{outerlist}
437
+\item[] \textit{\href{http://moniteurs.poitiers.free.fr/index.php/TEMPO/TEMPO}{TEMPO association (association of PhD student and teaching monitor of Poitiers)}}
438
+	\begin{innerlist}
439
+	\item President of the association		\hfill \textbf{May 2009 to May 2010}
440
+	\item Vice President of the association	\hfill \textbf{May 2008 to May 2009}
441
+	\end{innerlist}
442
+\item[] \textit{\href{http://adbep.asso.univ-poitiers.fr/index.html}{ADBEP association (association of PhD student in biology and ecology of Poiters)}}
443
+	\begin{innerlist}
444
+	\item Secretairy of the association  \hfill \textbf{October 2008 to October 2009}
445
+	\item Delegate of the association in the \href{http://www.biotechno.asso.fr/}{BioTechno} network
446
+	\end{innerlist}
447
+\end{outerlist}
448
+
449
+
450
+%---------------------------------------------
451
+\section{Information dissemination activities}
452
+%---------------------------------------------
453
+%
454
+\textbf{Scientific dissemination}
455
+\begin{outerlist}
456
+\item[] \textit{Fête de la Science}
457
+	\begin{innerlist}
458
+	\item Presentation of laboratory thematics to public	\hfill \textbf{November 2009}
459
+	\item Presentation of laboratory thematics to public	\hfill \textbf{October 2007}
460
+	\end{innerlist}
461
+\end{outerlist}
462
+\blankline
463
+
464
+\textbf{Teaching dissemination}
465
+\begin{outerlist}
466
+\item[] \textit{University open house}
467
+	\begin{innerlist}
468
+	\item Presentation of the different courses of study	\hfill \textbf{January 2010}
469
+	\item Presentation of the different courses of study	\hfill \textbf{February 2009}
470
+	\end{innerlist}
471
+\end{outerlist}
472
+
473
+
474
+
475
+%----------------------
476
+\section{Publications}
477
+%----------------------
478
+%
479
+\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. \textit{in prep}\\
480
+\linebreak
481
+\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}}\\
482
+\linebreak
483
+\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}\\
484
+\linebreak
485
+\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://www3.interscience.wiley.com/journal/118488726/abstract}{The Plant Journal 2007 52(2):342-5}.
486
+
487
+
488
+
489
+%----------------------------------
490
+\section{Conference Participations}
491
+%----------------------------------
492
+%
493
+\textit{Oral communications}
494
+\begin{outerlist}
495
+
496
+	\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, June 9$^{th}$ to 14$^{th}$ 2010
497
+	
498
+	\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, Israel, March 14$^{th}$ 2010.
499
+	
500
+	\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]. Madeira Island, Portugal, January 20$^{th}$ to 23$^{th}$ 2010.
501
+	
502
+	\item Microbiology Day of Poitiers: \textit{Wolbachia ($\alpha$-proteobacteria) effects on immune cellular effectors of \emph{Armadillidium vulgare} (crustacean, terrestrial isopod)}. \textbf{Frédéric Chevalier}\footnotemark[1], Pierre Grève \& Christine Braquart-Varnier. Poitiers, France, December 9$^{th}$ 2009.
503
+	
504
+	\item Immuninv: \textit{\emph{Wolbachia} effects on immune effectors of \emph{Armadillidium vulgare} (crustacean, terrestrial isopod)}. \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, October 21$^{th}$ to 23$^{th}$ 2009.
505
+	
506
+	\item PhD Student Day: \textit{\emph{Wolbachia} effects on immune effectors of \emph{Armadillidium vulgare} (crustacean, terrestrial isopod)}. \textbf{Frédéric Chevalier}\footnotemark[1], Juline Herbinière, Mathieu Sicard, Maryline Raimond, Franck Morel, Pierre Grève \& Christine Braquart-Varnier. Poitiers, France, June 25$^{th}$ 2009.
507
+	
508
+	\item REID (French network of continue interaction ecology): \textit{\emph{Wolbachia} effects on immune cellular effectors of \emph{Armadillidium vulgare} (crustacean, terrestrial isopod)}. \textbf{Frédéric Chevalier}\footnotemark[1], Juline Herbinière, Mathieu Sicard, Maryline Raimond, Fran$\-$ck Morel, Pierre Grève \& Christine Braquart-Varnier. Amiens, France, January 14$^{th}$ to 15$^{th}$ 2009.
509
+	
510
+	\item Immuninv: \textit{\emph{Wolbachia} ($\alpha$-proteobacteria) symbiosis in terrestrial crustaceans: interactions with immune system.} 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, May 23$^{th}$ to 25$^{th}$ 2008.
511
+	
512
+	\item Immuninv (French community of invertebrate immunologists): \textit{\emph{Wolbachia} effects on immune cellular effectors of \emph{Armadillidium vulgare} (crustacean, terrestrial isopod)}. \textbf{Frédéric Chevalier}\footnotemark[1], Juline Herbinière, Mathieu Sicard, Maryline Raimond, Franck Morel, Pierre Grève \& Christine Braquart-Varnier. Montpellier, France, May 23$^{th}$ to 25$^{th}$ 2008.
513
+
514
+\footnotetext[1]{Presenting author}
515
+	
516
+\end{outerlist}
517
+
518
+\blankline
519
+
520
+\textit{Poster communications}
521
+
522
+\begin{outerlist}
523
+
524
+	\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, June 9$^{th}$ to 14$^{th}$ 2010.
525
+
526
+	\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, October 21$^{th}$ to 23$^{th}$ 2009.
527
+	
528
+	\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, October 21$^{th}$ to 23$^{th}$ 2009.
529
+	
530
+	\item Immuninv (French community of invertebrate immunologists): \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, October 21$^{th}$ to 23$^{th}$ 2009.
531
+	
532
+	\item \href{http://www.union.wisc.edu/symbiosis}{6$^{th}$ International Symbiosis Society}: \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, August 9$^{th}$ to 15$^{th}$ 2009.
533
+	
534
+	\item \href{http://www.cost-fa0701.com/}{COST-FA0701 Action Workshop Immunity and Symbiosis}: \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, May 27$^{th}$ to 30$^{th}$ 2009.
535
+	
536
+	\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, May 23$^{th}$ to 27$^{th}$ 2009.
537
+
538
+%\footnotetext[1]{Presenting author}
539
+
540
+\end{outerlist}
541
+
542
+
543
+
544
+%--------------------------------------
545
+\section{Training school participation}
546
+%--------------------------------------
547
+%
548
+\href{http://www.agri.huji.ac.il/index-eng.html}{\textbf{The Hebrew University of Jerusalem}}, Rehovot, Israël
549
+\begin{outerlist}
550
+\item[] \textit{\href{http://www.cost-fa0701.com/}{COST Training School} - Advances in Symbiosis Research}	\hfill \textbf{March 13$^{th}$ to 19$^{th}$ 2009}
551
+        \begin{innerlist}
552
+        \item Aims : state of the art in the symbiosis research domain in the COST Action FA0701.
553
+        \item Advisor : 
554
+              \href{mailto:yuval@agri.huji.ac.il}
555
+                   {Professeur Boaz YUVAL}
556
+        \item Topic : symbiosis study and associated techniques.
557
+        \end{innerlist}
558
+\end{outerlist}
559
+
560
+
561
+
562
+%----------------------------
563
+\section{Technical \\ Skills}
564
+%----------------------------
565
+%
566
+\textit{Experimental skills}
567
+\begin{outerlist}
568
+
569
+	\item Nucleic acids: DNA extraction, RNA extraction, PCR, RT-PCR, qPCR, RT-qPCR, cDNA library conception, DNA cloning, Sanger sequencing, \emph{in situ} hybridization
570
+
571
+	\item Proteins: Western blot, quantification of enzyme activity, protein expression in heterologous system, interaction detection (two hybrid system), HPLC protein purification
572
+
573
+	\item Cell biology: flow cytometry, apoptotic labelling (TUNEL and Annexin labelling), cell separation on gradient, manual and automated cell counting, epifluorescent microscopy, confocal microscopy, electron microscopy
574
+
575
+	\item Microbiology: fungi cultures, bacteria cultures, bacteria injections
576
+\end{outerlist}
577
+
578
+\blankline
579
+
580
+\textit{Bioinformatic skills}
581
+\begin{outerlist}
582
+
583
+	\item \href{http://blast.ncbi.nlm.nih.gov/Blast.cgi}{\textsc{Blast}}: local and online blast local, automated blast, conserved domain search tools (CDS)
584
+	
585
+	\item \href{http://www.mbio.ncsu.edu/BioEdit/bioedit.html}{\textsc{Bioedit}}: nucleotide and protein alignment (ClustalX), analysis of sequencing chromatogram,...
586
+	
587
+	\item Alignment algorithms: Clustal, \href{http://bioinfo.genotoul.fr/multalin/multalin.html} {\textsc{Multalin}}, MAFFT, PRANK, Guidance
588
+	
589
+	\item Statistic: R software, Jump software
590
+	
591
+\end{outerlist}
592
+
593
+
594
+
595
+%\newpage
596
+
597
+%---------------------
598
+\section{Other skills}
599
+%---------------------
600
+%
601
+\textit{Informatic skills}
602
+\begin{outerlist}
603
+
604
+	\item Programming: UNIX shell scripting, R scripting
605
+	
606
+	\item Applications: \TeX{}, \LaTeX{}, B\textsc{ib}\TeX{}, Microsoft Office, OpenOffice, LibreOffice and other office suites for GNU/Linux or Windows platforms
607
+	
608
+	\item Operating systems: GNU/Linux (Distributions Ubuntu, Mandriva, Debian), Microsoft Windows (2000/XP/Vista/7)
609
+	
610
+\end{outerlist}
611
+
612
+\blankline
613
+
614
+\textit{Language skills}
615
+\begin{outerlist}
616
+
617
+	\item Anglais : good working knowledge, TOEIC result 735/990 (oral comprehension 330/495, writting 405/495) (corresponding to CECRL level B1)
618
+
619
+	\item Spanish: good comprehension
620
+	
621
+	\item Latin: good comprehension
622
+	
623
+\end{outerlist}
624
+
625
+
626
+\end{document}
627
+
628
+%%%%%%%%%%%%%%%%%%%%%%%%%% End CV Document %%%%%%%%%%%%%%%%%%%%%%%%%%%%%
0 629
new file mode 100644
... ...
@@ -0,0 +1,647 @@
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
+% Layout: Puts the section titles on left side of page
36
+\reversemarginpar
37
+
38
+%
39
+%         PAPER SIZE, PAGE NUMBER, AND DOCUMENT LAYOUT NOTES:
40
+%
41
+% The next \usepackage line changes the layout for CV style section
42
+% headings as marginal notes. It also sets up the paper size as either
43
+% letter or A4. By default, letter was used. If A4 paper is desired,
44
+% comment out the letterpaper lines and uncomment the a4paper lines.
45
+%
46
+% As you can see, the margin widths and section title widths can be
47
+% easily adjusted.
48
+%
49
+% ALSO: Notice that the includefoot option can be commented OUT in order
50
+% to put the PAGE NUMBER *IN* the bottom margin. This will make the
51
+% effective text area larger.
52
+%
53
+% IF YOU WISH TO REMOVE THE ``of LASTPAGE'' next to each page number,
54
+% see the note about the +LP and -LP lines below. Comment out the +LP
55
+% and uncomment the -LP.
56
+%
57
+% IF YOU WISH TO REMOVE PAGE NUMBERS, be sure that the includefoot line
58
+% is uncommented and ALSO uncomment the \pagestyle{empty} a few lines
59
+% below.
60
+%
61
+
62
+%% Use these lines for letter-sized paper
63
+%\usepackage[paper=letterpaper,
64
+%            %includefoot, % Uncomment to put page number above margin
65
+%            marginparwidth=1.2in,     % Length of section titles
66
+%            marginparsep=.05in,       % Space between titles and text
67
+%            margin=1in,               % 1 inch margins
68
+%            includemp]{geometry}
69
+
70
+%% Use these lines for A4-sized paper
71
+\usepackage[paper=a4paper,
72
+            %includefoot, % Uncomment to put page number above margin
73
+            marginparwidth=30.5mm,    % Length of section titles
74
+            marginparsep=1.5mm,       % Space between titles and text
75
+            margin=22.5mm,              % 25mm margins
76
+            includemp]{geometry}
77
+
78
+%% More layout: Get rid of indenting throughout entire document
79
+\setlength{\parindent}{0in}
80
+
81
+%% This gives us fun enumeration environments. compactitem will be nice.
82
+\usepackage{paralist}
83
+
84
+%% Reference the last page in the page number
85
+%
86
+% NOTE: comment the +LP line and uncomment the -LP line to have page
87
+%       numbers without the ``of ##'' last page reference)
88
+%
89
+% NOTE: uncomment the \pagestyle{empty} line to get rid of all page
90
+%       numbers (make sure includefoot is commented out above)
91
+%
92
+\usepackage{fancyhdr,lastpage}
93
+\pagestyle{fancy}
94
+%\pagestyle{empty}      % Uncomment this to get rid of page numbers
95
+\fancyhf{}\renewcommand{\headrulewidth}{0pt}
96
+\fancyfootoffset{\marginparsep+\marginparwidth}
97
+\newlength{\footpageshift}
98
+\setlength{\footpageshift}
99
+          {0.5\textwidth+0.5\marginparsep+0.5\marginparwidth-2in}
100
+\lfoot{\hspace{\footpageshift}%
101
+       \parbox{4in}{\, \hfill %
102
+                    \arabic{page} sur \protect\pageref*{LastPage} % +LP
103
+%                    \arabic{page}                               % -LP
104
+                    \hfill \,}}
105
+
106
+% Finally, give us PDF bookmarks
107
+\usepackage{color,hyperref}
108
+\definecolor{darkblue}{rgb}{0.0,0.0,0.3}
109
+\hypersetup{colorlinks,breaklinks,
110
+            linkcolor=darkblue,urlcolor=darkblue,
111
+            anchorcolor=darkblue,citecolor=darkblue}
112
+
113
+%%%%%%%%%%%%%%%%%%%%%%%% End Document Setup %%%%%%%%%%%%%%%%%%%%%%%%%%%%
114
+
115
+
116
+%%%%%%%%%%%%%%%%%%%%%%%%%%% Helper Commands %%%%%%%%%%%%%%%%%%%%%%%%%%%%
117
+
118
+% The title (name) with a horizontal rule under it
119
+%
120
+% Usage: \makeheading{name}
121
+%
122
+% Place at top of document. It should be the first thing.
123
+\newcommand{\makeheading}[1]%
124
+        {\hspace*{-\marginparsep minus \marginparwidth}%
125
+         \begin{minipage}[t]{\textwidth+\marginparwidth+\marginparsep}%
126
+                {\large \bfseries #1}\\[-0.15\baselineskip]%
127
+                 \rule{\columnwidth}{1pt}%
128
+         \end{minipage}}
129
+
130
+% The section headings
131
+%
132
+% Usage: \section{section name}
133
+%
134
+% Follow this section IMMEDIATELY with the first line of the section
135
+% text. Do not put whitespace in between. That is, do this:
136
+%
137
+%       \section{My Information}
138
+%       Here is my information.
139
+%
140
+% and NOT this:
141
+%
142
+%       \section{My Information}
143
+%
144
+%       Here is my information.
145
+%
146
+% Otherwise the top of the section header will not line up with the top
147
+% of the section. Of course, using a single comment character (%) on
148
+% empty lines allows for the function of the first example with the
149
+% readability of the second example.
150
+\renewcommand{\section}[2]%
151
+        {\pagebreak[2]\vspace{2.5\baselineskip}%
152
+         \phantomsection\addcontentsline{toc}{section}{#1}%
153
+         \hspace{0in}%
154
+         \marginpar{
155
+%         \raggedright \scshape \textcolor{blue}{#1}}#2}%colored section
156
+         \raggedright \scshape #1}#2}%classical section
157
+
158
+% An itemize-style list with lots of space between items
159
+\newenvironment{outerlist}[1][\enskip\textbullet]%
160
+        {\begin{itemize}[#1]}{\end{itemize}%
161
+        \vspace{-.6\baselineskip}}
162
+
163
+% An environment IDENTICAL to outerlist that has better pre-list spacing
164
+% when used as the first thing in a \section 
165
+\newenvironment{lonelist}[1][\enskip\textbullet]%
166
+        {\vspace{-\baselineskip}\begin{list}{#1}{%
167
+        \setlength{\partopsep}{0pt}%
168
+        \setlength{\topsep}{0pt}}}
169
+        {\end{list}
170
+        \vspace{-.6\baselineskip}}
171
+
172
+% An itemize-style list with little space between items
173
+\newenvironment{innerlist}[1][\enskip\textbullet]%
174
+        {\begin{compactitem}[#1]}{\end{compactitem}}
175
+        
176
+\newenvironment{innerlist2}[1][\enskip -]%
177
+        {\begin{compactitem}[#1]}{\end{compactitem}}
178
+        
179
+\newenvironment{innerlist3}[1][\enskip $\succ$]%
180
+        {\begin{compactitem}[#1]}{\end{compactitem}}
181
+
182
+% To add some paragraph space between lines.
183
+% This also tells LaTeX to preferably break a page on one of these gaps
184
+% if there is a needed pagebreak nearby.
185
+\newcommand{\blankline}{\quad\pagebreak[2]}
186
+
187
+%%%%%%%%%%%%%%%%%%%%%%%% End Helper Commands %%%%%%%%%%%%%%%%%%%%%%%%%%%
188
+
189
+%%%%%%%%%%%%%%%%%%%%%%%%% Begin CV Document %%%%%%%%%%%%%%%%%%%%%%%%%%%%
190
+
191
+\begin{document}
192
+\makeheading{Frédéric CHEVALIER}
193
+
194
+%-----------------------------------
195
+\section{Informations personnelles}
196
+%-----------------------------------
197
+%
198
+Nom~: CHEVALIER \\
199
+Prénom~: Frédéric \\
200
+Genre~: Masculin \\
201
+Date de naissance~: 15 mai 1984\\
202
+Nationalité~: Française
203
+
204
+
205
+
206
+%---------------------------
207
+\section{Contact personnel}
208
+%---------------------------
209
+%
210
+% NOTE: Mind where the & separators and \\ breaks are in the following
211
+%       table.
212
+%
213
+% ALSO: \rcollength is the width of the right column of the table 
214
+%       (adjust it to your liking; default is 1.85in).
215
+%
216
+\newlength{\rcollength}\setlength{\rcollength}{6.5cm}%
217
+%
218
+\begin{tabular}[t]{@{}p{\textwidth-\rcollength}p{\rcollength}}
219
+Appartement 7 & \\
220
+73 Promenade des Cours & \textit{Tel.:} +33 (0)6 74 48 56 21 \\
221
+86000 Poitiers France & \textit{E-mail:} \href{mailto:f15.chevalier@gmail.com} {f15.chevalier@gmail.com}\\
222
+\end{tabular}
223
+
224
+
225
+
226
+%-------------------------------
227
+\section{Contact professionnel}
228
+%-------------------------------
229
+%
230
+% NOTE: Mind where the & separators and \\ breaks are in the following
231
+%       table.
232
+%
233
+% ALSO: \rcollength is the width of the right column of the table 
234
+%       (adjust it to your liking; default is 1.85in).
235
+%
236
+%\newlength{\rcollength}\setlength{\rcollength}{6.5cm}%
237
+%
238
+\begin{tabular}[t]{@{}p{\textwidth-\rcollength}p{\rcollength}}
239
+\href{http://ecoevol.labo.univ-poitiers.fr/spip.php?rubrique32}%
240
+     {Laboratoire Écologie, Évolution, Symbiose} & \\
241
+UMR CNRS 6556 & \textit{Tel.:} +33 (0)5 49 36 62 46 \\
242
+\href{http://www.univ-poitiers.fr/}{Université de Poitiers} & \textit{Fax:} +33 (0)5 49 45 40 15 \\
243
+40 avenue du Recteur Pineau           	& \textit{E-mail:} \href{mailto:frederic.chevalier@univ-poitiers.fr} {frederic.chevalier@univ-poitiers.fr}\\
244
+86022 Poitiers Cedex France    		& \textit{www:} \href{http://ecoevol.labo.univ-poitiers.fr/?lang=fr}{ecoevol.labo.univ-poitiers.fr}\\
245
+\end{tabular}
246
+
247
+
248
+
249
+%-----------------------------
250
+\section{Thèmes de recherche}
251
+%-----------------------------
252
+%
253
+Symbiose, Interaction Hôte-Symbiote, Immunité, Immunocompetence
254
+
255
+
256
+
257
+%--------------------
258
+\section{Formations}
259
+%--------------------
260
+%
261
+\href{http://www.univ-poitiers.fr/}{\textbf{Université de Poitiers}}, Poitiers, France
262
+\begin{outerlist}
263
+\item[] \textit{Doctorat}
264
+        \hfill \textbf{Octobre 2007 à maintenant}
265
+        \begin{innerlist}
266
+        \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)
267
+        \item Directeurs~: 
268
+              \href{mailto:christine.braquart@univ-poitiers.fr}
269
+                   {Docteur Christine BRAQUART-VARNIER} --
270
+              \href{mailto:pierre.greve@univ-poitiers.fr}
271
+                   {Professeur Pierre GRÈVE}
272
+        \item Domaine: Effets de la présence de \emph{Wolbachia} sur l'immununité d'un invertébré
273
+        \end{innerlist}
274
+\end{outerlist}
275
+
276
+\blankline
277
+              
278
+\href{http://www.univ-perp.fr/fr/index.html}{\textbf{Université Via Domitia}}, Perpignan, France
279
+\begin{outerlist}
280
+\item[] \textit{Master Écologie fonctionnelle~: des molécules aux populations naturelles} (mention Bien)
281
+        \hfill \textbf{Septembre 2005 à Juin 2007}
282
+        \begin{innerlist}
283
+        \item Objectifs~: compréhension des interactions s'établissant entre les organismes et leur environnement du niveau moléculaire jusqu'au niveau écologique.
284
+        \item Responsable~: 
285
+              \href{mailto:mitta@univ-perp.fr}
286
+                   {Professeur Guillaume MITTA}
287
+        \item Thème~: biologie moléculaire et écologie
288
+        \end{innerlist}
289
+
290
+\item[] \textit{Licence Phytosciences} (mention Bien)
291
+        \hfill \textbf{Septembre 2002 à Juin 2005}
292
+        \begin{innerlist}
293
+        \item Biologie moléculaire et écologie végétale
294
+        \end{innerlist}
295
+\end{outerlist}
296
+
297
+
298
+
299
+%----------------------
300
+\section{Financements} 
301
+%----------------------
302
+%
303
+\href{http://www.enseignementsup-recherche.gouv.fr}{\textbf{Ministère de l'enseignement supérieur et de la recherche}}
304
+\begin{innerlist}
305
+\item {Poste d'Attaché Temporaire à l'Enseignement et à la Recherche (ATER)} 2010--2011
306
+\item \href{http://dr.education.fr/Alloc_doc/}{Allocation ministérielle} 2007--2010
307
+\item {Allocation de monitorat} 2007--2010
308
+\item \href{http://wwww.enseignementsup-recherche.gouv.fr/enseignementsup/bourses.htm/}{Bourse au mérite} 2006--2007
309
+\end{innerlist}
310
+
311
+\newpage
312
+
313
+
314
+
315
+%------------------------------------
316
+\section{Expérience professionnelle}
317
+%------------------------------------
318
+%
319
+\href{http://www.univ-poitiers.fr}{\textbf{Université de Poitiers}}, Poitiers, France
320
+\begin{outerlist}
321
+\item[] \textit{Doctorat}%
322
+        \hfill \textbf{Octobre 2007 à maintenant}
323
+\begin{innerlist}
324
+\item \href{http://dr.education.fr/Alloc_doc/}{Allocation de recherche} 2007--2010
325
+\end{innerlist}
326
+\end{outerlist}
327
+
328
+\begin{outerlist}
329
+\item[] \textit{ATER}%
330
+        \hfill \textbf{Octobre 2010 à Septembre 2011}
331
+\begin{innerlist}
332
+\item Niveau Master
333
+	\begin{innerlist2}
334
+	\item Master Recherche Biologie, Écologie, Évolution
335
+		\begin{innerlist3}
336
+		\item M2 -- Immunologie des Invertébrés -- 6h TD -- 8h TP
337
+		\item M2 -- Applications de l'HPLC en biologie -- 2h TP
338
+		\end{innerlist3}
339
+	\item Master \textit{Erasmus Mundus} EMAE (European Master in Applied Ecology)
340
+		\begin{innerlist3}
341
+		\item  M1 -- Écophysiologie -- 7h TP
342
+		\end{innerlist3}
343
+	\item Master Professionnel Génie Écologique
344
+		\begin{innerlist3}
345
+		\item M1 -- Écophysiologie -- 6h TD -- 16h TP
346
+		\end{innerlist3}
347
+	\item Master Biologie Générale Sciences de la Terre et de l'Univers
348
+		\begin{innerlist3}
349
+		\item  M1 -- Évolution des grandes fonctions -- 4h TD -- 4h TP
350
+		\end{innerlist3}
351
+	\end{innerlist2}
352
+\end{innerlist}
353
+
354
+\begin{innerlist}
355
+\item Niveau Licence
356
+	\begin{innerlist2}
357
+	\item Licence Écologie et Biologie des Organismes
358
+		\begin{innerlist3}
359
+		\item L3 -- Fonctions sensorielles -- 21h TP
360
+		\item L3 -- Visite de Laboratoire -- 6h TD
361
+		\item L2 -- Méthodologie -- 12h TP
362
+		\end{innerlist3}
363
+	\item Licence Biologie, Géologie et Sciences de la Terre
364
+		\begin{innerlist3}
365
+		\item L3 -- Neuroanatomie -- 16h TP
366
+		\item L2 -- Évolution des plans d'organisation -- 6h TD
367
+		\item L2 -- Méthodologie -- 12h TP
368
+		\end{innerlist3}
369
+	\item {Licence Science de la Vie et Géologie}
370
+		\begin{innerlist3}
371
+		\item L1 -- Diversité du Vivant -- 14h TD -- 33 h TP
372
+		\item L1 -- Organismes et milieux -- 28h TD -- 18h TP
373
+		\end{innerlist3}
374
+	\end{innerlist2}
375
+\end{innerlist}
376
+\end{outerlist}
377
+
378
+\begin{outerlist}
379
+\item[] \textit{Monitorat}%
380
+        \hfill \textbf{Octobre 2007 à 2010}
381
+\begin{innerlist}
382
+\item Niveau Master
383
+	\begin{innerlist2}
384
+	\item Master Recherche Biologie, Écologie, Évolution
385
+		\begin{innerlist3}
386
+		\item M2 -- Applications de l'HPLC en biologie -- 2h TP
387
+		\end{innerlist3}
388
+	\item Master \textit{Erasmus Mundus} EMAE (European Master in Applied Ecology)
389
+		\begin{innerlist3}
390
+		\item  M1 -- Écophysiologie -- 7h TP
391
+		\end{innerlist3}
392
+	\item Master Professionnel Génie Écologique
393
+		\begin{innerlist3}
394
+		\item M1 -- Écophysiologie -- 16h TP
395
+		\end{innerlist3}
396
+	\item Master Biologie Générale Sciences de la Terre et de l'Univers
397
+		\begin{innerlist3}
398
+		\item  M1 -- Évolution des grandes fonctions -- 5h TD -- 6h TP
399
+		\end{innerlist3}
400
+	\end{innerlist2}
401
+\end{innerlist}
402
+
403
+\begin{innerlist}
404
+\item Niveau Licence
405
+	\begin{innerlist2}
406
+	\item Licence Écologie et Biologie des Organismes
407
+		\begin{innerlist3}
408
+		\item L3 -- Fonctions sensorielles -- 21h TP
409
+		\item L2 -- Évolution des plans d'organisation -- 6h TD -- 13h TP	%?? cf ATER
410
+		\item L2 -- Méthodologie -- 12h TP
411
+		\end{innerlist3}
412
+	\item Licence Biologie, Géologie et Sciences de la Terre
413
+		\begin{innerlist3}
414
+		\item L3 -- Neuroanatomie -- 16h TP
415
+		\item L2 -- Méthodologie -- 12h TP
416
+		\end{innerlist3}
417
+	\end{innerlist2}
418
+\end{innerlist}
419
+\end{outerlist}
420
+\blankline
421
+
422
+\href{http://www.univ-perp.fr/fr/index.html}{\textbf{Université Via Domitia}}, Perpignan, France
423
+\begin{outerlist}
424
+\item[] \textit{Master}
425
+        \hfill \textbf{Septembre 2005 à Juin 2007}
426
+\begin{innerlist}
427
+\item \href{http://wwww.enseignementsup-recherche.gouv.fr/enseignementsup/bourses.htm/}{Bourse au mérite} 2006--2007
428
+\end{innerlist}
429
+\item[] \textit{Stages de recherche}
430
+\begin{innerlist}
431
+\item Troisième stage    \hfill \textbf{Janvier 2007 à Juin 2007}
432
+\begin{innerlist2}
433
+\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
434
+\item Directeur~: \href{mailto:poirie@antibes.inra.fr}{Professeur Marylène POIRIÉ}
435
+\end{innerlist2}
436
+\end{innerlist}
437
+
438
+\begin{innerlist}
439
+\item Deuxième stage  \hfill \textbf{Juillet 2006 à Septembre 2006}
440
+\begin{innerlist2}
441
+\item Sujet~: Histoire de LARD (Large Retrotransposon Derivative)~: Évolution de l'élément Dasheng au sein du genre \emph{Oriza}
442
+\item Directeur~: \href{mailto:panaud@univ-perp.fr}{Professeur Olivier PANAUD}
443
+\end{innerlist2}
444
+\end{innerlist}
445
+
446
+\begin{innerlist}
447
+\item Premier stage    \hfill \textbf{Janvier 2006 à Juin 2006}
448
+\begin{innerlist2}
449
+\item Sujet~: La compatibilité dans le modèle \emph{Biomphalaria glabrata}/\emph{Echinostoma caproni}~: Banques SSH et expression tissulaire de gènes candidats
450
+\item Directeur: \href{mailto:mitta@univ-perp.fr}{Professeur Guillaume MITTA}
451
+\end{innerlist2}
452
+\end{innerlist}
453
+
454
+\end{outerlist}
455
+
456
+
457
+
458
+%------------------------------------
459
+\section{Activités à responsabilité}
460
+%------------------------------------
461
+%
462
+\textbf{Responsabilités administratives}
463
+\begin{outerlist}
464
+\item[] \textit{\href{http://ed-icbg.univ-poitiers.fr/}{École Doctorale ICBG}}	\hfill \textbf{Octobre 2007 à Juin 2009}
465
+	\begin{innerlist}
466
+	\item Représentant des doctorants
467
+	\end{innerlist}
468
+\item[] \textit{\href{http://www.ciescentre.fr/index.php?id=3}{CIES Centre}}	\hfill \textbf{Octobre 2007 à Juin 2009}%
469
+	\begin{innerlist}	
470
+	\item Représentant des moniteurs 
471
+	\end{innerlist}
472
+\end{outerlist}
473
+\blankline
474
+
475
+\textbf{Responsabilités associatives}
476
+\begin{outerlist}
477
+\item[] \textit{\href{http://moniteurs.poitiers.free.fr/index.php/TEMPO/TEMPO}{TEMPO} (Thésards Et Moniteurs de POitiers)}	
478
+	\begin{innerlist}
479
+	\item Président de l'association  \hfill \textbf{Mai 2009 à Mai 2010}
480
+	\item Vice-président de l'association	 \hfill \textbf{Mai 2008 à Mai 2009}
481
+	\end{innerlist}
482
+\item[] \textit{\href{http://adbep.asso.univ-poitiers.fr/index.html}{ADBEP} (Association des Doctorants en Biologie et Ecologie de Poiters)}	
483
+	\begin{innerlist}
484
+	\item Secrétaire de l'association  \hfill \textbf{Octobre 2008 à Octobre 2009}
485
+	\item Représentant de l'association auprès du réseau \href{http://www.biotechno.asso.fr/}{BioTechno}
486
+	\end{innerlist}
487
+\end{outerlist}
488
+
489
+
490
+
491
+%-------------------------------------------------
492
+\section{Activités de diffusion et d'information}
493
+%-------------------------------------------------
494
+%
495
+\textbf{Diffusion scientifique}
496
+\begin{outerlist}
497
+\item[] \textit{Fête de la Science}
498
+	\begin{innerlist}
499
+	\item Présentation des thématiques du laboratoire au grand public	\hfill \textbf{Novembre 2009}
500
+		\item Présentation des thématiques du laboratoire au grand public	\hfill \textbf{Octobre 2007}
501
+	\end{innerlist}
502
+\end{outerlist}
503
+\blankline
504
+
505
+\textbf{Information sur l'enseignement}
506
+\begin{outerlist}
507
+\item[] \textit{Journées Portes Ouvertes de l'Université}
508
+	\begin{innerlist}
509
+	\item Présentation des différents parcours et enseignement  \hfill \textbf{Janvier 2010}
510
+	\item Présentation des différents parcours et enseignement  \hfill \textbf{Février 2009}
511
+	\end{innerlist}
512
+\end{outerlist}
513
+
514
+
515
+
516
+%----------------------
517
+\section{Publications}
518
+%----------------------
519
+%
520
+\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\\
521
+%\linebreak
522
+
523
+\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}}\\
524
+%\linebreak
525
+
526
+\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}\\
527
+%\linebreak
528
+
529
+\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}.
530
+
531
+%\newpage
532
+
533
+
534
+
535
+%------------------------------------
536
+\section{Participations aux congrès}
537
+%------------------------------------
538
+%
539
+\textbf{Communications orales}
540
+\begin{outerlist}
541
+	\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
542
+
543
+	\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
544
+
545
+	\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
546
+
547
+	\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
548
+
549
+	\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
550
+
551
+	\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
552
+
553
+	\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
554
+\end{outerlist}
555
+
556
+\footnotetext[1]{Auteur ayant présenté}
557
+
558
+\blankline
559
+
560
+\textbf{Communications posters}
561
+
562
+\begin{outerlist}
563
+	\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
564
+
565
+	\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
566
+	
567
+	\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
568
+
569
+	\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
570
+
571
+	\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
572
+
573
+	\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
574
+
575
+	\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
576
+\end{outerlist}
577
+
578
+\footnotetext[1]{Auteur ayant présenté}
579
+
580
+
581
+
582
+%----------------------------------------------
583
+\section{Participation aux Écoles Thématiques}
584
+%----------------------------------------------
585
+%
586
+\href{http://www.agri.huji.ac.il/index-eng.html}{\textbf{Université Hébraïque de Jérusalem}}, Rehovot, Israël
587
+\begin{outerlist}
588
+\item[] \textit{\href{http://www.cost-fa0701.com/}{COST Training School} - Advances in Symbiosis Research}	\hfill \textbf{13 au 19 Mars 2009}
589
+        \begin{innerlist}
590
+        \item Objectifs~: état des lieux des avancés dans le domaine de la recherche sur la symbiose dans le cadre du COST Action FA0701.
591
+        \item Responsable~: 
592
+              \href{mailto:yuval@agri.huji.ac.il}
593
+                   {Professeur Boaz YUVAL}
594
+        \item Thème~: étude des symbioses et techniques associées.
595
+        \end{innerlist}
596
+\end{outerlist}
597
+
598
+
599
+
600
+%--------------------------------
601
+\section{Compétences techniques}
602
+%--------------------------------
603
+%
604
+\textit{Compétences expérimentales}
605
+\begin{outerlist}
606
+	\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}
607
+	\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
608
+	\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
609
+	\item Microbiologie~: cultures de champignons, cultures de bactéries, injections de bactéries
610
+\end{outerlist}
611
+
612
+\blankline
613
+
614
+\textit{Compétences en bioinformatique}
615
+\begin{outerlist}
616
+	\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)
617
+	\item Recherche de similarités de domaines protéiques~:  ProScan, Conserved Domain Search
618
+	\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
619
+	\item Logiciels statistiques~: programmes R, \textsc{Jmp}
620
+\end{outerlist}
621
+
622
+
623
+
624
+%----------------------------
625
+\section{Autres compétences}
626
+%----------------------------
627
+%
628
+\textit{Compétences informatiques}
629
+\begin{outerlist}
630
+\item Programmation~: conception de scripts UNIX shell (bash, sh, etc.), de scripts R
631
+\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{}, 
632
+\item Maîtrise de systèmes d'exploitation~: GNU/Linux (Distributions Ubuntu, Mandriva, Debian), Microsoft Windows (2000/XP/Vista/7)
633
+\end{outerlist}
634
+
635
+\blankline
636
+
637
+\textit{Compétences linguistiques}
638
+\begin{outerlist}
639
+\item Anglais~: lu, écrit, parlé (TOEIC 735/990, oral 330/495, écrit 405/495)
640
+\item Espagnol~: lu, écrit
641
+\item Latin~: lu, écrit
642
+\end{outerlist}
643
+
644
+
645
+\end{document}
646
+
647
+%%%%%%%%%%%%%%%%%%%%%%%%%% End CV Document %%%%%%%%%%%%%%%%%%%%%%%%%%%%%
0 648
\ No newline at end of file