Dev version retroactive commit
This commit is contained in:
4
examples/multibib/multibib.sh
Normal file
4
examples/multibib/multibib.sh
Normal file
@ -0,0 +1,4 @@
|
||||
#!/bin/bash
|
||||
for file in *.aux ; do
|
||||
bibtex <20>basename $file .aux<75>
|
||||
done
|
||||
44
examples/multibib/publications.bib
Normal file
44
examples/multibib/publications.bib
Normal file
@ -0,0 +1,44 @@
|
||||
%% start of file `jdoe_publications.bib'.
|
||||
%% Copyright 2006 Xavier Danaux (xdanaux<AT>gmail.com).
|
||||
%
|
||||
% This work may be distributed and/or modified under the
|
||||
% conditions of the LaTeX Project Public License version 1.3c,
|
||||
% available at http://www.latex-project.org/lppl/.
|
||||
|
||||
|
||||
@BOOK{book1,
|
||||
author = {John Doe and Author 2},
|
||||
title = {Title},
|
||||
publisher = {Publisher},
|
||||
edition = {edition},
|
||||
year = {year},
|
||||
}
|
||||
|
||||
@BOOK{book2,
|
||||
author = {John Doe and Author 2},
|
||||
title = {Title},
|
||||
publisher = {Publisher},
|
||||
edition = {edition},
|
||||
year = {year},
|
||||
}
|
||||
|
||||
@MISC{misc1,
|
||||
author = {John Doe},
|
||||
title = {Title},
|
||||
year = {year},
|
||||
}
|
||||
|
||||
@MISC{misc2,
|
||||
author = {John Doe},
|
||||
title = {Title},
|
||||
year = {year},
|
||||
}
|
||||
|
||||
@MISC{misc3,
|
||||
author = {John Doe},
|
||||
title = {Title},
|
||||
year = {year},
|
||||
}
|
||||
|
||||
|
||||
%% end of file `jdoe_publications.bib'.
|
||||
BIN
examples/multibib/template_en.pdf
Normal file
BIN
examples/multibib/template_en.pdf
Normal file
Binary file not shown.
132
examples/multibib/template_en.tex
Normal file
132
examples/multibib/template_en.tex
Normal file
@ -0,0 +1,132 @@
|
||||
%% start of file `template_en.tex'.
|
||||
%% Copyright 2006-1008 Xavier Danaux (xdanaux@gmail.com).
|
||||
%
|
||||
% This work may be distributed and/or modified under the
|
||||
% conditions of the LaTeX Project Public License version 1.3c,
|
||||
% available at http://www.latex-project.org/lppl/.
|
||||
|
||||
|
||||
\documentclass[11pt,a4paper]{moderncv}
|
||||
|
||||
% moderncv themes
|
||||
\moderncvtheme[blue]{casual} % optional argument are 'blue' (default), 'orange', 'red', 'green', 'grey' and 'roman' (for roman fonts, instead of sans serif fonts)
|
||||
%\moderncvtheme[green]{classic} % idem
|
||||
|
||||
% character encoding
|
||||
\usepackage[utf8]{inputenc} % replace by the encoding you are using
|
||||
|
||||
% adjust the page margins
|
||||
\usepackage[scale=0.8]{geometry}
|
||||
%\setlength{\hintscolumnwidth}{3cm} % if you want to change the width of the column with the dates
|
||||
%\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
|
||||
\AtBeginDocument{\recomputelengths} % required when changes are made to page layout lengths
|
||||
|
||||
% personal data
|
||||
\firstname{John}
|
||||
\familyname{Doe}
|
||||
\title{Resumé title (optional)} % optional, remove the line if not wanted
|
||||
\address{street and number}{postcode city} % optional, remove the line if not wanted
|
||||
\mobile{mobile (optional)} % optional, remove the line if not wanted
|
||||
\phone{phone (optional)} % optional, remove the line if not wanted
|
||||
\fax{fax (optional)} % optional, remove the line if not wanted
|
||||
\email{email (optional)} % optional, remove the line if not wanted
|
||||
\extrainfo{additional information (optional)} % optional, remove the line if not wanted
|
||||
\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
|
||||
\quote{Some quote (optional)} % optional, remove the line if not wanted
|
||||
|
||||
%\nopagenumbers{} % uncomment to suppress automatic page numbering for CVs longer than one page
|
||||
|
||||
% bibliography with mutiple entries
|
||||
\usepackage{multibib}
|
||||
\newcites{book,misc}{{Books},{Others}}
|
||||
\makeatletter
|
||||
\renewenvironment{thebibliography}[1]%
|
||||
{%
|
||||
\subsection{\refname}%
|
||||
\small%
|
||||
\begin{list}{\bibliographyitemlabel}%
|
||||
{%
|
||||
\setlength{\topsep}{0pt}%
|
||||
\setlength{\labelwidth}{\hintscolumnwidth}%
|
||||
\setlength{\labelsep}{\separatorcolumnwidth}%
|
||||
\leftmargin\labelwidth%
|
||||
\advance\leftmargin\labelsep%
|
||||
\@openbib@code%
|
||||
\usecounter{enumiv}%
|
||||
\let\p@enumiv\@empty%
|
||||
\renewcommand\theenumiv{\@arabic\c@enumiv}}%
|
||||
\sloppy\clubpenalty4000\widowpenalty4000%
|
||||
}%
|
||||
{%
|
||||
\def\@noitemerr{\@latex@warning{Empty `thebibliography' environment}}%
|
||||
\end{list}%
|
||||
}
|
||||
\makeatother
|
||||
|
||||
%----------------------------------------------------------------------------------
|
||||
% content
|
||||
%----------------------------------------------------------------------------------
|
||||
\begin{document}
|
||||
\maketitle
|
||||
|
||||
\section{Education}
|
||||
\cventry{year--year}{Degree}{Institution}{City}{\textit{Grade}}{Description} % arguments 3 to 6 are optional
|
||||
\cventry{year--year}{Degree}{Institution}{City}{\textit{Grade}}{Description} % arguments 3 to 6 are optional
|
||||
|
||||
\section{Master thesis}
|
||||
\cvline{title}{\emph{Title}}
|
||||
\cvline{supervisors}{Supervisors}
|
||||
\cvline{description}{\small Short thesis abstract}
|
||||
|
||||
\section{Experience}
|
||||
\subsection{Vocational}
|
||||
\cventry{year--year}{Job title}{Employer}{City}{}{Description} % arguments 3 to 6 are optional
|
||||
\cventry{year--year}{Job title}{Employer}{City}{}{Description} % arguments 3 to 6 are optional
|
||||
\subsection{Miscellaneous}
|
||||
\cventry{year--year}{Job title}{Employer}{City}{}{Description line 1\newline{}Description line 2}% arguments 3 to 6 are optional
|
||||
|
||||
\section{Languages}
|
||||
\cvlanguage{language 1}{Skill level}{Comment}
|
||||
\cvlanguage{language 2}{Skill level}{Comment}
|
||||
\cvlanguage{language 3}{Skill level}{Comment}
|
||||
|
||||
\section{Computer skills}
|
||||
\cvcomputer{category 1}{XXX, YYY, ZZZ}{category 4}{XXX, YYY, ZZZ}
|
||||
\cvcomputer{category 2}{XXX, YYY, ZZZ}{category 5}{XXX, YYY, ZZZ}
|
||||
\cvcomputer{category 3}{XXX, YYY, ZZZ}{category 6}{XXX, YYY, ZZZ}
|
||||
|
||||
\section{Interests}
|
||||
\cvline{hobby 1}{\small Description}
|
||||
\cvline{hobby 2}{\small Description}
|
||||
\cvline{hobby 3}{\small Description}
|
||||
|
||||
\renewcommand{\listitemsymbol}{-} % change the symbol for lists
|
||||
|
||||
\section{Extra 1}
|
||||
\cvlistitem{Item 1}
|
||||
\cvlistitem{Item 2}
|
||||
\cvlistitem[+]{Item 3} % optional other symbol
|
||||
|
||||
\section{Extra 2}
|
||||
\cvlistdoubleitem[\Neutral]{Item 1}{Item 4}
|
||||
\cvlistdoubleitem[\Neutral]{Item 2}{Item 5}
|
||||
\cvlistdoubleitem[\Neutral]{Item 3}{}
|
||||
|
||||
% Publications from a BibTeX file
|
||||
%\nocite{*}
|
||||
%\bibliographystyle{plain}
|
||||
%\bibliography{publications} % 'publications' is the name of a BibTeX file
|
||||
|
||||
% Publications with mutibib
|
||||
\section{Publications}
|
||||
\nocitebook{book1,book2}
|
||||
\bibliographystylebook{plain}
|
||||
\bibliographybook{publications} % 'publications' is the name of a BibTeX file
|
||||
\nocitemisc{misc1,misc2,misc3}
|
||||
\bibliographystylemisc{plain}
|
||||
\bibliographymisc{publications} % 'publications' is the name of a BibTeX file
|
||||
|
||||
\end{document}
|
||||
|
||||
|
||||
%% end of file `template_en.tex'.
|
||||
28
examples/template_en.aux
Normal file
28
examples/template_en.aux
Normal file
@ -0,0 +1,28 @@
|
||||
\relax
|
||||
\ifx\hyper@anchor\@undefined
|
||||
\global \let \oldcontentsline\contentsline
|
||||
\gdef \contentsline#1#2#3#4{\oldcontentsline{#1}{#2}{#3}}
|
||||
\global \let \oldnewlabel\newlabel
|
||||
\gdef \newlabel#1#2{\newlabelxx{#1}#2}
|
||||
\gdef \newlabelxx#1#2#3#4#5#6{\oldnewlabel{#1}{{#2}{#3}}}
|
||||
\AtEndDocument{\let \contentsline\oldcontentsline
|
||||
\let \newlabel\oldnewlabel}
|
||||
\else
|
||||
\global \let \hyper@last\relax
|
||||
\fi
|
||||
|
||||
\@writefile{toc}{\contentsline {part}{Education}{1}{section*.1}}
|
||||
\@writefile{toc}{\contentsline {part}{Master thesis}{1}{section*.2}}
|
||||
\@writefile{toc}{\contentsline {part}{Experience}{1}{section*.3}}
|
||||
\@writefile{toc}{\contentsline {part}{Languages}{1}{section*.4}}
|
||||
\@writefile{toc}{\contentsline {part}{Computer skills}{1}{section*.5}}
|
||||
\citation{*}
|
||||
\bibstyle{plain}
|
||||
\bibdata{publications}
|
||||
\bibcite{publication1}{1}
|
||||
\bibcite{publication2}{2}
|
||||
\@writefile{toc}{\contentsline {part}{Interests}{2}{section*.6}}
|
||||
\@writefile{toc}{\contentsline {part}{Extra 1}{2}{section*.7}}
|
||||
\@writefile{toc}{\contentsline {part}{Extra 2}{2}{section*.8}}
|
||||
\@writefile{toc}{\contentsline {part}{Publications}{2}{section*.9}}
|
||||
\newlabel{lastpage}{{}{2}{\relax }{section*.9}{}}
|
||||
12
examples/template_en.bbl
Normal file
12
examples/template_en.bbl
Normal file
@ -0,0 +1,12 @@
|
||||
\begin{thebibliography}{1}
|
||||
|
||||
\bibitem{publication1}
|
||||
Author 1 and Author 2.
|
||||
\newblock {\em Title}.
|
||||
\newblock Publisher, edition edition, year.
|
||||
|
||||
\bibitem{publication2}
|
||||
Author.
|
||||
\newblock Title, year.
|
||||
|
||||
\end{thebibliography}
|
||||
3
examples/template_en.blg
Normal file
3
examples/template_en.blg
Normal file
@ -0,0 +1,3 @@
|
||||
This is BibTeX, Version 0.99cThe top-level auxiliary file: D:\Documents and Settings\Xavier Danaux\My Documents\personal\job_application\moderncv\moderncv-dev\examples\template_en.aux
|
||||
The style file: plain.bst
|
||||
Database file #1: publications.bib
|
||||
654
examples/template_en.log
Normal file
654
examples/template_en.log
Normal file
@ -0,0 +1,654 @@
|
||||
This is pdfTeX, Version 3.1415926-1.40.9 (MiKTeX 2.7) (preloaded format=pdflatex 2008.12.11) 11 DEC 2008 23:01
|
||||
entering extended mode
|
||||
**D:/Documents*and*Settings/Xavier*Danaux/My*Documents/personal/job_application
|
||||
/moderncv/moderncv-dev/examples/template_en.tex
|
||||
|
||||
("D:/Documents and Settings/Xavier Danaux/My Documents/personal/job_application
|
||||
/moderncv/moderncv-dev/examples/template_en.tex"
|
||||
LaTeX2e <2005/12/01>
|
||||
Babel <v3.8l> and hyphenation patterns for english, dumylang, nohyphenation, ge
|
||||
rman, ngerman, german-x-2008-06-18, ngerman-x-2008-06-18, french, loaded.
|
||||
(D:\Programs\MiKTeX\tex\latex\moderncv\moderncv.cls
|
||||
Document Class: moderncv 2008/06/17 v0.7 modern curriculum vitae document class
|
||||
|
||||
(D:\Programs\MiKTeX\tex\latex\base\size11.clo
|
||||
File: size11.clo 2005/09/16 v1.4f Standard LaTeX file (size option)
|
||||
)
|
||||
(D:\Programs\MiKTeX\tex\latex\base\ifthen.sty
|
||||
Package: ifthen 2001/05/26 v1.1c Standard LaTeX ifthen package (DPC)
|
||||
)
|
||||
(D:\Programs\MiKTeX\tex\generic\oberdiek\ifpdf.sty
|
||||
Package: ifpdf 2007/12/12 v1.6 Provides the ifpdf switch (HO)
|
||||
Package ifpdf Info: pdfTeX in pdf mode detected.
|
||||
)
|
||||
(D:\Programs\MiKTeX\tex\latex\graphics\color.sty
|
||||
Package: color 2005/11/14 v1.0j Standard LaTeX Color (DPC)
|
||||
|
||||
(D:\Programs\MiKTeX\tex\latex\00miktex\color.cfg
|
||||
File: color.cfg 2007/01/18 v1.5 color configuration of teTeX/TeXLive
|
||||
)
|
||||
Package color Info: Driver file: pdftex.def on input line 130.
|
||||
|
||||
(D:\Programs\MiKTeX\tex\latex\pdftex-def\pdftex.def
|
||||
File: pdftex.def 2008/09/08 v0.04l Graphics/color for pdfTeX
|
||||
\Gread@gobject=\count79
|
||||
))
|
||||
(D:\Programs\MiKTeX\tex\latex\base\fontenc.sty
|
||||
Package: fontenc 2005/09/27 v1.99g Standard LaTeX package
|
||||
|
||||
(D:\Programs\MiKTeX\tex\latex\base\t1enc.def
|
||||
File: t1enc.def 2005/09/27 v1.99g Standard LaTeX file
|
||||
LaTeX Font Info: Redeclaring font encoding T1 on input line 43.
|
||||
))
|
||||
(D:\Programs\MiKTeX\tex\latex\marvosym\marvosym.sty
|
||||
Package: marvosym 2006/05/11 v2.1 Martin Vogel's Symbols font definitions
|
||||
)
|
||||
(D:\Programs\MiKTeX\tex\latex\ltxmisc\url.sty
|
||||
\Urlmuskip=\muskip10
|
||||
Package: url 2006/04/12 ver 3.3 Verb mode for urls, etc.
|
||||
)
|
||||
(D:\Programs\MiKTeX\tex\latex\hyperref\hyperref.sty
|
||||
Package: hyperref 2008/11/18 v6.78m Hypertext links for LaTeX
|
||||
|
||||
(D:\Programs\MiKTeX\tex\latex\graphics\keyval.sty
|
||||
Package: keyval 1999/03/16 v1.13 key=value parser (DPC)
|
||||
\KV@toks@=\toks14
|
||||
)
|
||||
(D:\Programs\MiKTeX\tex\generic\oberdiek\ifvtex.sty
|
||||
Package: ifvtex 2007/09/09 v1.3 Switches for detecting VTeX and its modes (HO)
|
||||
Package ifvtex Info: VTeX not detected.
|
||||
)
|
||||
(D:\Programs\MiKTeX\tex\generic\ifxetex\ifxetex.sty
|
||||
Package: ifxetex 2008/09/18 v0.4 Provides ifxetex conditional
|
||||
)
|
||||
(D:\Programs\MiKTeX\tex\latex\oberdiek\hycolor.sty
|
||||
Package: hycolor 2008/09/08 v1.4 Code for color options of hyperref/bookmark (H
|
||||
O)
|
||||
|
||||
(D:\Programs\MiKTeX\tex\latex\oberdiek\xcolor-patch.sty
|
||||
Package: xcolor-patch 2008/09/08 xcolor patch
|
||||
))
|
||||
\@linkdim=\dimen102
|
||||
\Hy@linkcounter=\count80
|
||||
\Hy@pagecounter=\count81
|
||||
|
||||
(D:\Programs\MiKTeX\tex\latex\hyperref\pd1enc.def
|
||||
File: pd1enc.def 2008/11/18 v6.78m Hyperref: PDFDocEncoding definition (HO)
|
||||
)
|
||||
(D:\Programs\MiKTeX\tex\generic\oberdiek\etexcmds.sty
|
||||
Package: etexcmds 2007/12/12 v1.2 Prefix for e-TeX command names (HO)
|
||||
|
||||
(D:\Programs\MiKTeX\tex\generic\oberdiek\infwarerr.sty
|
||||
Package: infwarerr 2007/09/09 v1.2 Providing info/warning/message (HO)
|
||||
)
|
||||
Package etexcmds Info: Could not find \expanded.
|
||||
(etexcmds) That can mean that you are not using pdfTeX 1.50 or
|
||||
(etexcmds) that some package has redefined \expanded.
|
||||
(etexcmds) In the latter case, load this package earlier.
|
||||
)
|
||||
(D:\Programs\MiKTeX\tex\latex\00miktex\hyperref.cfg
|
||||
File: hyperref.cfg 2002/06/06 v1.2 hyperref configuration of TeXLive
|
||||
)
|
||||
(D:\Programs\MiKTeX\tex\latex\oberdiek\kvoptions.sty
|
||||
Package: kvoptions 2007/10/18 v3.0 Keyval support for LaTeX options (HO)
|
||||
)
|
||||
Package hyperref Info: Hyper figures OFF on input line 2907.
|
||||
Package hyperref Info: Link nesting OFF on input line 2912.
|
||||
Package hyperref Info: Hyper index ON on input line 2915.
|
||||
Package hyperref Info: Plain pages OFF on input line 2922.
|
||||
Package hyperref Info: Backreferencing OFF on input line 2927.
|
||||
|
||||
Implicit mode ON; LaTeX internals redefined
|
||||
Package hyperref Info: Bookmarks ON on input line 3117.
|
||||
LaTeX Info: Redefining \url on input line 3351.
|
||||
(D:\Programs\MiKTeX\tex\generic\oberdiek\bitset.sty
|
||||
Package: bitset 2007/09/28 v1.0 Data type bit set (HO)
|
||||
|
||||
(D:\Programs\MiKTeX\tex\generic\oberdiek\intcalc.sty
|
||||
Package: intcalc 2007/09/27 v1.1 Expandable integer calculations (HO)
|
||||
)
|
||||
(D:\Programs\MiKTeX\tex\generic\oberdiek\bigintcalc.sty
|
||||
Package: bigintcalc 2007/11/11 v1.1 Expandable big integer calculations (HO)
|
||||
|
||||
(D:\Programs\MiKTeX\tex\generic\oberdiek\pdftexcmds.sty
|
||||
Package: pdftexcmds 2007/12/12 v0.3 LuaTeX support for pdfTeX utility functions
|
||||
(HO)
|
||||
Package pdftexcmds Info: LuaTeX not detected on input line 139.
|
||||
)))
|
||||
(D:\Programs\MiKTeX\tex\generic\oberdiek\kvsetkeys.sty
|
||||
Package: kvsetkeys 2007/09/29 v1.3 Key value parser with default handler suppor
|
||||
t (HO)
|
||||
)
|
||||
\Fld@menulength=\count82
|
||||
\Field@Width=\dimen103
|
||||
\Fld@charsize=\dimen104
|
||||
\Field@toks=\toks15
|
||||
Package hyperref Info: Hyper figures OFF on input line 4268.
|
||||
Package hyperref Info: Link nesting OFF on input line 4273.
|
||||
Package hyperref Info: Hyper index ON on input line 4276.
|
||||
Package hyperref Info: backreferencing OFF on input line 4283.
|
||||
Package hyperref Info: Link coloring OFF on input line 4288.
|
||||
Package hyperref Info: Link coloring with OCG OFF on input line 4293.
|
||||
Package hyperref Info: PDF/A mode OFF on input line 4298.
|
||||
|
||||
(D:\Programs\MiKTeX\tex\generic\oberdiek\atbegshi.sty
|
||||
Package: atbegshi 2008/07/31 v1.9 At begin shipout hook (HO)
|
||||
)
|
||||
|
||||
Package hyperref Warning: Option `pdfpagelabels' is turned off
|
||||
(hyperref) because \thepage is undefined.
|
||||
|
||||
\c@Item=\count83
|
||||
\c@Hfootnote=\count84
|
||||
)
|
||||
*hyperref using driver hpdftex*
|
||||
(D:\Programs\MiKTeX\tex\latex\hyperref\hpdftex.def
|
||||
File: hpdftex.def 2008/11/18 v6.78m Hyperref driver for pdfTeX
|
||||
\Fld@listcount=\count85
|
||||
)
|
||||
Package hyperref Info: Option `breaklinks' set `true' on input line 134.
|
||||
|
||||
(D:\Programs\MiKTeX\tex\latex\graphics\graphicx.sty
|
||||
Package: graphicx 1999/02/16 v1.0f Enhanced LaTeX Graphics (DPC,SPQR)
|
||||
|
||||
(D:\Programs\MiKTeX\tex\latex\graphics\graphics.sty
|
||||
Package: graphics 2006/02/20 v1.0o Standard LaTeX Graphics (DPC,SPQR)
|
||||
|
||||
(D:\Programs\MiKTeX\tex\latex\graphics\trig.sty
|
||||
Package: trig 1999/03/16 v1.09 sin cos tan (DPC)
|
||||
)
|
||||
(D:\Programs\MiKTeX\tex\latex\00miktex\graphics.cfg
|
||||
File: graphics.cfg 2007/01/18 v1.5 graphics configuration of teTeX/TeXLive
|
||||
)
|
||||
Package graphics Info: Driver file: pdftex.def on input line 90.
|
||||
)
|
||||
\Gin@req@height=\dimen105
|
||||
\Gin@req@width=\dimen106
|
||||
)
|
||||
(D:\Programs\MiKTeX\tex\latex\fancyhdr\fancyhdr.sty
|
||||
\fancy@headwidth=\skip41
|
||||
\f@ncyO@elh=\skip42
|
||||
\f@ncyO@erh=\skip43
|
||||
\f@ncyO@olh=\skip44
|
||||
\f@ncyO@orh=\skip45
|
||||
\f@ncyO@elf=\skip46
|
||||
\f@ncyO@erf=\skip47
|
||||
\f@ncyO@olf=\skip48
|
||||
\f@ncyO@orf=\skip49
|
||||
)
|
||||
(D:\Programs\MiKTeX\tex\latex\moderncv\moderncvcompatibility.sty
|
||||
Package: moderncvcompatibility 2008/06/17 v0.7 modern curriculum vitae compatib
|
||||
ility patches
|
||||
)
|
||||
\quotewidth=\skip50
|
||||
\hintscolumnwidth=\skip51
|
||||
\separatorcolumnwidth=\skip52
|
||||
\maincolumnwidth=\skip53
|
||||
\doubleitemmaincolumnwidth=\skip54
|
||||
\listitemsymbolwidth=\skip55
|
||||
LaTeX Font Info: Try loading font information for OMS+cmr on input line 257.
|
||||
|
||||
|
||||
(D:\Programs\MiKTeX\tex\latex\base\omscmr.fd
|
||||
File: omscmr.fd 1999/05/25 v2.5h Standard LaTeX font definitions
|
||||
)
|
||||
LaTeX Font Info: Font shape `OMS/cmr/m/n' in size <10.95> not available
|
||||
(Font) Font shape `OMS/cmsy/m/n' tried instead on input line 257.
|
||||
\listitemmaincolumnwidth=\skip56
|
||||
\listdoubleitemmaincolumnwidth=\skip57
|
||||
\bibindent=\skip58
|
||||
)
|
||||
(D:\Programs\MiKTeX\tex\latex\lm\lmodern.sty
|
||||
Package: lmodern 2007/01/14 v1.3 Latin Modern Fonts
|
||||
LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
|
||||
(Font) OT1/cmr/m/n --> OT1/lmr/m/n on input line 13.
|
||||
LaTeX Font Info: Overwriting symbol font `letters' in version `normal'
|
||||
(Font) OML/cmm/m/it --> OML/lmm/m/it on input line 14.
|
||||
LaTeX Font Info: Overwriting symbol font `symbols' in version `normal'
|
||||
(Font) OMS/cmsy/m/n --> OMS/lmsy/m/n on input line 15.
|
||||
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `normal'
|
||||
(Font) OMX/cmex/m/n --> OMX/lmex/m/n on input line 16.
|
||||
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
|
||||
(Font) OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 17.
|
||||
LaTeX Font Info: Overwriting symbol font `letters' in version `bold'
|
||||
(Font) OML/cmm/b/it --> OML/lmm/b/it on input line 18.
|
||||
LaTeX Font Info: Overwriting symbol font `symbols' in version `bold'
|
||||
(Font) OMS/cmsy/b/n --> OMS/lmsy/b/n on input line 19.
|
||||
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `bold'
|
||||
(Font) OMX/cmex/m/n --> OMX/lmex/m/n on input line 20.
|
||||
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal'
|
||||
(Font) OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 22.
|
||||
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal'
|
||||
(Font) OT1/cmss/m/n --> OT1/lmss/m/n on input line 23.
|
||||
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal'
|
||||
(Font) OT1/cmr/m/it --> OT1/lmr/m/it on input line 24.
|
||||
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal'
|
||||
(Font) OT1/cmtt/m/n --> OT1/lmtt/m/n on input line 25.
|
||||
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `bold'
|
||||
(Font) OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 26.
|
||||
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold'
|
||||
(Font) OT1/cmss/bx/n --> OT1/lmss/bx/n on input line 27.
|
||||
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold'
|
||||
(Font) OT1/cmr/bx/it --> OT1/lmr/bx/it on input line 28.
|
||||
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold'
|
||||
(Font) OT1/cmtt/m/n --> OT1/lmtt/m/n on input line 29.
|
||||
)
|
||||
(D:\Programs\MiKTeX\tex\latex\base\inputenc.sty
|
||||
Package: inputenc 2006/05/05 v1.1b Input encoding file
|
||||
\inpenc@prehook=\toks16
|
||||
\inpenc@posthook=\toks17
|
||||
|
||||
(D:\Programs\MiKTeX\tex\latex\base\utf8.def
|
||||
File: utf8.def 2006/03/30 v1.1i UTF-8 support for inputenc
|
||||
Now handling font encoding OML ...
|
||||
... no UTF-8 mapping file for font encoding OML
|
||||
Now handling font encoding T1 ...
|
||||
... processing UTF-8 mapping file for font encodingT1
|
||||
|
||||
(D:\Programs\MiKTeX\tex\latex\base\t1enc.dfu
|
||||
File: t1enc.dfu 2006/03/30 v1.1i UTF-8 support for inputenc
|
||||
defining Unicode char U+00A1 (decimal 161)
|
||||
defining Unicode char U+00A3 (decimal 163)
|
||||
defining Unicode char U+00AB (decimal 171)
|
||||
defining Unicode char U+00BB (decimal 187)
|
||||
defining Unicode char U+00BF (decimal 191)
|
||||
defining Unicode char U+00C0 (decimal 192)
|
||||
defining Unicode char U+00C1 (decimal 193)
|
||||
defining Unicode char U+00C2 (decimal 194)
|
||||
defining Unicode char U+00C3 (decimal 195)
|
||||
defining Unicode char U+00C4 (decimal 196)
|
||||
defining Unicode char U+00C5 (decimal 197)
|
||||
defining Unicode char U+00C6 (decimal 198)
|
||||
defining Unicode char U+00C7 (decimal 199)
|
||||
defining Unicode char U+00C8 (decimal 200)
|
||||
defining Unicode char U+00C9 (decimal 201)
|
||||
defining Unicode char U+00CA (decimal 202)
|
||||
defining Unicode char U+00CB (decimal 203)
|
||||
defining Unicode char U+00CC (decimal 204)
|
||||
defining Unicode char U+00CD (decimal 205)
|
||||
defining Unicode char U+00CE (decimal 206)
|
||||
defining Unicode char U+00CF (decimal 207)
|
||||
defining Unicode char U+00D0 (decimal 208)
|
||||
defining Unicode char U+00D1 (decimal 209)
|
||||
defining Unicode char U+00D2 (decimal 210)
|
||||
defining Unicode char U+00D3 (decimal 211)
|
||||
defining Unicode char U+00D4 (decimal 212)
|
||||
defining Unicode char U+00D5 (decimal 213)
|
||||
defining Unicode char U+00D6 (decimal 214)
|
||||
defining Unicode char U+00D8 (decimal 216)
|
||||
defining Unicode char U+00D9 (decimal 217)
|
||||
defining Unicode char U+00DA (decimal 218)
|
||||
defining Unicode char U+00DB (decimal 219)
|
||||
defining Unicode char U+00DC (decimal 220)
|
||||
defining Unicode char U+00DD (decimal 221)
|
||||
defining Unicode char U+00DE (decimal 222)
|
||||
defining Unicode char U+00DF (decimal 223)
|
||||
defining Unicode char U+00E0 (decimal 224)
|
||||
defining Unicode char U+00E1 (decimal 225)
|
||||
defining Unicode char U+00E2 (decimal 226)
|
||||
defining Unicode char U+00E3 (decimal 227)
|
||||
defining Unicode char U+00E4 (decimal 228)
|
||||
defining Unicode char U+00E5 (decimal 229)
|
||||
defining Unicode char U+00E6 (decimal 230)
|
||||
defining Unicode char U+00E7 (decimal 231)
|
||||
defining Unicode char U+00E8 (decimal 232)
|
||||
defining Unicode char U+00E9 (decimal 233)
|
||||
defining Unicode char U+00EA (decimal 234)
|
||||
defining Unicode char U+00EB (decimal 235)
|
||||
defining Unicode char U+00EC (decimal 236)
|
||||
defining Unicode char U+00ED (decimal 237)
|
||||
defining Unicode char U+00EE (decimal 238)
|
||||
defining Unicode char U+00EF (decimal 239)
|
||||
defining Unicode char U+00F0 (decimal 240)
|
||||
defining Unicode char U+00F1 (decimal 241)
|
||||
defining Unicode char U+00F2 (decimal 242)
|
||||
defining Unicode char U+00F3 (decimal 243)
|
||||
defining Unicode char U+00F4 (decimal 244)
|
||||
defining Unicode char U+00F5 (decimal 245)
|
||||
defining Unicode char U+00F6 (decimal 246)
|
||||
defining Unicode char U+00F8 (decimal 248)
|
||||
defining Unicode char U+00F9 (decimal 249)
|
||||
defining Unicode char U+00FA (decimal 250)
|
||||
defining Unicode char U+00FB (decimal 251)
|
||||
defining Unicode char U+00FC (decimal 252)
|
||||
defining Unicode char U+00FD (decimal 253)
|
||||
defining Unicode char U+00FE (decimal 254)
|
||||
defining Unicode char U+00FF (decimal 255)
|
||||
defining Unicode char U+0102 (decimal 258)
|
||||
defining Unicode char U+0103 (decimal 259)
|
||||
defining Unicode char U+0104 (decimal 260)
|
||||
defining Unicode char U+0105 (decimal 261)
|
||||
defining Unicode char U+0106 (decimal 262)
|
||||
defining Unicode char U+0107 (decimal 263)
|
||||
defining Unicode char U+010C (decimal 268)
|
||||
defining Unicode char U+010D (decimal 269)
|
||||
defining Unicode char U+010E (decimal 270)
|
||||
defining Unicode char U+010F (decimal 271)
|
||||
defining Unicode char U+0110 (decimal 272)
|
||||
defining Unicode char U+0111 (decimal 273)
|
||||
defining Unicode char U+0118 (decimal 280)
|
||||
defining Unicode char U+0119 (decimal 281)
|
||||
defining Unicode char U+011A (decimal 282)
|
||||
defining Unicode char U+011B (decimal 283)
|
||||
defining Unicode char U+011E (decimal 286)
|
||||
defining Unicode char U+011F (decimal 287)
|
||||
defining Unicode char U+0130 (decimal 304)
|
||||
defining Unicode char U+0131 (decimal 305)
|
||||
defining Unicode char U+0132 (decimal 306)
|
||||
defining Unicode char U+0133 (decimal 307)
|
||||
defining Unicode char U+0139 (decimal 313)
|
||||
defining Unicode char U+013A (decimal 314)
|
||||
defining Unicode char U+013D (decimal 317)
|
||||
defining Unicode char U+013E (decimal 318)
|
||||
defining Unicode char U+0141 (decimal 321)
|
||||
defining Unicode char U+0142 (decimal 322)
|
||||
defining Unicode char U+0143 (decimal 323)
|
||||
defining Unicode char U+0144 (decimal 324)
|
||||
defining Unicode char U+0147 (decimal 327)
|
||||
defining Unicode char U+0148 (decimal 328)
|
||||
defining Unicode char U+014A (decimal 330)
|
||||
defining Unicode char U+014B (decimal 331)
|
||||
defining Unicode char U+0150 (decimal 336)
|
||||
defining Unicode char U+0151 (decimal 337)
|
||||
defining Unicode char U+0152 (decimal 338)
|
||||
defining Unicode char U+0153 (decimal 339)
|
||||
defining Unicode char U+0154 (decimal 340)
|
||||
defining Unicode char U+0155 (decimal 341)
|
||||
defining Unicode char U+0158 (decimal 344)
|
||||
defining Unicode char U+0159 (decimal 345)
|
||||
defining Unicode char U+015A (decimal 346)
|
||||
defining Unicode char U+015B (decimal 347)
|
||||
defining Unicode char U+015E (decimal 350)
|
||||
defining Unicode char U+015F (decimal 351)
|
||||
defining Unicode char U+0160 (decimal 352)
|
||||
defining Unicode char U+0161 (decimal 353)
|
||||
defining Unicode char U+0162 (decimal 354)
|
||||
defining Unicode char U+0163 (decimal 355)
|
||||
defining Unicode char U+0164 (decimal 356)
|
||||
defining Unicode char U+0165 (decimal 357)
|
||||
defining Unicode char U+016E (decimal 366)
|
||||
defining Unicode char U+016F (decimal 367)
|
||||
defining Unicode char U+0170 (decimal 368)
|
||||
defining Unicode char U+0171 (decimal 369)
|
||||
defining Unicode char U+0178 (decimal 376)
|
||||
defining Unicode char U+0179 (decimal 377)
|
||||
defining Unicode char U+017A (decimal 378)
|
||||
defining Unicode char U+017B (decimal 379)
|
||||
defining Unicode char U+017C (decimal 380)
|
||||
defining Unicode char U+017D (decimal 381)
|
||||
defining Unicode char U+017E (decimal 382)
|
||||
defining Unicode char U+200C (decimal 8204)
|
||||
defining Unicode char U+2013 (decimal 8211)
|
||||
defining Unicode char U+2014 (decimal 8212)
|
||||
defining Unicode char U+2018 (decimal 8216)
|
||||
defining Unicode char U+2019 (decimal 8217)
|
||||
defining Unicode char U+201A (decimal 8218)
|
||||
defining Unicode char U+201C (decimal 8220)
|
||||
defining Unicode char U+201D (decimal 8221)
|
||||
defining Unicode char U+201E (decimal 8222)
|
||||
defining Unicode char U+2030 (decimal 8240)
|
||||
defining Unicode char U+2031 (decimal 8241)
|
||||
defining Unicode char U+2039 (decimal 8249)
|
||||
defining Unicode char U+203A (decimal 8250)
|
||||
defining Unicode char U+2423 (decimal 9251)
|
||||
)
|
||||
Now handling font encoding OT1 ...
|
||||
... processing UTF-8 mapping file for font encodingOT1
|
||||
|
||||
(D:\Programs\MiKTeX\tex\latex\base\ot1enc.dfu
|
||||
File: ot1enc.dfu 2006/03/30 v1.1i UTF-8 support for inputenc
|
||||
defining Unicode char U+00A1 (decimal 161)
|
||||
defining Unicode char U+00A3 (decimal 163)
|
||||
defining Unicode char U+00B8 (decimal 184)
|
||||
defining Unicode char U+00BF (decimal 191)
|
||||
defining Unicode char U+00C5 (decimal 197)
|
||||
defining Unicode char U+00C6 (decimal 198)
|
||||
defining Unicode char U+00D8 (decimal 216)
|
||||
defining Unicode char U+00DF (decimal 223)
|
||||
defining Unicode char U+00E6 (decimal 230)
|
||||
defining Unicode char U+00EC (decimal 236)
|
||||
defining Unicode char U+00ED (decimal 237)
|
||||
defining Unicode char U+00EE (decimal 238)
|
||||
defining Unicode char U+00EF (decimal 239)
|
||||
defining Unicode char U+00F8 (decimal 248)
|
||||
defining Unicode char U+0131 (decimal 305)
|
||||
defining Unicode char U+0141 (decimal 321)
|
||||
defining Unicode char U+0142 (decimal 322)
|
||||
defining Unicode char U+0152 (decimal 338)
|
||||
defining Unicode char U+0153 (decimal 339)
|
||||
defining Unicode char U+2013 (decimal 8211)
|
||||
defining Unicode char U+2014 (decimal 8212)
|
||||
defining Unicode char U+2018 (decimal 8216)
|
||||
defining Unicode char U+2019 (decimal 8217)
|
||||
defining Unicode char U+201C (decimal 8220)
|
||||
defining Unicode char U+201D (decimal 8221)
|
||||
)
|
||||
Now handling font encoding OMS ...
|
||||
... processing UTF-8 mapping file for font encodingOMS
|
||||
|
||||
(D:\Programs\MiKTeX\tex\latex\base\omsenc.dfu
|
||||
File: omsenc.dfu 2006/03/30 v1.1i UTF-8 support for inputenc
|
||||
defining Unicode char U+00A7 (decimal 167)
|
||||
defining Unicode char U+00B6 (decimal 182)
|
||||
defining Unicode char U+00B7 (decimal 183)
|
||||
defining Unicode char U+2020 (decimal 8224)
|
||||
defining Unicode char U+2021 (decimal 8225)
|
||||
defining Unicode char U+2022 (decimal 8226)
|
||||
)
|
||||
Now handling font encoding OMX ...
|
||||
... no UTF-8 mapping file for font encoding OMX
|
||||
Now handling font encoding U ...
|
||||
... no UTF-8 mapping file for font encoding U
|
||||
Now handling font encoding PD1 ...
|
||||
... no UTF-8 mapping file for font encoding PD1
|
||||
defining Unicode char U+00A9 (decimal 169)
|
||||
defining Unicode char U+00AA (decimal 170)
|
||||
defining Unicode char U+00AE (decimal 174)
|
||||
defining Unicode char U+00BA (decimal 186)
|
||||
defining Unicode char U+02C6 (decimal 710)
|
||||
defining Unicode char U+02DC (decimal 732)
|
||||
defining Unicode char U+200C (decimal 8204)
|
||||
defining Unicode char U+2026 (decimal 8230)
|
||||
defining Unicode char U+2122 (decimal 8482)
|
||||
defining Unicode char U+2423 (decimal 9251)
|
||||
))
|
||||
(D:\Programs\MiKTeX\tex\latex\geometry\geometry.sty
|
||||
Package: geometry 2008/11/13 v4.1 Page Geometry
|
||||
\Gm@cnth=\count86
|
||||
\Gm@cntv=\count87
|
||||
\c@Gm@tempcnt=\count88
|
||||
\Gm@bindingoffset=\dimen107
|
||||
\Gm@wd@mp=\dimen108
|
||||
\Gm@odd@mp=\dimen109
|
||||
\Gm@even@mp=\dimen110
|
||||
\Gm@dimlist=\toks18
|
||||
|
||||
(D:\Programs\MiKTeX\tex\latex\geometry\geometry.cfg)) (template_en.aux)
|
||||
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 46.
|
||||
LaTeX Font Info: ... okay on input line 46.
|
||||
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 46.
|
||||
LaTeX Font Info: ... okay on input line 46.
|
||||
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 46.
|
||||
LaTeX Font Info: ... okay on input line 46.
|
||||
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 46.
|
||||
LaTeX Font Info: ... okay on input line 46.
|
||||
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 46.
|
||||
LaTeX Font Info: ... okay on input line 46.
|
||||
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 46.
|
||||
LaTeX Font Info: ... okay on input line 46.
|
||||
LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 46.
|
||||
LaTeX Font Info: ... okay on input line 46.
|
||||
LaTeX Font Info: Try loading font information for T1+lmr on input line 46.
|
||||
|
||||
(D:\Programs\MiKTeX\tex\latex\lm\t1lmr.fd
|
||||
File: t1lmr.fd 2007/01/14 v1.3 Font defs for Latin Modern
|
||||
)
|
||||
(D:\Programs\MiKTeX\tex\context\base\supp-pdf.tex
|
||||
[Loading MPS to PDF converter (version 2006.09.02).]
|
||||
\scratchcounter=\count89
|
||||
\scratchdimen=\dimen111
|
||||
\scratchbox=\box26
|
||||
\nofMPsegments=\count90
|
||||
\nofMParguments=\count91
|
||||
\everyMPshowfont=\toks19
|
||||
\MPscratchCnt=\count92
|
||||
\MPscratchDim=\dimen112
|
||||
\MPnumerator=\count93
|
||||
\everyMPtoPDFconversion=\toks20
|
||||
)
|
||||
Package hyperref Info: Link coloring OFF on input line 46.
|
||||
(D:\Programs\MiKTeX\tex\latex\hyperref\nameref.sty
|
||||
Package: nameref 2007/05/29 v2.31 Cross-referencing by name of section
|
||||
|
||||
(D:\Programs\MiKTeX\tex\latex\oberdiek\refcount.sty
|
||||
Package: refcount 2008/08/11 v3.1 Data extraction from references (HO)
|
||||
)
|
||||
\c@section@level=\count94
|
||||
)
|
||||
LaTeX Info: Redefining \ref on input line 46.
|
||||
LaTeX Info: Redefining \pageref on input line 46.
|
||||
(template_en.out)
|
||||
(template_en.out)
|
||||
\@outlinefile=\write3
|
||||
\AtBeginShipoutBox=\box27
|
||||
|
||||
(D:\Programs\MiKTeX\tex\latex\moderncv\moderncvthemecasual.sty
|
||||
Package: moderncvthemecasual 2008/06/17 v0.7 modern curriculum vitae style: cas
|
||||
ual
|
||||
Package color Info: Redefining color firstnamecolor on input line 62.
|
||||
Package color Info: Redefining color familynamecolor on input line 63.
|
||||
Package color Info: Redefining color quotecolor on input line 64.
|
||||
Package color Info: Redefining color addresscolor on input line 65.
|
||||
Package color Info: Redefining color sectionrectanglecolor on input line 67.
|
||||
Package color Info: Redefining color sectiontitlecolor on input line 68.
|
||||
Package color Info: Redefining color subsectioncolor on input line 69.
|
||||
LaTeX Font Info: Try loading font information for T1+lmss on input line 96.
|
||||
|
||||
(D:\Programs\MiKTeX\tex\latex\lm\t1lmss.fd
|
||||
File: t1lmss.fd 2007/01/14 v1.3 Font defs for Latin Modern
|
||||
))
|
||||
*geometry auto-detecting driver*
|
||||
*geometry detected driver: pdftex*
|
||||
-------------------- Geometry parameters
|
||||
paper: a4paper
|
||||
landscape: --
|
||||
twocolumn: --
|
||||
twoside: --
|
||||
asymmetric: --
|
||||
h-parts: 59.74988pt, 0.8\paperwidth , 59.74988pt
|
||||
v-parts: 67.60269pt, 0.8\paperheight , 101.4041pt
|
||||
hmarginratio: 1:1
|
||||
vmarginratio: 2:3
|
||||
lines: --
|
||||
heightrounded: --
|
||||
bindingoffset: 0.0pt
|
||||
truedimen: --
|
||||
includehead: --
|
||||
includefoot: --
|
||||
includemp: --
|
||||
driver: pdftex
|
||||
-------------------- Page layout dimensions and switches
|
||||
\paperwidth 597.50787pt
|
||||
\paperheight 845.04684pt
|
||||
\textwidth 478.00812pt
|
||||
\textheight 676.04005pt
|
||||
\oddsidemargin -12.52011pt
|
||||
\evensidemargin -12.52011pt
|
||||
\topmargin -41.6673pt
|
||||
\headheight 12.0pt
|
||||
\headsep 25.0pt
|
||||
\footskip 30.0pt
|
||||
\marginparwidth 40.0pt
|
||||
\marginparsep 5.0pt
|
||||
\columnsep 10.0pt
|
||||
\skip\footins 10.0pt plus 4.0pt minus 2.0pt
|
||||
\hoffset 0.0pt
|
||||
\voffset 0.0pt
|
||||
\mag 1000
|
||||
|
||||
(1in=72.27pt, 1cm=28.45pt)
|
||||
-----------------------
|
||||
<picture.jpg, id=42, 96.36pt x 96.36pt>
|
||||
File: picture.jpg Graphic file (type jpg)
|
||||
<use picture.jpg>
|
||||
LaTeX Font Info: Try loading font information for OT1+lmr on input line 47.
|
||||
|
||||
(D:\Programs\MiKTeX\tex\latex\lm\ot1lmr.fd
|
||||
File: ot1lmr.fd 2007/01/14 v1.3 Font defs for Latin Modern
|
||||
)
|
||||
LaTeX Font Info: Try loading font information for OML+lmm on input line 47.
|
||||
|
||||
(D:\Programs\MiKTeX\tex\latex\lm\omllmm.fd
|
||||
File: omllmm.fd 2007/01/14 v1.3 Font defs for Latin Modern
|
||||
)
|
||||
LaTeX Font Info: Try loading font information for OMS+lmsy on input line 47.
|
||||
|
||||
|
||||
(D:\Programs\MiKTeX\tex\latex\lm\omslmsy.fd
|
||||
File: omslmsy.fd 2007/01/14 v1.3 Font defs for Latin Modern
|
||||
)
|
||||
LaTeX Font Info: Try loading font information for OMX+lmex on input line 47.
|
||||
|
||||
|
||||
(D:\Programs\MiKTeX\tex\latex\lm\omxlmex.fd
|
||||
File: omxlmex.fd 2007/01/14 v1.3 Font defs for Latin Modern
|
||||
)
|
||||
LaTeX Font Info: External font `lmex10' loaded for size
|
||||
(Font) <10.95> on input line 47.
|
||||
LaTeX Font Info: External font `lmex10' loaded for size
|
||||
(Font) <8> on input line 47.
|
||||
LaTeX Font Info: External font `lmex10' loaded for size
|
||||
(Font) <6> on input line 47.
|
||||
LaTeX Font Info: Font shape `T1/lmss/m/it' in size <10.95> not available
|
||||
(Font) Font shape `T1/lmss/m/sl' tried instead on input line 50.
|
||||
LaTeX Font Info: Try loading font information for U+mvs on input line 59.
|
||||
|
||||
(D:\Programs\MiKTeX\tex\latex\marvosym\umvs.fd)
|
||||
LaTeX Font Info: Font shape `T1/lmss/m/it' in size <9> not available
|
||||
(Font) Font shape `T1/lmss/m/sl' tried instead on input line 69.
|
||||
LaTeX Font Info: Try loading font information for OMS+lmss on input line 76.
|
||||
|
||||
LaTeX Font Info: No file OMSlmss.fd. on input line 76.
|
||||
|
||||
|
||||
LaTeX Font Warning: Font shape `OMS/lmss/m/sl' undefined
|
||||
(Font) using `OMS/cmsy/m/n' instead
|
||||
(Font) for symbol `textbullet' on input line 76.
|
||||
|
||||
[1
|
||||
|
||||
{D:/Documents and Settings/All Users/Application Data/MiKTeX/2.7/pdftex/config/
|
||||
pdftex.map} <picture.jpg>]
|
||||
Overfull \hbox (1.84468pt too wide) in paragraph at lines 88--88
|
||||
[]\T1/lmss/m/n/10.95 + []|
|
||||
[]
|
||||
|
||||
(template_en.bbl
|
||||
LaTeX Font Info: Font shape `T1/lmss/m/it' in size <10> not available
|
||||
(Font) Font shape `T1/lmss/m/sl' tried instead on input line 5.
|
||||
) [2] (template_en.aux)
|
||||
|
||||
LaTeX Font Warning: Some font shapes were not available, defaults substituted.
|
||||
|
||||
)
|
||||
Here is how much of TeX's memory you used:
|
||||
5377 strings out of 95304
|
||||
73228 string characters out of 1183373
|
||||
152499 words of memory out of 1500000
|
||||
8462 multiletter control sequences out of 110000
|
||||
50484 words of font info for 41 fonts, out of 1200000 for 2000
|
||||
14 hyphenation exceptions out of 8191
|
||||
43i,12n,45p,358b,350s stack positions out of 5000i,500n,10000p,200000b,5000s
|
||||
{D:/Programs/MiKTeX/fonts/enc/dvips/lm/lm-ec.enc}<D:/Programs/MiKTeX/fonts/ty
|
||||
pe1/bluesky/cm/cmsy10.pfb><D:/Programs/MiKTeX/fonts/type1/public/lm/lmss10.pfb>
|
||||
<D:/Programs/MiKTeX/fonts/type1/public/lm/lmss12.pfb><D:/Programs/MiKTeX/fonts/
|
||||
type1/public/lm/lmss17.pfb><D:/Programs/MiKTeX/fonts/type1/public/lm/lmssbx10.p
|
||||
fb><D:/Programs/MiKTeX/fonts/type1/public/lm/lmsso10.pfb><D:/Programs/MiKTeX/fo
|
||||
nts/type1/public/lm/lmsso12.pfb><D:/Programs/MiKTeX/fonts/type1/public/lm/lmsso
|
||||
9.pfb><D:/Programs/MiKTeX/fonts/type1/public/marvosym/marvosym.pfb>
|
||||
Output written on template_en.pdf (2 pages, 153902 bytes).
|
||||
PDF statistics:
|
||||
104 PDF objects out of 1000 (max. 8388607)
|
||||
14 named destinations out of 1000 (max. 131072)
|
||||
90 words of extra memory for PDF output out of 10000 (max. 10000000)
|
||||
|
||||
9
examples/template_en.out
Normal file
9
examples/template_en.out
Normal file
@ -0,0 +1,9 @@
|
||||
\BOOKMARK [0][-]{section*.1}{Education}{}
|
||||
\BOOKMARK [0][-]{section*.2}{Master thesis}{}
|
||||
\BOOKMARK [0][-]{section*.3}{Experience}{}
|
||||
\BOOKMARK [0][-]{section*.4}{Languages}{}
|
||||
\BOOKMARK [0][-]{section*.5}{Computer skills}{}
|
||||
\BOOKMARK [0][-]{section*.6}{Interests}{}
|
||||
\BOOKMARK [0][-]{section*.7}{Extra 1}{}
|
||||
\BOOKMARK [0][-]{section*.8}{Extra 2}{}
|
||||
\BOOKMARK [0][-]{section*.9}{Publications}{}
|
||||
BIN
examples/template_en.pdf
Normal file
BIN
examples/template_en.pdf
Normal file
Binary file not shown.
Reference in New Issue
Block a user