Advertisement
Guest User

Untitled

a guest
Nov 10th, 2010
508
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 3.71 KB | None | 0 0
  1. %% start of file `template.tex'.
  2. %% Copyright 2006-2010 Xavier Danaux ([email protected]).
  3. %
  4. % This work may be distributed and/or modified under the
  5. % conditions of the LaTeX Project Public License version 1.3c,
  6. % available at http://www.latex-project.org/lppl/.
  7.  
  8.  
  9. \documentclass[11pt,a4paper]{moderncv}
  10.  
  11. % moderncv themes
  12. \moderncvtheme[blue]{casual}                 % optional argument are 'blue' (default), 'orange', 'red', 'green', 'grey' and 'roman' (for roman fonts, instead of sans serif fonts)
  13. %\moderncvtheme[green]{classic}                % idem
  14.  
  15. % character encoding
  16. \usepackage[utf8]{inputenc}                   % replace by the encoding you are using
  17.  
  18. % adjust the page margins
  19. \usepackage[scale=0.8]{geometry}
  20. %\setlength{\hintscolumnwidth}{3cm}                     % if you want to change the width of the column with the dates
  21. %\AtBeginDocument{\setlength{\maketitlenamewidth}{6cm}}  % only for the classic theme, if you want to change the width of your name placeholder (to leave more space for your address details
  22. %\AtBeginDocument{\recomputelengths}                     % required when changes are made to page layout lengths
  23.  
  24. % personal data
  25. \firstname{John}
  26. \familyname{Doe}
  27. \title{Resumé title (optional)}               % optional, remove the line if not wanted
  28. \address{street and number}{postcode city}    % optional, remove the line if not wanted
  29. \mobile{mobile (optional)}                    % optional, remove the line if not wanted
  30. \phone{phone (optional)}                      % optional, remove the line if not wanted
  31. \fax{fax (optional)}                          % optional, remove the line if not wanted
  32. \email{email (optional)}                      % optional, remove the line if not wanted
  33. \homepage{homepage (optional)}                % optional, remove the line if not wanted
  34. \extrainfo{additional information (optional)} % optional, remove the line if not wanted
  35. \photo[64pt]{picture}                         % '64pt' is the height the picture must be resized to and 'picture' is the name of the picture file; optional, remove the line if not wanted
  36. \quote{Some quote (optional)}                 % optional, remove the line if not wanted
  37.  
  38. % to show numerical labels in the bibliography; only useful if you make citations in your resume
  39. \makeatletter
  40. \renewcommand*{\bibliographyitemlabel}{\@biblabel{\arabic{enumiv}}}
  41. \makeatother
  42.  
  43. % bibliography with mutiple entries
  44. %\usepackage{multibib}
  45. %\newcites{book,misc}{{Books},{Others}}
  46.  
  47. %\nopagenumbers{}                             % uncomment to suppress automatic page numbering for CVs longer than one page
  48. %----------------------------------------------------------------------------------
  49. %            content
  50. %----------------------------------------------------------------------------------
  51. \begin{document}
  52. \maketitle
  53.  
  54. \begin{tabular}{|r|l|}
  55.             fdfd&blaa\\
  56. \end{tabular}
  57.  
  58.  
  59. \section{Education}
  60. \cventry{year--year}{Degree}{Institution}{City}{\textit{Grade}}{Description}  % arguments 3 to 6 can be left empty
  61. \cventry{year--year}{Degree}{Institution}{City}{\textit{Grade}}{Description}
  62.  
  63. \section{Master thesis}
  64. \cvline{title}{\emph{Title}}
  65. \cvline{supervisors}{Supervisors}
  66. \cvline{description}{\small Short thesis abstract}
  67.  
  68.  
  69. \renewcommand{\listitemsymbol}{-} % change the symbol for lists
  70.  
  71. \section{Extra 2}
  72. \cvlistdoubleitem{Item 1}{Item 4}
  73. \cvlistdoubleitem{Item 2}{Item 5 \cite{book1}}
  74. \cvlistdoubleitem{Item 3}{}
  75.  
  76. % Publications from a BibTeX file without multibib\renewcommand*{\bibliographyitemlabel}{\@biblabel{\arabic{enumiv}}}% for BibTeX numerical labels
  77. \nocite{*}
  78. \bibliographystyle{plain}
  79. \bibliography{publications}       % 'publications' is the name of a BibTeX file
  80.  
  81.  
  82. \end{document}
  83.  
  84.  
  85. %% end of file `template_en.tex'.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement