PhD Student in Cryptography
I am a PhD Student at École Normale Supérieure of Paris, France with David Pointcheval as advisor working on lattice-based cryptography and fully homomorphic encryption. My research topics also relate to the fine tuning of concrete scheme parameters to yield both efficient and practically secure implementations.
I am also a cryptography engineer at CryptoExperts in Paris, France to pursue my PhD in an industrial environment with Pascal Paillier as advisor.
Conference Publications
Manuscripts
Theses
Misc.
One will find below several LaTeX tips which could be useful, and I did not see elsewhere on the Internet. I do not guarantee their simplicity, and every tip to improve them or to bypass them are still welcomed.
Bibliography (cited on page x)
After each item in the bibliography, one can wish to insert the pages where this item is cited in the main document. The parameters backref,pagebackref=true can be added to the package hyperref.
However, the final design is not really beautiful and clean (according to me, since the pages are just added between bracks). Here a small redefinition of \backrefalt to modify it in whatever you want:
% simple backref command redefinition (not sure if it is necessary)
\renewcommand*{\backref}[1]{}
% redefinition of the actually used \backrefalt
\renewcommand*{\backrefalt}[4]{%
\ifcase #1 %
% case: not cited
\or
% case: cited on exactly one page
\bfseries [page~#2]%
\else
% case: cited on multiple pages
\bfseries [pages~#2]
\fi}
Answers and Hyperref
In order to provide correction of exercises sheets to my students, I wanted to give them a pdf file with crossed links between exercices and solutions, i.e. you can go from an exercise to its solution, and from the solution to the exercise.
The last time I checked, the packages answers and hyperref did not provide this ability without modification.
One will find below a minimal example in which such an ability is provided, namely, when you click on the exercise number, you obtain the solution; and when you click on the solution number, you get back the exercise.