diff --git a/work_files/Skintone_samples_process/.gitattributes b/work_files/Skintone_samples_process/.gitattributes new file mode 100644 index 000000000..ca82ef549 --- /dev/null +++ b/work_files/Skintone_samples_process/.gitattributes @@ -0,0 +1 @@ +*.{psd,tga,ogg} filter=lfs diff=lfs merge=lfs -text \ No newline at end of file diff --git a/work_files/Skintone_samples_process/plot.numbers b/work_files/Skintone_samples_process/plot.numbers new file mode 100644 index 000000000..b929c9c8c Binary files /dev/null and b/work_files/Skintone_samples_process/plot.numbers differ diff --git a/work_files/Skintone_samples_process/plot.pdf b/work_files/Skintone_samples_process/plot.pdf new file mode 100644 index 000000000..25cd953e8 Binary files /dev/null and b/work_files/Skintone_samples_process/plot.pdf differ diff --git a/work_files/Skintone_samples_process/processor.py b/work_files/Skintone_samples_process/processor.py new file mode 100644 index 000000000..a91c1d4e3 --- /dev/null +++ b/work_files/Skintone_samples_process/processor.py @@ -0,0 +1,55 @@ +# fianised 2016-03-08 +# by minjaesong + +import math + + +def RGBToHSV(r, g, b): + rgbMin = min(r, g, b) + rgbMax = max(r, g, b) + + h = 0.0 + s = 0.0 + v = float(rgbMax) / 255.0 + + delta = float(rgbMax - rgbMin) + + if (rgbMax != 0): + s = delta / rgbMax + else: + s = 0 + h = 0 + return h, s, v + + if (r == rgbMax): + h = (g - b) / delta + elif (g == rgbMax): + h = 2 + (b - r) / delta + else: + h = 4 + (r - g) / delta + + h *= 60 + if (h < 0): + h += 360 + + return int(round(h)), int(round(s * 100)), int(math.ceil(v * 100)) + + +infile = open("/Users/minjaesong/Desktop/Calculators/Skintone_samples_process/samples.raw", "rb").read() + +rgbTable = [[0], [0], [0]] + +fileReadCounter = 0 +CHANNEL_R = 0 +CHANNEL_G = 1 +CHANNEL_B = 2 + +for i in infile: + rgbTable[fileReadCounter % 3].append(ord(i)) + fileReadCounter += 1 + + +for i in range(len(rgbTable[0])): + h, s, v = RGBToHSV(rgbTable[CHANNEL_R][i], rgbTable[CHANNEL_G][i], rgbTable[CHANNEL_B][i]) + if (h != 0 and s != 0 and v != 0): + print(h, s, v) diff --git a/work_files/Skintone_samples_process/samples.raw b/work_files/Skintone_samples_process/samples.raw new file mode 100644 index 000000000..9817675f7 Binary files /dev/null and b/work_files/Skintone_samples_process/samples.raw differ diff --git a/work_files/Skintone_samples_process/skintones_contactsheet_colorchips.png b/work_files/Skintone_samples_process/skintones_contactsheet_colorchips.png new file mode 100644 index 000000000..587a87371 Binary files /dev/null and b/work_files/Skintone_samples_process/skintones_contactsheet_colorchips.png differ diff --git a/work_files/Skintone_samples_process/tumblr_mmj233lOed1rlwzf4o2_1280.jpg b/work_files/Skintone_samples_process/tumblr_mmj233lOed1rlwzf4o2_1280.jpg new file mode 100644 index 000000000..d41531742 Binary files /dev/null and b/work_files/Skintone_samples_process/tumblr_mmj233lOed1rlwzf4o2_1280.jpg differ diff --git a/work_files/Skintone_samples_process/tumblr_mmj233lOed1rlwzf4o3_1280.jpg b/work_files/Skintone_samples_process/tumblr_mmj233lOed1rlwzf4o3_1280.jpg new file mode 100644 index 000000000..56aab5d8a Binary files /dev/null and b/work_files/Skintone_samples_process/tumblr_mmj233lOed1rlwzf4o3_1280.jpg differ diff --git a/work_files/romapidoc/api_filesystem.tex b/work_files/romapidoc/api_filesystem.tex index 0d6aed07a..580960297 100644 --- a/work_files/romapidoc/api_filesystem.tex +++ b/work_files/romapidoc/api_filesystem.tex @@ -34,7 +34,7 @@ The path for the argument of functions blocks `\,.\,.\,' to be passed, preventin \\ \\ fs.parent(\textbf{path}: string) & string & Returs parent directory to the \textbf{path}. \\ \\ - fs.dofile(\textbf{path}: string) & nil & Loads the script on \textbf{path} and executes it. + fs.dofile(\textbf{path}: string) & nil & Loads the script on \textbf{path} and executes it. NOTE: do not use this directly, instead use \textbf{shell.run(path, tArgs)}; fs.dofile does not provide any error handling. \\ \\ fs.fetchText(\textbf{path}: string) & string & Opens the file on \textbf{path} and returns its contents as a plain text. \end{tabularx} diff --git a/work_files/romapidoc/api_shell.tex b/work_files/romapidoc/api_shell.tex index 9629c1d43..a6cec7c8e 100644 --- a/work_files/romapidoc/api_shell.tex +++ b/work_files/romapidoc/api_shell.tex @@ -6,5 +6,5 @@ \textbf{\large Function} & \textbf{\large Return} & \textbf{\large Description} \\ \\ \endhead - shell.run(\textbf{path}: string) & nil & Loads the script on \textbf{path} and executes it. + shell.run(\textbf{path}: string, \textbf{args}: table) & nil & Loads the script on \textbf{path} and executes it. \end{tabularx} \ No newline at end of file diff --git a/work_files/romapidoc/romapidoc.aux b/work_files/romapidoc/romapidoc.aux index 7369be936..c970b8b8f 100644 --- a/work_files/romapidoc/romapidoc.aux +++ b/work_files/romapidoc/romapidoc.aux @@ -78,9 +78,9 @@ \@writefile{toc}{\contentsline {chapter}{\chapternumberline {6}Security}{15}{chapter.6}} \@writefile{toc}{\contentsline {section}{\numberline {6.1}Functions}{15}{section.6.1}} \gdef \LT@ix {\LT@entry - {2}{102.18004pt}\LT@entry + {2}{150.79007pt}\LT@entry {1}{45.25516pt}\LT@entry - {2}{180.42001pt}} + {2}{138.95477pt}} \@writefile{lof}{\addvspace {10pt}} \@writefile{lot}{\addvspace {10pt}} \@writefile{toc}{\contentsline {chapter}{\chapternumberline {7}Shell}{16}{chapter.7}} diff --git a/work_files/romapidoc/romapidoc.log b/work_files/romapidoc/romapidoc.log index 96abd6d95..acda33802 100644 --- a/work_files/romapidoc/romapidoc.log +++ b/work_files/romapidoc/romapidoc.log @@ -1,4 +1,4 @@ -This is LuaTeX, Version beta-0.80.0 (TeX Live 2015) (rev 5238) (format=lualatex 2015.10.5) 1 OCT 2016 21:05 +This is LuaTeX, Version beta-0.80.0 (TeX Live 2015) (rev 5238) (format=lualatex 2015.10.5) 3 OCT 2016 00:46 restricted \write18 enabled. file:line:error style messages enabled. **romapidoc.tex @@ -552,7 +552,7 @@ luatexbase-attr: luatexbase.attributes["luaotfload@cursbase"] = 6 luatexbase-attr: luatexbase.attributes["luaotfload@curscurs"] = 7 luatexbase-attr: luatexbase.attributes["luaotfload@cursdone"] = 8 luatexbase-attr: luatexbase.attributes["luaotfload@state"] = 9 -luaotfload | main : fontloader loaded in 0.055 seconds +luaotfload | main : fontloader loaded in 0.087 seconds luatexbase-mcb: inserting 'luaotfload.node_processor' at position 1 in 'pre_linebreak_filter' luatexbase-mcb: inserting 'luaotfload.node_processor' @@ -1429,6 +1429,23 @@ Underfull \hbox (badness 1655) in paragraph at lines 40--40 \EU2/MyriadPro(0)/m/n/10 des-ti-na-tion. Sub-di-rec-to-ries / [] + +Underfull \hbox (badness 10000) in paragraph at lines 40--40 +[][]|\EU2/MyriadPro(0)/m/n/10 Loads the script on \EU2/MyriadPro(0)/bx/n/10 pat +h + [] + + +Underfull \hbox (badness 7030) in paragraph at lines 40--40 +\EU2/MyriadPro(0)/m/n/10 and ex-e-cutes it. NOTE: do + [] + + +Underfull \hbox (badness 10000) in paragraph at lines 40--40 +\EU2/MyriadPro(0)/m/n/10 use \EU2/MyriadPro(0)/bx/n/10 shell.run(path, tArgs)\E +U2/MyriadPro(0)/m/n/10 ; + [] + [6 @@ -1678,10 +1695,6 @@ Underfull \hbox (badness 1325) in paragraph at lines 53--53 0 freq \EU2/MyriadPro(0)/m/n/10 is [] - -Package longtable Warning: Column widths have changed -(longtable) in table 10.2 on input line 53. - [22 @@ -1723,13 +1736,9 @@ luaotfload | load : Lookup/name: "MyriadPro" -> "MyriadPro-Bold.otf" [26 \tf@toc=\write5 \openout5 = romapidoc.toc - - -Package longtable Warning: Table widths have changed. Rerun LaTeX. - Package atveryend Info: Empty hook `BeforeClearDocument' on input line 183. Package atveryend Info: Empty hook `AfterLastShipout' on input line 183. -(./romapidoc.aux) + (./romapidoc.aux) Package atveryend Info: Executing hook `AtVeryEndDocument' on input line 183. Package atveryend Info: Executing hook `AtEndAfterFileList' on input line 183. Package rerunfilecheck Info: File `romapidoc.out' has not changed. @@ -1752,7 +1761,7 @@ LuaTeX warning (dest): name{Hfootnote.2} has been referenced but does not exist, -Output written on romapidoc.pdf (37 pages, 105094 bytes). +Output written on romapidoc.pdf (37 pages, 105443 bytes). PDF statistics: 461 PDF objects out of 1000 (max. 8388607) 403 compressed objects within 5 object streams diff --git a/work_files/romapidoc/romapidoc.pdf b/work_files/romapidoc/romapidoc.pdf index 6a6557392..f3bb2a530 100644 Binary files a/work_files/romapidoc/romapidoc.pdf and b/work_files/romapidoc/romapidoc.pdf differ diff --git a/work_files/romapidoc/romapidoc.synctex.gz b/work_files/romapidoc/romapidoc.synctex.gz index b61fe4d68..5de4b485c 100644 Binary files a/work_files/romapidoc/romapidoc.synctex.gz and b/work_files/romapidoc/romapidoc.synctex.gz differ diff --git a/work_files/themanpage/man_dsh.tex b/work_files/themanpage/man_dsh.tex new file mode 100644 index 000000000..f172fa66b --- /dev/null +++ b/work_files/themanpage/man_dsh.tex @@ -0,0 +1,9 @@ +\begin{tabularx}{\textwidth}{l X} + \textbf{NAME} & dsh - the Dumbshell + \\ \\ + \textbf{SYNOPSIS} & \textbf{dsh} [file] + \\ \\ + \textbf{COPYRIGHT} & See copyright information for the game you are actually playing. + \\ \\ + \textbf{DESCRIPTION} & \textbf{Dsh} is a semi \textbf{sh}-compatible command language interpreter that executes commands read from the standard input or from a file. +\end{tabularx} \ No newline at end of file diff --git a/work_files/themanpage/man_msh.tex b/work_files/themanpage/man_msh.tex new file mode 100644 index 000000000..cfe7d9b53 --- /dev/null +++ b/work_files/themanpage/man_msh.tex @@ -0,0 +1,9 @@ +\begin{tabularx}{\textwidth}{l X} + \textbf{NAME} & msh - the Moonshell + \\ \\ + \textbf{SYNOPSIS} & \textbf{msh} [file] + \\ \\ + \textbf{COPYRIGHT} & See copyright information for the game you are actually playing. + \\ \\ + \textbf{DESCRIPTION} & \textbf{Msh} is a Lua prompt that reads lua script from the user, or execute a file user had put as an argument. +\end{tabularx} \ No newline at end of file diff --git a/work_files/themanpage/themanpage.aux b/work_files/themanpage/themanpage.aux new file mode 100644 index 000000000..7ab1ba693 --- /dev/null +++ b/work_files/themanpage/themanpage.aux @@ -0,0 +1,35 @@ +\relax +\providecommand\hyper@newdestlabel[2]{} +\providecommand*{\memsetcounter}[2]{} +\providecommand\HyperFirstAtBeginDocument{\AtBeginDocument} +\HyperFirstAtBeginDocument{\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{\ifx\hyper@anchor\@undefined +\let\contentsline\oldcontentsline +\let\newlabel\oldnewlabel +\fi} +\fi} +\global\let\hyper@last\relax +\gdef\HyperFirstAtBeginDocument#1{#1} +\providecommand\HyField@AuxAddToFields[1]{} +\providecommand\HyField@AuxAddToCoFields[2]{} +\@writefile{lof}{\addvspace {10pt}} +\@writefile{lot}{\addvspace {10pt}} +\@writefile{toc}{\contentsline {chapter}{\chapternumberline {1}Main Applications}{5}{chapter.1}} +\gdef \LT@i {\LT@entry + {1}{72.64pt}\LT@entry + {1}{262.36pt}} +\gdef \LT@ii {\LT@entry + {1}{72.64pt}\LT@entry + {1}{262.36pt}} +\@writefile{toc}{\contentsline {section}{\numberline {1.1}DSH}{6}{section.1.1}} +\@writefile{toc}{\contentsline {section}{\numberline {1.2}MSH}{6}{section.1.2}} +\@writefile{lof}{\addvspace {10pt}} +\@writefile{lot}{\addvspace {10pt}} +\@writefile{toc}{\contentsline {chapter}{\chapternumberline {2}References}{7}{chapter.2}} +\memsetcounter{lastsheet}{8} +\memsetcounter{lastpage}{8} diff --git a/work_files/themanpage/themanpage.log b/work_files/themanpage/themanpage.log new file mode 100644 index 000000000..8645065c3 --- /dev/null +++ b/work_files/themanpage/themanpage.log @@ -0,0 +1,1309 @@ +This is LuaTeX, Version beta-0.80.0 (TeX Live 2015) (rev 5238) (format=lualatex 2015.10.5) 3 OCT 2016 00:33 + restricted \write18 enabled. + file:line:error style messages enabled. +**themanpage.tex +(./themanpage.tex +LaTeX2e <2015/01/01> +Babel <3.9l> and hyphenation patterns for 79 languages loaded. +(/usr/local/texlive/2015/texmf-dist/tex/latex/memoir/memoir.cls +Document Class: memoir 2015/04/23 v3.7d configurable book, report, article docum +ent class +\onelineskip=\skip41 +\lxvchars=\skip42 +\xlvchars=\skip43 +\@memcnta=\count79 +\c@@memmarkcntra=\count80 +(/usr/local/texlive/2015/texmf-dist/tex/generic/oberdiek/ifpdf.sty +Package: ifpdf 2011/01/30 v2.3 Provides the ifpdf switch (HO) +Package ifpdf Info: pdfTeX in PDF mode is detected. +) +(/usr/local/texlive/2015/texmf-dist/tex/latex/ifetex/ifetex.sty +Package: ifetex 2011/12/15 v1.2 ifetex + +(/usr/local/texlive/2015/texmf-dist/tex/plain/ifetex/ifetex.tex)) +(/usr/local/texlive/2015/texmf-dist/tex/generic/ifxetex/ifxetex.sty +Package: ifxetex 2010/09/12 v0.6 Provides ifxetex conditional +) +(/usr/local/texlive/2015/texmf-dist/tex/generic/oberdiek/ifluatex.sty +Package: ifluatex 2010/03/01 v1.3 Provides the ifluatex switch (HO) +Package ifluatex Info: LuaTeX detected. +) +\stockheight=\skip44 +\stockwidth=\skip45 +\trimtop=\skip46 +\trimedge=\skip47 + +(/usr/local/texlive/2015/texmf-dist/tex/latex/etex-pkg/etex.sty +Package: etex 2015/03/02 v2.1 eTeX basic definition package (PEB,DPC) +\et@xins=\count81 +) +(/usr/local/texlive/2015/texmf-dist/tex/latex/memoir/mem10.clo +File: mem10.clo 2008/01/30 v0.3 memoir class 10pt size option +) +\binding=\skip48 +\spinemargin=\skip49 +\foremargin=\skip50 +\uppermargin=\skip51 +\lowermargin=\skip52 +\headdrop=\skip53 +\normalrulethickness=\skip54 +\mem@maxheadheight=\skip55 +\mem@maxfootheight=\skip56 +\headwidth=\skip57 +\c@storedpagenumber=\count82 +\memPD=\dimen102 +\m@mabparskip=\skip58 +\thanksmarkwidth=\skip59 +\thanksmarksep=\skip60 +\droptitle=\skip61 +\c@book=\count83 +\c@part=\count84 +\c@chapter=\count85 +\c@section=\count86 +\c@subsection=\count87 +\c@subsubsection=\count88 +\c@paragraph=\count89 +\c@subparagraph=\count90 +\beforechapskip=\skip62 +\midchapskip=\skip63 +\afterchapskip=\skip64 +\chapindent=\skip65 +\bottomsectionskip=\skip66 +\secindent=\skip67 +\beforesecskip=\skip68 +\aftersecskip=\skip69 +\subsecindent=\skip70 +\beforesubsecskip=\skip71 +\aftersubsecskip=\skip72 +\subsubsecindent=\skip73 +\beforesubsubsecskip=\skip74 +\aftersubsubsecskip=\skip75 +\paraindent=\skip76 +\beforeparaskip=\skip77 +\afterparaskip=\skip78 +\subparaindent=\skip79 +\beforesubparaskip=\skip80 +\aftersubparaskip=\skip81 +\pfbreakskip=\skip82 +\c@@ppsavesec=\count91 +\c@@ppsaveapp=\count92 +\ragrparindent=\dimen103 +\everylistparindent=\dimen104 +\parsepi=\skip83 +\topsepi=\skip84 +\itemsepi=\skip85 +\parsepii=\skip86 +\topsepii=\skip87 +\topsepiii=\skip88 +\itemsepii=\skip89 +\itemsepiii=\skip90 +\partopsepii=\skip91 +\partopsepiii=\skip92 +\m@msavetopsep=\skip93 +\m@msavepartopsep=\skip94 +\@enLab=\toks14 +\abstitleskip=\skip95 +\absleftindent=\skip96 +\abs@leftindent=\dimen105 +\absrightindent=\skip97 +\absparindent=\skip98 +\absparsep=\skip99 +\c@vslineno=\count93 +\c@poemline=\count94 +\c@modulo@vs=\count95 +\c@memfvsline=\count96 +\vleftskip=\skip100 +\vrightskip=\skip101 +\stanzaskip=\skip102 +\versewidth=\skip103 +\vgap=\skip104 +\vindent=\skip105 +\vleftmargin=\dimen106 +\c@verse=\count97 +\c@chrsinstr=\count98 +\beforepoemtitleskip=\skip106 +\afterpoemtitleskip=\skip107 +\c@poem=\count99 +\beforePoemTitleskip=\skip108 +\midPoemTitleskip=\skip109 +\afterPoemTitleskip=\skip110 +\col@sep=\dimen107 +\extrarowheight=\dimen108 +\NC@list=\toks15 +\extratabsurround=\skip111 +\backup@length=\skip112 +\TX@col@width=\dimen109 +\TX@old@table=\dimen110 +\TX@old@col=\dimen111 +\TX@target=\dimen112 +\TX@delta=\dimen113 +\TX@cols=\count100 +\TX@ftn=\toks16 +\heavyrulewidth=\dimen114 +\lightrulewidth=\dimen115 +\cmidrulewidth=\dimen116 +\belowrulesep=\dimen117 +\belowbottomsep=\dimen118 +\aboverulesep=\dimen119 +\abovetopsep=\dimen120 +\cmidrulesep=\dimen121 +\cmidrulekern=\dimen122 +\defaultaddspace=\dimen123 +\@cmidla=\count101 +\@cmidlb=\count102 +\@aboverulesep=\dimen124 +\@belowrulesep=\dimen125 +\@thisruleclass=\count103 +\@lastruleclass=\count104 +\@thisrulewidth=\dimen126 +\ctableftskip=\skip113 +\ctabrightskip=\skip114 +\abovecolumnspenalty=\count105 +\@linestogo=\count106 +\@cellstogo=\count107 +\@cellsincolumn=\count108 +\crtok=\toks17 +\@mincolumnwidth=\dimen127 +\c@newflo@tctr=\count109 +\mem@margin@floatbox=\box26 +\@contcwidth=\skip115 +\@contindw=\skip116 +\abovecaptionskip=\skip117 +\belowcaptionskip=\skip118 +\subfloattopskip=\skip119 +\subfloatcapskip=\skip120 +\subfloatcaptopadj=\skip121 +\subfloatbottomskip=\skip122 +\subfloatlabelskip=\skip123 +\subfloatcapmargin=\dimen128 +\c@@contsubnum=\count110 +\m@mscap@capbox=\box27 +\m@mscap@fbox=\box28 +\sidecapsep=\dimen129 +\sidecapwidth=\dimen130 +\m@m@tempdima=\dimen131 +\m@mscapraise=\dimen132 +\sidecapraise=\dimen133 +\m@mscapmainwidth=\dimen134 +\m@mscaplkern=\dimen135 +\beforeepigraphskip=\skip124 +\afterepigraphskip=\skip125 +\epigraphwidth=\skip126 +\epigraphrule=\skip127 +LaTeX Info: Redefining \em on input line 7533. +LaTeX Info: Redefining \emph on input line 7541. +\tocentryskip=\skip128 +\tocbaseline=\skip129 +\cftparskip=\skip130 +\cftbeforebookskip=\skip131 +\cftbookindent=\dimen136 +\cftbooknumwidth=\dimen137 +\cftbeforepartskip=\skip132 +\cftpartindent=\skip133 +\cftpartnumwidth=\skip134 +\cftbeforechapterskip=\skip135 +\cftchapterindent=\skip136 +\cftchapternumwidth=\skip137 +\cftbeforesectionskip=\skip138 +\cftsectionindent=\skip139 +\cftsectionnumwidth=\skip140 +\cftbeforesubsectionskip=\skip141 +\cftsubsectionindent=\skip142 +\cftsubsectionnumwidth=\skip143 +\cftbeforesubsubsectionskip=\skip144 +\cftsubsubsectionindent=\skip145 +\cftsubsubsectionnumwidth=\skip146 +\cftbeforeparagraphskip=\skip147 +\cftparagraphindent=\skip148 +\cftparagraphnumwidth=\skip149 +\cftbeforesubparagraphskip=\skip150 +\cftsubparagraphindent=\skip151 +\cftsubparagraphnumwidth=\skip152 +\prechapterprecisshift=\dimen138 +\c@maxsecnumdepth=\count111 +\bibindent=\dimen139 +\bibitemsep=\skip153 +\indexcolsep=\skip154 +\indexrule=\skip155 +\indexmarkstyle=\toks18 +\@indexbox=\insert233 +\glossarycolsep=\dimen140 +\glossaryrule=\dimen141 +\sideparvshift=\skip156 +\sideins=\insert232 +\sidebartopsep=\skip157 +\sidebarhsep=\skip158 +\sidebarvsep=\skip159 +\sidebarwidth=\skip160 +\footmarkwidth=\skip161 +\footmarksep=\skip162 +\footparindent=\skip163 +\footinsdim=\skip164 +\footinsv@r=\insert231 +\@mpfootinsv@r=\insert230 +\m@m@k=\count112 +\m@m@h=\dimen142 +\m@mipn@skip=\skip165 +\sidefootins=\insert229 +\sidefootadjust=\skip166 +\sidefootheight=\skip167 +\sidefoothsep=\skip168 +\sidefootvsep=\skip169 +\sidefootwidth=\skip170 +\m@mdownsf=\skip171 +\c@sidefootnote=\count113 +\sidefootmarkwidth=\skip172 +\sidefootmarksep=\skip173 +\sidefootparindent=\skip174 +\c@pagenote=\count114 +\c@pagenoteshadow=\count115 +\mem@pn@lastkern=\skip175 +\every@verbatim=\toks19 +\afterevery@verbatim=\toks20 +\verbatim@line=\toks21 +\tab@position=\count116 +\verbatim@in@stream=\read1 +\verbatimindent=\skip176 +\verbatim@out=\write3 +\bvboxsep=\skip177 +\c@memfbvline=\count117 +\c@bvlinectr=\count118 +\bvnumlength=\skip178 +\fb@frw=\dimen143 +\fb@frh=\dimen144 +\FrameRule=\dimen145 +\FrameSep=\dimen146 +\c@cp@cntr=\count119 +LaTeX Info: Redefining \: on input line 12050. +LaTeX Info: Redefining \! on input line 12052. +\c@ism@mctr=\count120 +\c@xsm@mctr=\count121 +\c@csm@mctr=\count122 +\c@ksm@mctr=\count123 +\c@xksm@mctr=\count124 +\c@cksm@mctr=\count125 +\c@msm@mctr=\count126 +\c@xmsm@mctr=\count127 +\c@cmsm@mctr=\count128 +\c@bsm@mctr=\count129 +\c@workm@mctr=\count130 +\c@sheetsequence=\count131 +\c@lastsheet=\count132 +\c@lastpage=\count133 +\c@figure=\count134 +\c@lofdepth=\count135 +\cftbeforefigureskip=\skip179 +\cftfigureindent=\skip180 +\cftfigurenumwidth=\skip181 +\c@table=\count136 +\c@lotdepth=\count137 +\cftbeforetableskip=\skip182 +\cfttableindent=\skip183 +\cfttablenumwidth=\skip184 +Package abstract [2008/07/23] emulated by memoir. +Package appendix [2008/07/23] emulated by memoir. +Package array [2008/09/09] emulated by memoir. +Package booktabs [2008/07/23] emulated by memoir. +Package ccaption [2008/07/23] emulated by memoir. +Package changepage [2008/07/23] emulated by memoir. +Package chngcntr [2008/07/23] emulated by memoir. +Package chngpage [2008/07/23] emulated by memoir. +Package crop emulated by memoir. +Package dcolumn [2008/07/23] emulated by memoir. +Package delarray [2008/07/23] emulated by memoir. +Package enumerate [2008/07/23] emulated by memoir. +Package epigraph [2008/07/23] emulated by memoir. +Package ifmtarg [2008/07/23] emulated by memoir. +Package index [2008/07/23] emulated by memoir. +Package makeidx [2008/07/23] emulated by memoir. +Package moreverb [2008/07/23] emulated by memoir. +Package mparhack [2008/07/23] emulated by memoir. +Package needspace [2008/07/23] emulated by memoir. +Package newfile [2008/07/23] emulated by memoir. +Package nextpage [2008/07/23] emulated by memoir. +Package pagenote [2008/07/23] emulated by memoir. +Package parskip [2008/07/23] emulated by memoir. +Package patchcmd [2008/07/23] emulated by memoir. +Package setspace [2008/07/23] emulated by memoir. +Package shortvrb [2008/07/23] emulated by memoir. +Package showidx [2008/07/23] emulated by memoir. +Package tabularx [2008/07/23] emulated by memoir. +Package titleref [2008/07/23] emulated by memoir. +Package titling [2008/07/23] emulated by memoir. +Package tocbibind [2008/07/23] emulated by memoir. +Package tocloft [2008/07/23] emulated by memoir. +Package tocvsec2 [2008/07/23] emulated by memoir. +Package verbatim [2008/07/23] emulated by memoir. +Package verse [2008/07/23] emulated by memoir. + +(/usr/local/texlive/2015/texmf-dist/tex/latex/memoir/mempatch.sty +Package: mempatch 2009/07/24 v6.0f Patches for memoir class v1.6180339 +)) +(/usr/local/texlive/2015/texmf-dist/tex/latex/fontspec/fontspec.sty +Package: fontspec 2015/03/14 v2.4c Font selection for XeLaTeX and LuaLaTeX + +(/usr/local/texlive/2015/texmf-dist/tex/latex/l3kernel/expl3.sty +Package: expl3 2015/03/01 v5547 L3 programming layer (loader) + +(/usr/local/texlive/2015/texmf-dist/tex/latex/l3kernel/expl3-code.tex +Package: expl3 2015/03/01 v5547 L3 programming layer (code) +L3 Module: l3bootstrap 2015/02/28 v5542 L3 Bootstrap code +L3 Module: l3names 2015/02/24 v5535 L3 Namespace for primitives +L3 Module: l3basics 2015/01/27 v5500 L3 Basic definitions +L3 Module: l3expan 2014/11/27 v5472 L3 Argument expansion +L3 Module: l3tl 2015/01/27 v5500 L3 Token lists +L3 Module: l3str 2015/03/01 v5545 L3 Strings +L3 Module: l3seq 2014/08/23 v5354 L3 Sequences and stacks +L3 Module: l3int 2015/02/21 v5529 L3 Integers +\c_max_int=\count138 +\l_tmpa_int=\count139 +\l_tmpb_int=\count140 +\g_tmpa_int=\count141 +\g_tmpb_int=\count142 +L3 Module: l3quark 2014/08/23 v5354 L3 Quarks +L3 Module: l3prg 2014/08/23 v5354 L3 Control structures +\g__prg_map_int=\count143 +L3 Module: l3clist 2014/08/23 v5354 L3 Comma separated lists +L3 Module: l3token 2014/09/15 v5422 L3 Experimental token manipulation +L3 Module: l3prop 2014/08/23 v5354 L3 Property lists +L3 Module: l3msg 2015/02/26 v5537 L3 Messages +L3 Module: l3file 2014/08/24 v5369 L3 File and I/O operations +\l_iow_line_count_int=\count144 +\l__iow_target_count_int=\count145 +\l__iow_current_line_int=\count146 +\l__iow_current_word_int=\count147 +\l__iow_current_indentation_int=\count148 +L3 Module: l3skip 2014/08/23 v5354 L3 Dimensions and skips +\c_zero_dim=\dimen147 +\c_max_dim=\dimen148 +\l_tmpa_dim=\dimen149 +\l_tmpb_dim=\dimen150 +\g_tmpa_dim=\dimen151 +\g_tmpb_dim=\dimen152 +\c_zero_skip=\skip185 +\c_max_skip=\skip186 +\l_tmpa_skip=\skip187 +\l_tmpb_skip=\skip188 +\g_tmpa_skip=\skip189 +\g_tmpb_skip=\skip190 +\c_zero_muskip=\muskip10 +\c_max_muskip=\muskip11 +\l_tmpa_muskip=\muskip12 +\l_tmpb_muskip=\muskip13 +\g_tmpa_muskip=\muskip14 +\g_tmpb_muskip=\muskip15 +L3 Module: l3keys 2015/01/27 v5500 L3 Key-value interfaces +\g__keyval_level_int=\count149 +\l_keys_choice_int=\count150 +L3 Module: l3fp 2014/08/22 v5336 L3 Floating points +\c__fp_leading_shift_int=\count151 +\c__fp_middle_shift_int=\count152 +\c__fp_trailing_shift_int=\count153 +\c__fp_big_leading_shift_int=\count154 +\c__fp_big_middle_shift_int=\count155 +\c__fp_big_trailing_shift_int=\count156 +\c__fp_Bigg_leading_shift_int=\count157 +\c__fp_Bigg_middle_shift_int=\count158 +\c__fp_Bigg_trailing_shift_int=\count159 +L3 Module: l3box 2014/08/23 v5354 L3 Experimental boxes +\c_empty_box=\box29 +\l_tmpa_box=\box30 +\l_tmpb_box=\box31 +\g_tmpa_box=\box32 +\g_tmpb_box=\box33 +L3 Module: l3coffins 2014/08/23 v5354 L3 Coffin code layer +\l__coffin_internal_box=\box34 +\l__coffin_internal_dim=\dimen153 +\l__coffin_offset_x_dim=\dimen154 +\l__coffin_offset_y_dim=\dimen155 +\l__coffin_x_dim=\dimen156 +\l__coffin_y_dim=\dimen157 +\l__coffin_x_prime_dim=\dimen158 +\l__coffin_y_prime_dim=\dimen159 +\c_empty_coffin=\box35 +\l__coffin_aligned_coffin=\box36 +\l__coffin_aligned_internal_coffin=\box37 +\l_tmpa_coffin=\box38 +\l_tmpb_coffin=\box39 +\l__coffin_display_coffin=\box40 +\l__coffin_display_coord_coffin=\box41 +\l__coffin_display_pole_coffin=\box42 +\l__coffin_display_offset_dim=\dimen160 +\l__coffin_display_x_dim=\dimen161 +\l__coffin_display_y_dim=\dimen162 +L3 Module: l3color 2014/08/23 v5354 L3 Experimental color support +L3 Module: l3candidates 2015/03/01 v5544 L3 Experimental additions to l3kernel +\l__box_top_dim=\dimen163 +\l__box_bottom_dim=\dimen164 +\l__box_left_dim=\dimen165 +\l__box_right_dim=\dimen166 +\l__box_top_new_dim=\dimen167 +\l__box_bottom_new_dim=\dimen168 +\l__box_left_new_dim=\dimen169 +\l__box_right_new_dim=\dimen170 +\l__box_internal_box=\box43 +\l__coffin_bounding_shift_dim=\dimen171 +\l__coffin_left_corner_dim=\dimen172 +\l__coffin_right_corner_dim=\dimen173 +\l__coffin_bottom_corner_dim=\dimen174 +\l__coffin_top_corner_dim=\dimen175 +\l__coffin_scaled_total_height_dim=\dimen176 +\l__coffin_scaled_width_dim=\dimen177 +) +(/usr/local/texlive/2015/texmf-dist/tex/latex/l3kernel/l3unicode-data.def +File: l3unicode-data.def 2015/03/01 v5544 L3 Unicode data +) +(/usr/local/texlive/2015/texmf-dist/tex/latex/l3kernel/l3pdfmode.def +File: l3pdfmode.def 2015/03/01 v5544 L3 Experimental driver: PDF mode +\l__driver_color_stack_int=\count160 +)) +(/usr/local/texlive/2015/texmf-dist/tex/latex/l3packages/xparse/xparse.sty +Package: xparse 2014/11/25 v5471 L3 Experimental document command parser +\l__xparse_current_arg_int=\count161 +\l__xparse_m_args_int=\count162 +\l__xparse_mandatory_args_int=\count163 +\l__xparse_processor_int=\count164 +\l__xparse_v_nesting_int=\count165 +) +(/usr/local/texlive/2015/texmf-dist/tex/luatex/luaotfload/luaotfload.sty +Package: luaotfload 2014/08/10 v2.5-4 OpenType layout system + +(/usr/local/texlive/2015/texmf-dist/tex/luatex/luatexbase/luatexbase.sty +Package: luatexbase 2013/05/11 v0.6 Resource management for the LuaTeX macro pro +grammer + +(/usr/local/texlive/2015/texmf-dist/tex/generic/oberdiek/luatex.sty +Package: luatex 2010/03/09 v0.4 LuaTeX basic definition package (HO) + +(/usr/local/texlive/2015/texmf-dist/tex/generic/oberdiek/infwarerr.sty +Package: infwarerr 2010/04/08 v1.3 Providing info/warning/error messages (HO) +) +\LuT@AllocAttribute=\count277 +\LuT@AllocCatcodeTable=\count278 +\CatcodeTableStack=\count279 +\CatcodeTableIniTeX=\catcodetable1 +\CatcodeTableString=\catcodetable3 +\CatcodeTableOther=\catcodetable5 +\CatcodeTableLaTeX=\catcodetable7 + +(/usr/local/texlive/2015/texmf-dist/tex/generic/oberdiek/luatex-loader.sty +Package: luatex-loader 2010/03/09 v0.4 Lua module loader (HO) + +(/usr/local/texlive/2015/texmf-dist/scripts/oberdiek/oberdiek.luatex.lua))) +(/usr/local/texlive/2015/texmf-dist/tex/luatex/luatexbase/luatexbase-compat.sty +Package: luatexbase-compat 2011/05/24 v0.4 Compatibility tools for LuaTeX +) +(/usr/local/texlive/2015/texmf-dist/tex/luatex/luatexbase/luatexbase-modutils.s +ty +Package: luatexbase-modutils 2013/05/11 v0.6 Module utilities for LuaTeX + +(/usr/local/texlive/2015/texmf-dist/tex/luatex/luatexbase/luatexbase-loader.sty +Package: luatexbase-loader 2013/05/11 v0.6 Lua module loader for LuaTeX +(/usr/local/texlive/2015/texmf-dist/tex/luatex/luatexbase/luatexbase.loader.lua) +) +(/usr/local/texlive/2015/texmf-dist/tex/luatex/luatexbase/modutils.lua) +Lua module: luatexbase-modutils 2013/05/11 0.6 Module utilities for LuaTeX +) +(/usr/local/texlive/2015/texmf-dist/tex/luatex/luatexbase/luatexbase-regs.sty +Package: luatexbase-regs 2011/05/24 v0.4 Registers allocation for LuaTeX +) +(/usr/local/texlive/2015/texmf-dist/tex/luatex/luatexbase/luatexbase-attr.sty +Package: luatexbase-attr 2013/05/11 v0.6 Attributes allocation for LuaTeX + +(/usr/local/texlive/2015/texmf-dist/tex/luatex/luatexbase/attr.lua) +Lua module: luatexbase-attr 2013/05/11 0.6 Attributes allocation for LuaTeX +\lltxb@attr@unsetvalue=\count280 +) +(/usr/local/texlive/2015/texmf-dist/tex/luatex/luatexbase/luatexbase-cctb.sty +Package: luatexbase-cctb 2013/05/11 v0.6 Catcodetable allocation for LuaTeX + +(/usr/local/texlive/2015/texmf-dist/tex/luatex/luatexbase/cctb.lua) +Lua module: luatexbase-cctb 2013/05/11 0.6 Catcodetable allocation for LuaTeX +\lltxb@catcodetable@alloc=\count281 +\CatcodeTableStack=\count282 +\CatcodeTableIniTeX=\luatexcatcodetable1 +\CatcodeTableString=\luatexcatcodetable3 +\CatcodeTableOther=\luatexcatcodetable5 +\CatcodeTableLaTeX=\luatexcatcodetable7 +\CatcodeTableLaTeXAtLetter=\luatexcatcodetable9 +\CatcodeTableExpl=\luatexcatcodetable11 +) +(/usr/local/texlive/2015/texmf-dist/tex/luatex/luatexbase/luatexbase-mcb.sty +Package: luatexbase-mcb 2013/05/11 v0.6 Callback management for LuaTeX + +(/usr/local/texlive/2015/texmf-dist/tex/luatex/luatexbase/mcb.lua) +Lua module: luatexbase-mcb 2013/05/11 0.6 register several functions in a callba +ck +)) +(/usr/local/texlive/2015/texmf-dist/tex/luatex/luaotfload/luaotfload-main.lua) +Lua module: luaotfload-main 2014/08/10 2.50003 OpenType layout system. + +(/usr/local/texlive/2015/texmf-dist/tex/luatex/luaotfload/luaotfload-log.lua) +(/usr/local/texlive/2015/texmf-dist/tex/luatex/luaotfload/luaotfload-fontloader. +lua)(using write cache: /usr/local/texlive/2015/texmf-var/luatex-cache/generic)( +using read cache: /usr/local/texlive/2015/texmf-var/luatex-cache/generic /Users/ +minjaesong/Library/texlive/2015/texmf-var/luatex-cache/generic) +luatexbase-attr: luatexbase.attributes["luaotfload@kernpair"] = 1 +luatexbase-attr: luatexbase.attributes["luaotfload@ligacomp"] = 2 +luatexbase-attr: luatexbase.attributes["luaotfload@markbase"] = 3 +luatexbase-attr: luatexbase.attributes["luaotfload@markmark"] = 4 +luatexbase-attr: luatexbase.attributes["luaotfload@markdone"] = 5 +luatexbase-attr: luatexbase.attributes["luaotfload@cursbase"] = 6 +luatexbase-attr: luatexbase.attributes["luaotfload@curscurs"] = 7 +luatexbase-attr: luatexbase.attributes["luaotfload@cursdone"] = 8 +luatexbase-attr: luatexbase.attributes["luaotfload@state"] = 9 +luaotfload | main : fontloader loaded in 0.032 seconds +luatexbase-mcb: inserting 'luaotfload.node_processor' +at position 1 in 'pre_linebreak_filter' +luatexbase-mcb: inserting 'luaotfload.node_processor' +at position 1 in 'hpack_filter' +luatexbase-mcb: inserting 'luaotfload.find_vf_file' +at position 1 in 'find_vf_file' +(/usr/local/texlive/2015/texmf-dist/tex/luatex/luaotfload/luaotfload-override.lu +a) +(/usr/local/texlive/2015/texmf-dist/tex/luatex/luaotfload/luaotfload-parsers.lua +) +(/usr/local/texlive/2015/texmf-dist/tex/luatex/luaotfload/luaotfload-configurati +on.lua) +(/usr/local/texlive/2015/texmf-dist/tex/luatex/luaotfload/luaotfload-status.lua) +luaotfload | conf : Root cache directory is /usr/local/texlive/2015/texmf-var/lu +atex-cache/generic/names. +(/usr/local/texlive/2015/texmf-dist/tex/luatex/luaotfload/luaotfload-loaders.lua +) +(/usr/local/texlive/2015/texmf-dist/tex/luatex/luaotfload/luaotfload-database.lu +a) +(/usr/local/texlive/2015/texmf-dist/tex/luatex/luaotfload/luaotfload-colors.lua) +luaotfload | conf : Root cache directory is /usr/local/texlive/2015/texmf-var/lu +atex-cache/generic/names. +luatexbase-mcb: creating 'luaotfload.resolve_font' type 4 +luatexbase-mcb: creating 'luaotfload.patch_font' type 4 +luatexbase-mcb: resetting callback 'define_font' +luatexbase-mcb: inserting 'luaotfload.define_font' +at position 1 in 'define_font' +(/usr/local/texlive/2015/texmf-dist/tex/luatex/luaotfload/luaotfload-features.lu +a) +(/usr/local/texlive/2015/texmf-dist/tex/luatex/luaotfload/luaotfload-letterspace +.lua) +(/usr/local/texlive/2015/texmf-dist/tex/luatex/luaotfload/luaotfload-auxiliary.l +ua) +luatexbase-mcb: inserting 'luaotfload.aux.set_sscale_dimens' +at position 1 in 'luaotfload.patch_font' +luatexbase-mcb: inserting 'luaotfload.aux.patch_cambria_domh' +at position 2 in 'luaotfload.patch_font' +luatexbase-mcb: inserting 'luaotfload.aux.set_capheight' +at position 3 in 'luaotfload.patch_font' +luatexbase-mcb: inserting 'luaotfload.rewrite_fontname' +at position 4 in 'luaotfload.patch_font') +(/usr/local/texlive/2015/texmf-dist/tex/latex/fontspec/fontspec.lua) +Lua module: fontspec 2013/05/20 2.3c Advanced font selection for LuaLaTeX. +\l_fontspec_script_int=\count283 +\l_fontspec_language_int=\count284 +\l_fontspec_strnum_int=\count285 +\l__fontspec_tmpa_dim=\dimen256 +\l__fontspec_tmpb_dim=\dimen257 +\l__fontspec_tmpc_dim=\dimen258 +Variant \tl_gset:cV already defined; not changing it on line 71 + +(/usr/local/texlive/2015/texmf-dist/tex/latex/fontspec/fontspec-patches.sty +Package: fontspec-patches 2015/03/14 v2.4c Font selection for XeLaTeX and LuaLaT +eX +LaTeX Info: Redefining \em on input line 49. +LaTeX Info: Redefining \emph on input line 57. +LaTeX Info: Redefining \- on input line 60. +................................................. +. LaTeX info: "xparse/redefine-command" +. +. Redefining command \oldstylenums with sig. 'm' on line 155. +................................................. +................................................. +. LaTeX info: "xparse/define-command" +. +. Defining command \liningnums with sig. 'm' on line 159. +................................................. +) +(/usr/local/texlive/2015/texmf-dist/tex/latex/fontspec/fontspec-luatex.sty +Package: fontspec-luatex 2015/03/14 v2.4c Font selection for XeLaTeX and LuaLaTe +X + +(/usr/local/texlive/2015/texmf-dist/tex/latex/base/fontenc.sty +Package: fontenc 2005/09/27 v1.99g Standard LaTeX package + +(/usr/local/texlive/2015/texmf-dist/tex/latex/euenc/eu2enc.def +File: eu2enc.def 2010/05/27 v0.1h Experimental Unicode font encodings +) +LaTeX Font Info: Try loading font information for EU2+lmr on input line 105. + +(/usr/local/texlive/2015/texmf-dist/tex/latex/euenc/eu2lmr.fd +File: eu2lmr.fd 2009/10/30 v1.6 Font defs for Latin Modern +) +luaotfload | db : Font names database loaded from /usr/local/texlive/2015/texmf- +var/luatex-cache/generic/names/luaotfload-names.luc(compiling luc: /usr/local/te +xlive/2015/texmf-var/luatex-cache/generic/fonts/otf/lmroman10-regular.luc)(load +luc: /Users/minjaesong/Library/texlive/2015/texmf-var/luatex-cache/generic/fonts +/otf/lmroman10-regular.luc)) +(/usr/local/texlive/2015/texmf-dist/tex/xelatex/xunicode/xunicode.sty +File: xunicode.sty 2011/09/09 v0.981 provides access to latin accents and many o +ther characters in Unicode lower plane + +(/usr/local/texlive/2015/texmf-dist/tex/latex/tipa/t3enc.def +File: t3enc.def 2001/12/31 T3 encoding +(compiling luc: /usr/local/texlive/2015/texmf-var/luatex-cache/generic/fonts/otf +/lmromanslant10-regular.luc)(load luc: /Users/minjaesong/Library/texlive/2015/te +xmf-var/luatex-cache/generic/fonts/otf/lmromanslant10-regular.luc)(compiling luc +: /usr/local/texlive/2015/texmf-var/luatex-cache/generic/fonts/otf/lmroman10-ita +lic.luc)(load luc: /Users/minjaesong/Library/texlive/2015/texmf-var/luatex-cache +/generic/fonts/otf/lmroman10-italic.luc)(compiling luc: /usr/local/texlive/2015/ +texmf-var/luatex-cache/generic/fonts/otf/lmroman10-bold.luc)(load luc: /Users/mi +njaesong/Library/texlive/2015/texmf-var/luatex-cache/generic/fonts/otf/lmroman10 +-bold.luc) +LaTeX Font Info: Try loading font information for EU2+lmss on input line 357. + + +(/usr/local/texlive/2015/texmf-dist/tex/latex/euenc/eu2lmss.fd +File: eu2lmss.fd 2009/10/30 v1.6 Font defs for Latin Modern +)(compiling luc: /usr/local/texlive/2015/texmf-var/luatex-cache/generic/fonts/ot +f/lmsans10-regular.luc)(load luc: /Users/minjaesong/Library/texlive/2015/texmf-v +ar/luatex-cache/generic/fonts/otf/lmsans10-regular.luc)) +\tipaTiiicode=\count286 +\tipasavetokens=\toks22 +\tipachecktokens=\toks23 + +(/usr/local/texlive/2015/texmf-dist/tex/latex/graphics/graphicx.sty +Package: graphicx 2014/10/28 v1.0g Enhanced LaTeX Graphics (DPC,SPQR) + +(/usr/local/texlive/2015/texmf-dist/tex/latex/graphics/keyval.sty +Package: keyval 2014/10/28 v1.15 key=value parser (DPC) +\KV@toks@=\toks24 +) +(/usr/local/texlive/2015/texmf-dist/tex/latex/graphics/graphics.sty +Package: graphics 2014/10/28 v1.0p Standard LaTeX Graphics (DPC,SPQR) + +(/usr/local/texlive/2015/texmf-dist/tex/latex/graphics/trig.sty +Package: trig 1999/03/16 v1.09 sin cos tan (DPC) +) +(/usr/local/texlive/2015/texmf-dist/tex/latex/latexconfig/graphics.cfg +File: graphics.cfg 2010/04/23 v1.9 graphics configuration of TeX Live +) +Package graphics Info: Driver file: pdftex.def on input line 94. + +(/usr/local/texlive/2015/texmf-dist/tex/latex/pdftex-def/pdftex.def +File: pdftex.def 2011/05/27 v0.06d Graphics/color for pdfTeX + +(/usr/local/texlive/2015/texmf-dist/tex/generic/oberdiek/ltxcmds.sty +Package: ltxcmds 2011/11/09 v1.22 LaTeX kernel commands for general use (HO) +) +\Gread@gobject=\count287 +)) +\Gin@req@height=\dimen259 +\Gin@req@width=\dimen260 +)) +................................................. +. LaTeX info: "xparse/define-command" +. +. Defining command \__fontspec_post_arg:w with sig. 'mmO{}' on line 45. +................................................. +................................................. +. LaTeX info: "xparse/define-command" +. +. Defining command \fontspec with sig. 'om' on line 47. +................................................. +................................................. +. LaTeX info: "xparse/define-command" +. +. Defining command \setmainfont with sig. 'om' on line 57. +................................................. +................................................. +. LaTeX info: "xparse/define-command" +. +. Defining command \setsansfont with sig. 'om' on line 67. +................................................. +................................................. +. LaTeX info: "xparse/define-command" +. +. Defining command \setmonofont with sig. 'om' on line 77. +................................................. +................................................. +. LaTeX info: "xparse/define-command" +. +. Defining command \setmathrm with sig. 'om' on line 91. +................................................. +................................................. +. LaTeX info: "xparse/define-command" +. +. Defining command \setboldmathrm with sig. 'om' on line 99. +................................................. +................................................. +. LaTeX info: "xparse/define-command" +. +. Defining command \setmathsf with sig. 'om' on line 107. +................................................. +................................................. +. LaTeX info: "xparse/define-command" +. +. Defining command \setmathtt with sig. 'om' on line 115. +................................................. +................................................. +. LaTeX info: "xparse/define-command" +. +. Defining command \newfontfamily with sig. 'mom' on line 129. +................................................. +................................................. +. LaTeX info: "xparse/define-command" +. +. Defining command \newfontface with sig. 'mom' on line 144. +................................................. +................................................. +. LaTeX info: "xparse/define-command" +. +. Defining command \defaultfontfeatures with sig. 't+om' on line 158. +................................................. +................................................. +. LaTeX info: "xparse/define-command" +. +. Defining command \addfontfeatures with sig. 'm' on line 214. +................................................. +................................................. +. LaTeX info: "xparse/define-command" +. +. Defining command \newfontfeature with sig. 'mm' on line 225. +................................................. +................................................. +. LaTeX info: "xparse/define-command" +. +. Defining command \newAATfeature with sig. 'mmmm' on line 233. +................................................. +................................................. +. LaTeX info: "xparse/define-command" +. +. Defining command \newopentypefeature with sig. 'mmm' on line 241. +................................................. +................................................. +. LaTeX info: "xparse/define-command" +. +. Defining command \aliasfontfeature with sig. 'mm' on line 265. +................................................. +................................................. +. LaTeX info: "xparse/define-command" +. +. Defining command \aliasfontfeatureoption with sig. 'mmm' on line 274. +................................................. +................................................. +. LaTeX info: "xparse/define-command" +. +. Defining command \newfontscript with sig. 'mm' on line 279. +................................................. +................................................. +. LaTeX info: "xparse/define-command" +. +. Defining command \newfontlanguage with sig. 'mm' on line 305. +................................................. +................................................. +. LaTeX info: "xparse/define-command" +. +. Defining command \DeclareFontsExtensions with sig. 'm' on line 325. +................................................. +Variant \prop_gput:cnV already defined; not changing it on line 708 +Variant \prop_gput:cnx already defined; not changing it on line 709 +\l__fontspec_tmp_int=\count288 +LaTeX Info: Redefining \itshape on input line 2156. +LaTeX Info: Redefining \slshape on input line 2161. +LaTeX Info: Redefining \scshape on input line 2166. +LaTeX Info: Redefining \upshape on input line 2171. + +(/usr/local/texlive/2015/texmf-dist/tex/latex/fontspec/fontspec.cfg))) +\g__file_internal_ior=\read2 +luaotfload | cache : Lookup cache loaded from /usr/local/texlive/2015/texmf-var/ +luatex-cache/generic/names/luaotfload-lookup-cache.luc. +luaotfload | load : Lookup/name: "MyriadPro" -> "MyriadPro-Regular.otf"(load luc +: /usr/local/texlive/2015/texmf-var/luatex-cache/generic/fonts/otf/myriadpro-reg +ular.luc) +luaotfload | load : Lookup/name: "MyriadPro" -> "MyriadPro-Regular.otf" +\g__fontspec_family_MyriadPro_int=\count289 +luaotfload | load : Lookup/name: "MyriadPro" -> "MyriadPro-Regular.otf" +luaotfload | load : Lookup/name: "MyriadPro" -> "MyriadPro-BoldIt.otf"(load luc: + /usr/local/texlive/2015/texmf-var/luatex-cache/generic/fonts/otf/myriadpro-bold +it.luc) +luaotfload | load : Lookup/name: "MyriadPro" -> "MyriadPro-Regular.otf" +luaotfload | load : Lookup/name: "MyriadPro" -> "MyriadPro-Bold.otf"(load luc: / +usr/local/texlive/2015/texmf-var/luatex-cache/generic/fonts/otf/myriadpro-bold.l +uc) +luaotfload | load : Lookup/name: "MyriadPro" -> "MyriadPro-Regular.otf" +luaotfload | load : Lookup/name: "MyriadPro" -> "MyriadPro-It.otf"(load luc: /us +r/local/texlive/2015/texmf-var/luatex-cache/generic/fonts/otf/myriadpro-it.luc) +luaotfload | load : Lookup/name: "MyriadPro" -> "MyriadPro-Regular.otf" +luaotfload | load : Lookup/name: "MyriadPro" -> "MyriadPro-Regular.otf" +luaotfload | aux : font no 23 (MyriadPro-Regular) does not define feature smcp f +or script latn with language dflt +luaotfload | aux : no font with id 23 +luaotfload | load : Lookup/name: "MyriadPro" -> "MyriadPro-Bold.otf" +luaotfload | load : Lookup/name: "MyriadPro" -> "MyriadPro-Bold.otf" +luaotfload | aux : font no 25 (MyriadPro-Bold) does not define feature smcp for +script latn with language dflt +luaotfload | aux : no font with id 25 +luaotfload | load : Lookup/name: "MyriadPro" -> "MyriadPro-It.otf" +luaotfload | load : Lookup/name: "MyriadPro" -> "MyriadPro-It.otf" +luaotfload | aux : font no 26 (MyriadPro-It) does not define feature smcp for sc +ript latn with language dflt +luaotfload | aux : no font with id 26 +luaotfload | load : Lookup/name: "MyriadPro" -> "MyriadPro-BoldIt.otf" +luaotfload | load : Lookup/name: "MyriadPro" -> "MyriadPro-BoldIt.otf" +luaotfload | aux : font no 24 (MyriadPro-BoldIt) does not define feature smcp fo +r script latn with language dflt +luaotfload | aux : no font with id 24 +................................................. +. fontspec info: "defining-font" +. +. Font family 'MyriadPro(0)' created for font 'MyriadPro' with options +. [Ligatures=TeX]. +. +. This font family consists of the following shapes: +. +. * 'normal' with NFSS spec.: +. <->"MyriadPro:mode=node;script=latn;language=DFLT;+tlig;+trep;" +. +. * 'small caps' with NFSS spec.: +. +. and font adjustment code: +. +. +. * 'bold' with NFSS spec.: +. <->"MyriadPro/B:mode=node;script=latn;language=DFLT;+tlig;+trep;" +. +. * 'bold small caps' with NFSS spec.: +. +. and font adjustment code: +. +. +. * 'italic' with NFSS spec.: +. <->"MyriadPro/I:mode=node;script=latn;language=DFLT;+tlig;+trep;" +. +. * 'small caps' with NFSS spec.: +. +. and font adjustment code: +. +. +. * 'bold italic' with NFSS spec.: +. <->"MyriadPro/BI:mode=node;script=latn;language=DFLT;+tlig;+trep;" +. +. * 'bold small caps' with NFSS spec.: +. +. and font adjustment code: +. +................................................. +luaotfload | load : Lookup/name: "MyriadPro" -> "MyriadPro-Regular.otf" +(/usr/local/texlive/2015/texmf-dist/tex/latex/kotex-oblivoir/memhangul-ucs/fapa +persize.sty +Package: fapapersize +\fa@stockheight=\skip256 +\fa@stockwidth=\skip257 +\fa@paperheight=\skip258 +\fa@paperwidth=\skip259 +\fa@leftmargin=\skip260 +\fa@rightmargin=\skip261 +\fa@uppermargin=\skip262 +\fa@lowermargin=\skip263 +\fa@tmplenwd=\skip264 +\fa@tmplenht=\skip265 +\tmp@dim=\dimen261 +) + +****************************************************** +Stock height and width: 597.50787pt by 421.10078pt +Top and edge trims: 0pt and 0pt +Page height and width: 597.50787pt by 421.10078pt +Text height and width: 502pt by 335pt +Spine and edge margins: 42.67912pt and 42.67912pt +Upper and lower margins: 56.9055pt and 38.60237pt +Headheight and headsep: 12pt and 18.06749pt +Footskip: 25.29494pt +Columnsep and columnseprule: 10pt and 0pt +Marginparsep and marginparwidth: 7pt and 28.67912pt +Sidecapsep and sidecapwidth: 7pt and 128pt +Sidebarhsep and sidebarwidth: 7pt and 128pt +Sidebarvsep and sidebartopsep: 12pt and 0pt +Sidebarheight: 548.39996pt +Sidefoothsep and sidefootwidth: 7pt and 128pt +Sidefootvsep and sidefootheight: 12pt and 548.39996pt +****************************************************** + +(/usr/local/texlive/2015/texmf-dist/tex/latex/tools/afterpage.sty +Package: afterpage 2014/10/28 v1.08 After-Page Package (DPC) +\AP@output=\toks25 +\AP@partial=\box256 +\AP@footins=\box257 +) +(/usr/local/texlive/2015/texmf-dist/tex/latex/hyperref/hyperref.sty +Package: hyperref 2012/11/06 v6.83m Hypertext links for LaTeX + +(/usr/local/texlive/2015/texmf-dist/tex/generic/oberdiek/hobsub-hyperref.sty +Package: hobsub-hyperref 2012/05/28 v1.13 Bundle oberdiek, subset hyperref (HO) + +(/usr/local/texlive/2015/texmf-dist/tex/generic/oberdiek/hobsub-generic.sty +Package: hobsub-generic 2012/05/28 v1.13 Bundle oberdiek, subset generic (HO) +Package: hobsub 2012/05/28 v1.13 Construct package bundles (HO) +Package hobsub Info: Skipping package `infwarerr' (already loaded). +Package hobsub Info: Skipping package `ltxcmds' (already loaded). +Package hobsub Info: Skipping package `ifluatex' (already loaded). +Package: ifvtex 2010/03/01 v1.5 Detect VTeX and its facilities (HO) +Package ifvtex Info: VTeX not detected. +Package: intcalc 2007/09/27 v1.1 Expandable calculations with integers (HO) +Package hobsub Info: Skipping package `ifpdf' (already loaded). +Package: etexcmds 2011/02/16 v1.5 Avoid name clashes with e-TeX commands (HO) +Package: kvsetkeys 2012/04/25 v1.16 Key value parser (HO) +Package: kvdefinekeys 2011/04/07 v1.3 Define keys (HO) +Package hobsub Info: Skipping package `luatex-loader' (already loaded). +Package: pdftexcmds 2011/11/29 v0.20 Utility functions of pdfTeX for LuaTeX (HO) + +Package pdftexcmds Info: \pdf@primitive is available. +Package pdftexcmds Info: \pdf@ifprimitive is available. +Package pdftexcmds Info: \pdfdraftmode found. + +(/usr/local/texlive/2015/texmf-dist/scripts/oberdiek/pdftexcmds.lua) +\pdftexcmds@toks=\toks26 +Package: pdfescape 2011/11/25 v1.13 Implements pdfTeX's escape features (HO) +Package: bigintcalc 2012/04/08 v1.3 Expandable calculations on big integers (HO) + +Package: bitset 2011/01/30 v1.1 Handle bit-vector datatype (HO) +Package: uniquecounter 2011/01/30 v1.2 Provide unlimited unique counter (HO) +) +Package hobsub Info: Skipping package `hobsub' (already loaded). +Package: letltxmacro 2010/09/02 v1.4 Let assignment for LaTeX macros (HO) +Package: hopatch 2012/05/28 v1.2 Wrapper for package hooks (HO) +Package: xcolor-patch 2011/01/30 xcolor patch +Package: atveryend 2011/06/30 v1.8 Hooks at the very end of document (HO) +Package atveryend Info: \AP@enddocument detected (standard20110627). +Package: atbegshi 2011/10/05 v1.16 At begin shipout hook (HO) +Package: refcount 2011/10/16 v3.4 Data extraction from label references (HO) +Package: hycolor 2011/01/30 v1.7 Color options for hyperref/bookmark (HO) +) +(/usr/local/texlive/2015/texmf-dist/tex/latex/oberdiek/auxhook.sty +Package: auxhook 2011/03/04 v1.3 Hooks for auxiliary files (HO) +) +(/usr/local/texlive/2015/texmf-dist/tex/latex/oberdiek/kvoptions.sty +Package: kvoptions 2011/06/30 v3.11 Key value format for package options (HO) +) +\@linkdim=\dimen262 +\Hy@linkcounter=\count290 +\Hy@pagecounter=\count291 + +(/usr/local/texlive/2015/texmf-dist/tex/latex/hyperref/pd1enc.def +File: pd1enc.def 2012/11/06 v6.83m Hyperref: PDFDocEncoding definition (HO) +) +\Hy@SavedSpaceFactor=\count292 + +(/usr/local/texlive/2015/texmf-dist/tex/latex/latexconfig/hyperref.cfg +File: hyperref.cfg 2002/06/06 v1.2 hyperref configuration of TeXLive +) +Package hyperref Info: Hyper figures OFF on input line 4443. +Package hyperref Info: Link nesting OFF on input line 4448. +Package hyperref Info: Hyper index ON on input line 4451. +Package hyperref Info: Plain pages OFF on input line 4458. +Package hyperref Info: Backreferencing OFF on input line 4463. +Package hyperref Info: Implicit mode ON; LaTeX internals redefined. +Package hyperref Info: Bookmarks ON on input line 4688. +\c@Hy@tempcnt=\count293 + +(/usr/local/texlive/2015/texmf-dist/tex/latex/url/url.sty +\Urlmuskip=\muskip16 +Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc. +) +LaTeX Info: Redefining \url on input line 5041. +\XeTeXLinkMargin=\dimen263 +\Fld@menulength=\count294 +\Field@Width=\dimen264 +\Fld@charsize=\dimen265 +Package hyperref Info: Hyper figures OFF on input line 6295. +Package hyperref Info: Link nesting OFF on input line 6300. +Package hyperref Info: Hyper index ON on input line 6303. +Package hyperref Info: backreferencing OFF on input line 6310. +Package hyperref Info: Link coloring OFF on input line 6315. +Package hyperref Info: Link coloring with OCG OFF on input line 6320. +Package hyperref Info: PDF/A mode OFF on input line 6325. +LaTeX Info: Redefining \ref on input line 6365. +LaTeX Info: Redefining \pageref on input line 6369. +\Hy@abspage=\count295 +\c@Item=\count296 +\c@Hfootnote=\count297 +) +(/usr/local/texlive/2015/texmf-dist/tex/latex/memoir/memhfixc.sty +Package: memhfixc 2013/05/30 v1.17 nameref/hyperref package fixes for memoir cla +ss +\c@memhycontfloat=\count298 +\c@Hpagenote=\count299 +) + +Package hyperref Message: Driver (autodetected): hpdftex. + +(/usr/local/texlive/2015/texmf-dist/tex/latex/hyperref/hpdftex.def +File: hpdftex.def 2012/11/06 v6.83m Hyperref driver for pdfTeX +\Fld@listcount=\count300 +\c@bookmark@seq@number=\count301 + +(/usr/local/texlive/2015/texmf-dist/tex/latex/oberdiek/rerunfilecheck.sty +Package: rerunfilecheck 2011/04/15 v1.7 Rerun checks for auxiliary files (HO) +Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 28 +2. +) +\Hy@SectionHShift=\skip266 +) +(/usr/local/texlive/2015/texmf-dist/tex/latex/xcolor/xcolor.sty +Package: xcolor 2007/01/21 v2.11 LaTeX color extensions (UK) + +(/usr/local/texlive/2015/texmf-dist/tex/latex/latexconfig/color.cfg +File: color.cfg 2007/01/18 v1.5 color configuration of teTeX/TeXLive +) +Package xcolor Info: Driver file: pdftex.def on input line 225. +Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1337. +Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1341. +Package xcolor Info: Model `RGB' extended on input line 1353. +Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1355. +Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1356. +Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1357. +Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1358. +Package xcolor Info: Model `Gray' substituted by `gray' on input line 1359. +Package xcolor Info: Model `wave' substituted by `hsb' on input line 1360. +) +(/usr/local/texlive/2015/texmf-dist/tex/latex/ltablex/ltablex.sty +Package: ltablex 2014/08/13 v1.1 Modified tabularx + +(/usr/local/texlive/2015/texmf-dist/tex/latex/tools/longtable.sty +Package: longtable 2014/10/28 v4.11 Multi-page Table package (DPC) +\LTleft=\skip267 +\LTright=\skip268 +\LTpre=\skip269 +\LTpost=\skip270 +\LTchunksize=\count302 +\LTcapwidth=\dimen266 +\LT@head=\box258 +\LT@firsthead=\box259 +\LT@foot=\box260 +\LT@lastfoot=\box261 +\LT@cols=\count303 +\LT@rows=\count304 +\c@LT@tables=\count305 +\c@LT@chunks=\count306 +\LT@p@ftn=\toks27 +)) +Package hyperref Info: Option `unicode' set `true' on input line 89. + +(/usr/local/texlive/2015/texmf-dist/tex/latex/hyperref/puenc.def +File: puenc.def 2012/11/06 v6.83m Hyperref: PDF Unicode definition (HO) +) +(./themanpage.aux) +\openout1 = themanpage.aux + +LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 93. +LaTeX Font Info: ... okay on input line 93. +LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 93. +LaTeX Font Info: ... okay on input line 93. +LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 93. +LaTeX Font Info: ... okay on input line 93. +LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 93. +LaTeX Font Info: ... okay on input line 93. +LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 93. +LaTeX Font Info: ... okay on input line 93. +LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 93. +LaTeX Font Info: ... okay on input line 93. +LaTeX Font Info: Checking defaults for EU2/lmr/m/n on input line 93. +LaTeX Font Info: ... okay on input line 93. +LaTeX Font Info: Checking defaults for T3/cmr/m/n on input line 93. +LaTeX Font Info: Try loading font information for T3+cmr on input line 93. + (/usr/local/texlive/2015/texmf-dist/tex/latex/tipa/t3cmr.fd +File: t3cmr.fd 2001/12/31 TIPA font definitions +) +LaTeX Font Info: ... okay on input line 93. +LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 93. +LaTeX Font Info: ... okay on input line 93. +LaTeX Font Info: Checking defaults for PU/pdf/m/n on input line 93. +LaTeX Font Info: ... okay on input line 93. + +(/usr/local/texlive/2015/texmf-dist/tex/context/base/supp-pdf.mkii +[Loading MPS to PDF converter (version 2006.09.02).] +\scratchcounter=\count307 +\scratchdimen=\dimen267 +\scratchbox=\box262 +\nofMPsegments=\count308 +\nofMParguments=\count309 +\everyMPshowfont=\toks28 +\MPscratchCnt=\count310 +\MPscratchDim=\dimen268 +\MPnumerator=\count311 +\makeMPintoPDFobject=\count312 +\everyMPtoPDFconversion=\toks29 +) (/usr/local/texlive/2015/texmf-dist/tex/latex/oberdiek/epstopdf-base.sty +Package: epstopdf-base 2010/02/09 v2.5 Base part for package epstopdf + +(/usr/local/texlive/2015/texmf-dist/tex/latex/oberdiek/grfext.sty +Package: grfext 2010/08/19 v1.1 Manage graphics extensions (HO) +) +Package grfext Info: Graphics extension search list: +(grfext) [.png,.pdf,.jpg,.mps,.tif,.jpeg,.PNG,.PDF,.JPG,.JPEG,.eps] +(grfext) \AppendGraphicsExtensions on input line 452. + +(/usr/local/texlive/2015/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg +File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Live + +)) +................................................. +. fontspec info: "setup-math" +. +. Adjusting the maths setup (use [no-math] to avoid this). +................................................. +\symlegacymaths=\mathgroup4 +LaTeX Font Info: Overwriting symbol font `legacymaths' in version `bold' +(Font) OT1/cmr/m/n --> OT1/cmr/bx/n on input line 93. +LaTeX Font Info: Redeclaring math accent \acute on input line 93. +LaTeX Font Info: Redeclaring math accent \grave on input line 93. +LaTeX Font Info: Redeclaring math accent \ddot on input line 93. +LaTeX Font Info: Redeclaring math accent \tilde on input line 93. +LaTeX Font Info: Redeclaring math accent \bar on input line 93. +LaTeX Font Info: Redeclaring math accent \breve on input line 93. +LaTeX Font Info: Redeclaring math accent \check on input line 93. +LaTeX Font Info: Redeclaring math accent \hat on input line 93. +LaTeX Font Info: Redeclaring math accent \dot on input line 93. +LaTeX Font Info: Redeclaring math accent \mathring on input line 93. +LaTeX Font Info: Redeclaring math symbol \colon on input line 93. +LaTeX Font Info: Redeclaring math symbol \Gamma on input line 93. +LaTeX Font Info: Redeclaring math symbol \Delta on input line 93. +LaTeX Font Info: Redeclaring math symbol \Theta on input line 93. +LaTeX Font Info: Redeclaring math symbol \Lambda on input line 93. +LaTeX Font Info: Redeclaring math symbol \Xi on input line 93. +LaTeX Font Info: Redeclaring math symbol \Pi on input line 93. +LaTeX Font Info: Redeclaring math symbol \Sigma on input line 93. +LaTeX Font Info: Redeclaring math symbol \Upsilon on input line 93. +LaTeX Font Info: Redeclaring math symbol \Phi on input line 93. +LaTeX Font Info: Redeclaring math symbol \Psi on input line 93. +LaTeX Font Info: Redeclaring math symbol \Omega on input line 93. +LaTeX Font Info: Redeclaring math symbol \mathdollar on input line 93. +LaTeX Font Info: Redeclaring symbol font `operators' on input line 93. +LaTeX Font Info: Encoding `OT1' has changed to `EU2' for symbol font +(Font) `operators' in the math version `normal' on input line 93. +LaTeX Font Info: Overwriting symbol font `operators' in version `normal' +(Font) OT1/cmr/m/n --> EU2/MyriadPro(0)/m/n on input line 93. +LaTeX Font Info: Encoding `OT1' has changed to `EU2' for symbol font +(Font) `operators' in the math version `bold' on input line 93. +LaTeX Font Info: Overwriting symbol font `operators' in version `bold' +(Font) OT1/cmr/bx/n --> EU2/MyriadPro(0)/m/n on input line 93. +LaTeX Font Info: Overwriting symbol font `operators' in version `normal' +(Font) EU2/MyriadPro(0)/m/n --> EU2/MyriadPro(0)/m/n on input l +ine 93. +LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal' +(Font) OT1/cmr/m/it --> EU2/MyriadPro(0)/m/it on input line 93. + +LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal' +(Font) OT1/cmr/bx/n --> EU2/MyriadPro(0)/bx/n on input line 93. + +LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal' +(Font) OT1/cmss/m/n --> EU2/lmss/m/n on input line 93. +LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal' +(Font) OT1/cmtt/m/n --> EU2/lmtt/m/n on input line 93. +LaTeX Font Info: Overwriting symbol font `operators' in version `bold' +(Font) EU2/MyriadPro(0)/m/n --> EU2/MyriadPro(0)/bx/n on input +line 93. +LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold' +(Font) OT1/cmr/bx/it --> EU2/MyriadPro(0)/bx/it on input line 9 +3. +LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold' +(Font) OT1/cmss/bx/n --> EU2/lmss/bx/n on input line 93. +LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold' +(Font) OT1/cmtt/m/n --> EU2/lmtt/bx/n on input line 93. +\AtBeginShipoutBox=\box263 +Package hyperref Info: Link coloring OFF on input line 93. + +(/usr/local/texlive/2015/texmf-dist/tex/latex/hyperref/nameref.sty +Package: nameref 2012/10/27 v2.43 Cross-referencing by name of section + +(/usr/local/texlive/2015/texmf-dist/tex/generic/oberdiek/gettitlestring.sty +Package: gettitlestring 2010/12/03 v1.4 Cleanup title references (HO) +) +\c@section@level=\count313 +) +Redoing nameref's sectioning +Redoing nameref's label +LaTeX Info: Redefining \nameref on input line 93. +LaTeX Info: Redefining \ref on input line 93. +LaTeX Info: Redefining \pageref on input line 93. +LaTeX Info: Redefining \nameref on input line 93. +(./themanpage.out) (./themanpage.out) +\@outlinefile=\write4 + +\openout4 = themanpage.out +luaotfload | load : Lookup/name: "MyriadPro" -> "MyriadPro-Regular.otf" +luaotfload | load : Lookup/name: "MyriadPro" -> "MyriadPro-Bold.otf" +luaotfload | load : Lookup/name: "MyriadPro" -> "MyriadPro-Regular.otf" +luaotfload | load : Lookup/name: "MyriadPro" -> "MyriadPro-It.otf" +luaotfload | load : Lookup/name: "MyriadPro" -> "MyriadPro-Regular.otf" +luaotfload | load : Lookup/name: "MyriadPro" -> "MyriadPro-Regular.otf" +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <10.95> on input line 95. +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <8> on input line 95. +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <6> on input line 95. + [1 + +{/usr/local/texlive/2015/texmf-var/fonts/map/pdftex/updmap/pdftex.map}] [2 + +] +luaotfload | load : Lookup/name: "MyriadPro" -> "MyriadPro-Regular.otf" +luaotfload | load : Lookup/name: "MyriadPro" -> "MyriadPro-Bold.otf" (./themanp +age.toc +luaotfload | load : Lookup/name: "MyriadPro" -> "MyriadPro-Bold.otf" +luaotfload | load : Lookup/name: "MyriadPro" -> "MyriadPro-Regular.otf" +luaotfload | load : Lookup/name: "MyriadPro" -> "MyriadPro-Regular.otf" +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <7> on input line 1. +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <5> on input line 1. +) [3] [4 + + +] +luaotfload | load : Lookup/name: "MyriadPro" -> "MyriadPro-Regular.otf" +luaotfload | load : Lookup/name: "MyriadPro" -> "MyriadPro-Bold.otf" [5] +luaotfload | load : Lookup/name: "MyriadPro" -> "MyriadPro-Regular.otf" +luaotfload | load : Lookup/name: "MyriadPro" -> "MyriadPro-Bold.otf" +(./man_dsh.tex) (./man_msh.tex) +LaTeX Font Info: Font shape `EU2/MyriadPro(0)/m/sl' in size <10> not availabl +e +(Font) Font shape `EU2/MyriadPro(0)/m/it' tried instead on input li +ne 114. +luaotfload | load : Lookup/name: "MyriadPro" -> "MyriadPro-It.otf" +luaotfload | load : Lookup/name: "MyriadPro" -> "MyriadPro-It.otf" [6] [7 + + +] [8 + +] +\tf@toc=\write5 + +\openout5 = themanpage.toc +Package atveryend Info: Empty hook `BeforeClearDocument' on input line 119. +Package atveryend Info: Empty hook `AfterLastShipout' on input line 119. + (./themanpage.aux) +Package atveryend Info: Executing hook `AtVeryEndDocument' on input line 119. +Package atveryend Info: Executing hook `AtEndAfterFileList' on input line 119. +Package rerunfilecheck Info: File `themanpage.out' has not changed. +(rerunfilecheck) Checksum: E385F5B8B366734E5E13E8DCA34FE52B;362. +Package atveryend Info: Empty hook `AtVeryVeryEnd' on input line 119. +) + +Here is how much of LuaTeX's memory you used: + 25351 strings out of 494693 + 100000,552014 words of node,token memory allocated + 698 words of node memory still in use: + 3 hlist, 1 vlist, 1 rule, 2 glue, 1 kern, 5 attribute, 139 glue_spec, 5 attri +bute_list, 2 write nodes + avail lists: 2:2370,3:64,4:553,5:160,6:911,7:61,8:6,9:142,10:73 + 28524 multiletter control sequences out of 65536+600000 + 60 fonts using 5041039 bytes + 55i,11n,59p,1190b,357s stack positions out of 5000i,500n,10000p,200000b,100000s + +Output written on themanpage.pdf (8 pages, 15199 bytes). + +PDF statistics: 86 PDF objects out of 1000 (max. 8388607) + 66 compressed objects within 1 object stream + 15 named destinations out of 1000 (max. 131072) + 33 words of extra memory for PDF output out of 10000 (max. 10000000) + diff --git a/work_files/themanpage/themanpage.out b/work_files/themanpage/themanpage.out new file mode 100644 index 000000000..4b1d870a9 --- /dev/null +++ b/work_files/themanpage/themanpage.out @@ -0,0 +1,4 @@ +\BOOKMARK [0][-]{chapter.1}{\376\377\000M\000a\000i\000n\000\040\000A\000p\000p\000l\000i\000c\000a\000t\000i\000o\000n\000s}{}% 1 +\BOOKMARK [1][-]{section.1.1}{\376\377\000D\000S\000H}{chapter.1}% 2 +\BOOKMARK [1][-]{section.1.2}{\376\377\000M\000S\000H}{chapter.1}% 3 +\BOOKMARK [0][-]{chapter.2}{\376\377\000R\000e\000f\000e\000r\000e\000n\000c\000e\000s}{}% 4 diff --git a/work_files/themanpage/themanpage.pdf b/work_files/themanpage/themanpage.pdf new file mode 100644 index 000000000..73b2dc04a Binary files /dev/null and b/work_files/themanpage/themanpage.pdf differ diff --git a/work_files/themanpage/themanpage.synctex.gz b/work_files/themanpage/themanpage.synctex.gz new file mode 100644 index 000000000..ba38010ab Binary files /dev/null and b/work_files/themanpage/themanpage.synctex.gz differ diff --git a/work_files/themanpage/themanpage.tex b/work_files/themanpage/themanpage.tex new file mode 100644 index 000000000..ab58fe38a --- /dev/null +++ b/work_files/themanpage/themanpage.tex @@ -0,0 +1,119 @@ +% !TEX TS-program = lualatex + +\documentclass[10pt, stock]{memoir} + + +\usepackage{fontspec} +\setmainfont{MyriadPro} + +\usepackage{fapapersize} +\usefapapersize{148mm,210mm,15mm,15mm,20mm,15mm} +\usepackage{afterpage} +\usepackage{hyperref} +\usepackage{graphicx} +\usepackage{xcolor} + +\usepackage{ltablex} +\usepackage{parskip} + +\frenchspacing +\setlength{\parindent}{0pt} +\setlength{\parskip}{10pt} +\setsecnumdepth{subsection} + + +%% Idioms %% +\hyphenation{Com-put-er-Craft} +\hyphenation{O-pen-Com-put-ers} +\hyphenation{ROM-BASIC} + + + +\definecolor{black}{HTML}{000000} +\definecolor{white}{HTML}{FFFFFF} +\definecolor{dimgrey}{HTML}{555555} +\definecolor{brightgrey}{HTML}{AAAAAA} + +\definecolor{yellow}{HTML}{FFFF00} +\definecolor{orange}{HTML}{FF6600} +\definecolor{red}{HTML}{DD0000} +\definecolor{magenta}{HTML}{FF0099} + +\definecolor{purple}{HTML}{330099} +\definecolor{blue}{HTML}{0000CC} +\definecolor{cyan}{HTML}{0099FF} +\definecolor{lime}{HTML}{55FF00} + +\definecolor{green}{HTML}{00AA00} +\definecolor{darkgreen}{HTML}{006600} +\definecolor{brown}{HTML}{663300} +\definecolor{tan}{HTML}{996633} + + + +\newcommand{\unemph}[1]{\textcolor{brightgrey}{#1}} + + +% Title styling +\pretitle{\begin{flushright}\HUGE} +\posttitle{\par\end{flushright}\vskip 0.5em} + +% new sections are new page +\let\oldsection\chapter +\renewcommand\chapter{\clearpage\oldsection} + +% chapter title -- no now page after +%\renewcommand\chapterheadstart{} % kill the drop +\renewcommand\afterchapternum{\vskip 0.5em} % space between number and title +\makeatletter +\renewcommand\memendofchapterhook{% +\newpage\m@mindentafterchapter\@afterheading} +\makeatother + + +\renewcommand{\thefootnote}{\fnsymbol{footnote}} + + +\aliaspagestyle{part}{empty} +\aliaspagestyle{chapter}{empty} + + +% The title +\title{\textbf{THE MANPAGE} \\ \vspace{7mm} \large For the Game \emph{Terrarum}\quad ยท\quad First Edition} +\date{} +\author{} +\hypersetup{ + pdfauthor={Terrarum Developers}, + pdftitle={THE MANPAGE}, + unicode=true +} + + + +\begin{document} +\begin{titlingpage} +\maketitle{} +\end{titlingpage} + +\setcounter{page}{3} + +\tableofcontents* + + + +\chapter{Main Applications} + +\section{DSH} +\input{man_dsh} + +\section{MSH} +\input{man_msh} + + + +\chapter{References} + + +\afterpage{\pagestyle{empty}\null\newpage} + +\end{document} \ No newline at end of file diff --git a/work_files/themanpage/themanpage.toc b/work_files/themanpage/themanpage.toc new file mode 100644 index 000000000..f24b0a120 --- /dev/null +++ b/work_files/themanpage/themanpage.toc @@ -0,0 +1,4 @@ +\contentsline {chapter}{\chapternumberline {1}Main Applications}{5}{chapter.1} +\contentsline {section}{\numberline {1.1}DSH}{6}{section.1.1} +\contentsline {section}{\numberline {1.2}MSH}{6}{section.1.2} +\contentsline {chapter}{\chapternumberline {2}References}{7}{chapter.2}