├── main.out ├── main.pdf ├── main.toc ├── main.aux ├── body.aux ├── main.tex ├── body.tex └── main.log /main.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyme5/tex-template-sanskrit/master/main.pdf -------------------------------------------------------------------------------- /main.toc: -------------------------------------------------------------------------------- 1 | \select@language {sanskrit} 2 | \contentsline {chapter}{\numberline {1}अथ प्रथमो डध्यायः}{3}{chapter.1}% 3 | -------------------------------------------------------------------------------- /main.aux: -------------------------------------------------------------------------------- 1 | \relax 2 | \providecommand\hyper@newdestlabel[2]{} 3 | \providecommand\HyperFirstAtBeginDocument{\AtBeginDocument} 4 | \HyperFirstAtBeginDocument{\ifx\hyper@anchor\@undefined 5 | \global\let\oldcontentsline\contentsline 6 | \gdef\contentsline#1#2#3#4{\oldcontentsline{#1}{#2}{#3}} 7 | \global\let\oldnewlabel\newlabel 8 | \gdef\newlabel#1#2{\newlabelxx{#1}#2} 9 | \gdef\newlabelxx#1#2#3#4#5#6{\oldnewlabel{#1}{{#2}{#3}}} 10 | \AtEndDocument{\ifx\hyper@anchor\@undefined 11 | \let\contentsline\oldcontentsline 12 | \let\newlabel\oldnewlabel 13 | \fi} 14 | \fi} 15 | \global\let\hyper@last\relax 16 | \gdef\HyperFirstAtBeginDocument#1{#1} 17 | \providecommand*\HyPL@Entry[1]{} 18 | \AC@reset@newl@bel 19 | \HyPL@Entry{0<>} 20 | \select@language {sanskrit} 21 | \@writefile{toc}{\select@language {sanskrit}} 22 | \@writefile{lof}{\select@language {sanskrit}} 23 | \@writefile{lot}{\select@language {sanskrit}} 24 | \@input{body.aux} 25 | -------------------------------------------------------------------------------- /body.aux: -------------------------------------------------------------------------------- 1 | \relax 2 | \providecommand\hyper@newdestlabel[2]{} 3 | \@writefile{toc}{\contentsline {chapter}{\numberline {1}अथ प्रथमो डध्यायः}{3}{chapter.1}\protected@file@percent } 4 | \@writefile{lof}{\addvspace {10\p@ }} 5 | \@writefile{lot}{\addvspace {10\p@ }} 6 | \@setckpt{body}{ 7 | \setcounter{page}{4} 8 | \setcounter{equation}{0} 9 | \setcounter{enumi}{0} 10 | \setcounter{enumii}{0} 11 | \setcounter{enumiii}{0} 12 | \setcounter{enumiv}{0} 13 | \setcounter{footnote}{0} 14 | \setcounter{mpfootnote}{0} 15 | \setcounter{part}{0} 16 | \setcounter{chapter}{1} 17 | \setcounter{section}{0} 18 | \setcounter{subsection}{0} 19 | \setcounter{subsubsection}{0} 20 | \setcounter{paragraph}{0} 21 | \setcounter{subparagraph}{0} 22 | \setcounter{figure}{0} 23 | \setcounter{table}{0} 24 | \setcounter{Item}{0} 25 | \setcounter{Hfootnote}{0} 26 | \setcounter{Hy@AnnotLevel}{0} 27 | \setcounter{bookmark@seq@number}{0} 28 | \setcounter{parentequation}{0} 29 | \setcounter{su@anzahl}{0} 30 | \setcounter{LT@tables}{0} 31 | \setcounter{LT@chunks}{0} 32 | \setcounter{section@level}{0} 33 | } 34 | -------------------------------------------------------------------------------- /main.tex: -------------------------------------------------------------------------------- 1 | % @Author: Sky 2 | % @Date: 2018-09-06 22:14:11 3 | % @Last Modified by: Sky 4 | % @Last Modified time: 2019-01-25 22:45:08 5 | % arara: xelatex 6 | 7 | \documentclass{book} 8 | \usepackage{fontspec} 9 | \usepackage{polyglossia} 10 | 11 | \usepackage{imakeidx} 12 | \usepackage[colorlinks=true, linkcolor=blue, urlcolor=black, bookmarksopen=true, backref=true]{hyperref} 13 | \hypersetup{ 14 | hidelinks, 15 | unicode, 16 | % linktocpage, 17 | } 18 | \usepackage[nomain, toc]{glossaries} 19 | \usepackage{bookmark} 20 | \usepackage{acronym} 21 | \usepackage{graphicx} 22 | \usepackage[T1]{fontenc} 23 | % \usepackage[left=.7in, top=1in, right=.7in, bottom=1in]{geometry} 24 | 25 | \usepackage{multicol} 26 | \setlength{\columnsep}{1cm} 27 | 28 | % SANSKRIT: Raghindi, Saraswati 5, Saraswati5 29 | % GUJARATI: Vijaya, Saraswati 5, Saraswati5, Rekha, RaghuGujarati, Lohit Gujarati, Kalapi, Gurjari 30 | % HINDI: Saraswati 5, Saraswati5, Ketan 31 | % \setmainfont{Ketan} 32 | % \defaultfontfeatures{Ligatures=TeX} 33 | \setmainfont{Nakula} 34 | 35 | \setdefaultlanguage{sanskrit} 36 | \setotherlanguage{english} 37 | 38 | 39 | \begin{document} 40 | \tableofcontents 41 | 42 | \include{body} 43 | 44 | \end{document} 45 | -------------------------------------------------------------------------------- /body.tex: -------------------------------------------------------------------------------- 1 | \chapter{अथ प्रथमो डध्यायः} 2 | 3 | \begin{center} 4 | अथः प्रथमः अध्यायः | now the first chapter 5 | \end{center} 6 | 7 | \begin{verse} 8 | धृतराष्ट्र उवाच 9 | 10 | धर्मक्षेत्रे कुरुक्षेत्रे समवेता युयुत्सवः | 11 | मामकाः पाण्डवाश्र्चैव किमकुर्वत सज्जय |१| 12 | \end{verse} 13 | "Dhrtarastra said: O Sanjaya, after my sons and the sons of Pandu assembled in the place of pilgrimage at Kuruksetra, desiring to fight, what did they do?" 14 | 15 | \begin{center} 16 | 17 | सर्वधर्मान् परित्यज्य मामेकं शरणं व्र्ज\\ 18 | अहं त्वां सर्वपापेभ्यो मोक्षयिष्यामि मा शुचः 19 | 20 | \end{center} 21 | 22 | नई दिल्ली, भारत की राजधानी है। कुल ४२.७ वर्ग किमी क्षेत्रफल के साथ, नई दिल्ली दिल्ली महानगर 23 | के भीतर आता है और यहाँ पर भारत सरकार और दिल्ली सरकार के सभी प्रशासनिक भवन स्थित हैं। 24 | 25 | नई दिल्ली, भारत की राजधानी है। कुल ४२.७ वर्ग किमी क्षेत्रफल के साथ, नई दिल्ली दिल्ली महानगर 26 | के भीतर आता है और यहाँ पर भारत सरकार और दिल्ली सरकार के सभी प्रशासनिक भवन स्थित हैं। 27 | 28 | \chapter{श्लोकः} 29 | 30 | कराग्रे वसते लक्ष्मीः, कर मध्ये सरस्वती | 31 | करमूले तू गोविन्दः, प्रभाते कर दर्शनम् || 32 | 33 | समुद्रवसने ! देवि ! पर्वत-स्तन-मण्डले | 34 | विष्णु-पत्नि ! नमस्तुभ्यम्, पाद-स्पर्षँ क्शमस्वमे | 35 | 36 | 37 | कराग्रे वसते लक्ष्मीः कर मूले सरस्वती -------------------------------------------------------------------------------- /main.log: -------------------------------------------------------------------------------- 1 | This is XeTeX, Version 3.14159265-2.6-0.999991 (MiKTeX 2.9.6930 64-bit) (preloaded format=xelatex 2019.1.22) 26 JAN 2019 00:40 2 | entering extended mode 3 | **./main.tex 4 | (main.tex 5 | LaTeX2e <2018-12-01> 6 | ("D:\LaTeX\MiKTeX 2.9\tex/latex/base\book.cls" 7 | Document Class: book 2018/09/03 v1.4i Standard LaTeX document class 8 | ("D:\LaTeX\MiKTeX 2.9\tex/latex/base\bk10.clo" 9 | File: bk10.clo 2018/09/03 v1.4i Standard LaTeX file (size option) 10 | ) 11 | \c@part=\count80 12 | \c@chapter=\count81 13 | \c@section=\count82 14 | \c@subsection=\count83 15 | \c@subsubsection=\count84 16 | \c@paragraph=\count85 17 | \c@subparagraph=\count86 18 | \c@figure=\count87 19 | \c@table=\count88 20 | \abovecaptionskip=\skip41 21 | \belowcaptionskip=\skip42 22 | \bibindent=\dimen102 23 | ) 24 | ("D:\LaTeX\MiKTeX 2.9\tex/latex/fontspec\fontspec.sty" 25 | (C:\Users\Sky\AppData\Roaming\MiKTeX\2.9\tex/latex/l3packages/xparse\xparse.sty 26 | (C:\Users\Sky\AppData\Roaming\MiKTeX\2.9\tex/latex/l3kernel\expl3.sty 27 | Package: expl3 2019-01-01 L3 programming layer (loader) 28 | 29 | (C:\Users\Sky\AppData\Roaming\MiKTeX\2.9\tex/latex/l3kernel\expl3-code.tex 30 | Package: expl3 2019-01-01 L3 programming layer (code) 31 | \c_max_int=\count89 32 | \l_tmpa_int=\count90 33 | \l_tmpb_int=\count91 34 | \g_tmpa_int=\count92 35 | \g_tmpb_int=\count93 36 | \g__kernel_prg_map_int=\count94 37 | \c_log_iow=\count95 38 | \l_iow_line_count_int=\count96 39 | \l__iow_line_target_int=\count97 40 | \l__iow_one_indent_int=\count98 41 | \l__iow_indent_int=\count99 42 | \c_zero_dim=\dimen103 43 | \c_max_dim=\dimen104 44 | \l_tmpa_dim=\dimen105 45 | \l_tmpb_dim=\dimen106 46 | \g_tmpa_dim=\dimen107 47 | \g_tmpb_dim=\dimen108 48 | \c_zero_skip=\skip43 49 | \c_max_skip=\skip44 50 | \l_tmpa_skip=\skip45 51 | \l_tmpb_skip=\skip46 52 | \g_tmpa_skip=\skip47 53 | \g_tmpb_skip=\skip48 54 | \c_zero_muskip=\muskip10 55 | \c_max_muskip=\muskip11 56 | \l_tmpa_muskip=\muskip12 57 | \l_tmpb_muskip=\muskip13 58 | \g_tmpa_muskip=\muskip14 59 | \g_tmpb_muskip=\muskip15 60 | \l_keys_choice_int=\count100 61 | \l__intarray_loop_int=\count101 62 | \c__intarray_sp_dim=\dimen109 63 | \g__intarray_font_int=\count102 64 | \c__fp_leading_shift_int=\count103 65 | \c__fp_middle_shift_int=\count104 66 | \c__fp_trailing_shift_int=\count105 67 | \c__fp_big_leading_shift_int=\count106 68 | \c__fp_big_middle_shift_int=\count107 69 | \c__fp_big_trailing_shift_int=\count108 70 | \c__fp_Bigg_leading_shift_int=\count109 71 | \c__fp_Bigg_middle_shift_int=\count110 72 | \c__fp_Bigg_trailing_shift_int=\count111 73 | \g__fp_array_int=\count112 74 | \l__fp_array_loop_int=\count113 75 | \l__sort_length_int=\count114 76 | \l__sort_min_int=\count115 77 | \l__sort_top_int=\count116 78 | \l__sort_max_int=\count117 79 | \l__sort_true_max_int=\count118 80 | \l__sort_block_int=\count119 81 | \l__sort_begin_int=\count120 82 | \l__sort_end_int=\count121 83 | \l__sort_A_int=\count122 84 | \l__sort_B_int=\count123 85 | \l__sort_C_int=\count124 86 | \l__tl_analysis_normal_int=\count125 87 | \l__tl_analysis_index_int=\count126 88 | \l__tl_analysis_nesting_int=\count127 89 | \l__tl_analysis_type_int=\count128 90 | \l__regex_internal_a_int=\count129 91 | \l__regex_internal_b_int=\count130 92 | \l__regex_internal_c_int=\count131 93 | \l__regex_balance_int=\count132 94 | \l__regex_group_level_int=\count133 95 | \l__regex_mode_int=\count134 96 | \c__regex_cs_in_class_mode_int=\count135 97 | \c__regex_cs_mode_int=\count136 98 | \l__regex_catcodes_int=\count137 99 | \l__regex_default_catcodes_int=\count138 100 | \c__regex_catcode_L_int=\count139 101 | \c__regex_catcode_O_int=\count140 102 | \c__regex_catcode_A_int=\count141 103 | \c__regex_all_catcodes_int=\count142 104 | \l__regex_show_lines_int=\count143 105 | \l__regex_min_state_int=\count144 106 | \l__regex_max_state_int=\count145 107 | \l__regex_left_state_int=\count146 108 | \l__regex_right_state_int=\count147 109 | \l__regex_capturing_group_int=\count148 110 | \l__regex_min_pos_int=\count149 111 | \l__regex_max_pos_int=\count150 112 | \l__regex_curr_pos_int=\count151 113 | \l__regex_start_pos_int=\count152 114 | \l__regex_success_pos_int=\count153 115 | \l__regex_curr_char_int=\count154 116 | \l__regex_curr_catcode_int=\count155 117 | \l__regex_last_char_int=\count156 118 | \l__regex_case_changed_char_int=\count157 119 | \l__regex_curr_state_int=\count158 120 | \l__regex_step_int=\count159 121 | \l__regex_min_active_int=\count160 122 | \l__regex_max_active_int=\count161 123 | \l__regex_replacement_csnames_int=\count162 124 | \l__regex_match_count_int=\count163 125 | \l__regex_min_submatch_int=\count164 126 | \l__regex_submatch_int=\count165 127 | \l__regex_zeroth_submatch_int=\count166 128 | \g__regex_trace_regex_int=\count167 129 | \c_empty_box=\box27 130 | \l_tmpa_box=\box28 131 | \l_tmpb_box=\box29 132 | \g_tmpa_box=\box30 133 | \g_tmpb_box=\box31 134 | \l__box_top_dim=\dimen110 135 | \l__box_bottom_dim=\dimen111 136 | \l__box_left_dim=\dimen112 137 | \l__box_right_dim=\dimen113 138 | \l__box_top_new_dim=\dimen114 139 | \l__box_bottom_new_dim=\dimen115 140 | \l__box_left_new_dim=\dimen116 141 | \l__box_right_new_dim=\dimen117 142 | \l__box_internal_box=\box32 143 | \l__coffin_internal_box=\box33 144 | \l__coffin_internal_dim=\dimen118 145 | \l__coffin_offset_x_dim=\dimen119 146 | \l__coffin_offset_y_dim=\dimen120 147 | \l__coffin_x_dim=\dimen121 148 | \l__coffin_y_dim=\dimen122 149 | \l__coffin_x_prime_dim=\dimen123 150 | \l__coffin_y_prime_dim=\dimen124 151 | \c_empty_coffin=\box34 152 | \l__coffin_aligned_coffin=\box35 153 | \l__coffin_aligned_internal_coffin=\box36 154 | \l_tmpa_coffin=\box37 155 | \l_tmpb_coffin=\box38 156 | \l__coffin_display_coffin=\box39 157 | \l__coffin_display_coord_coffin=\box40 158 | \l__coffin_display_pole_coffin=\box41 159 | \l__coffin_display_offset_dim=\dimen125 160 | \l__coffin_display_x_dim=\dimen126 161 | \l__coffin_display_y_dim=\dimen127 162 | \g__file_internal_ior=\read1 163 | \l__coffin_bounding_shift_dim=\dimen128 164 | \l__coffin_left_corner_dim=\dimen129 165 | \l__coffin_right_corner_dim=\dimen130 166 | \l__coffin_bottom_corner_dim=\dimen131 167 | \l__coffin_top_corner_dim=\dimen132 168 | \l__coffin_scaled_total_height_dim=\dimen133 169 | \l__coffin_scaled_width_dim=\dimen134 170 | \l__seq_internal_a_int=\count168 171 | \l__seq_internal_b_int=\count169 172 | ) 173 | (C:\Users\Sky\AppData\Roaming\MiKTeX\2.9\tex/latex/l3kernel\l3xdvipdfmx.def 174 | File: l3xdvidpfmx.def 2019-01-01 v L3 Experimental driver: xdvipdfmx 175 | \g__driver_image_int=\count170 176 | \g__driver_pdf_object_int=\count171 177 | )) 178 | Package: xparse 2018-10-17 L3 Experimental document command parser 179 | \l__xparse_current_arg_int=\count172 180 | \g__xparse_grabber_int=\count173 181 | \l__xparse_m_args_int=\count174 182 | \l__xparse_mandatory_args_int=\count175 183 | \l__xparse_v_nesting_int=\count176 184 | ) 185 | Package: fontspec 2019/01/10 v2.6j Font selection for XeLaTeX and LuaLaTeX 186 | 187 | ("D:\LaTeX\MiKTeX 2.9\tex/latex/fontspec\fontspec-xetex.sty" 188 | Package: fontspec-xetex 2019/01/10 v2.6j Font selection for XeLaTeX and LuaLaTe 189 | X 190 | \l__fontspec_script_int=\count177 191 | \l__fontspec_language_int=\count178 192 | \l__fontspec_strnum_int=\count179 193 | \l__fontspec_tmp_int=\count180 194 | \l__fontspec_em_int=\count181 195 | \l__fontspec_emdef_int=\count182 196 | \l__fontspec_strong_int=\count183 197 | \l__fontspec_strongdef_int=\count184 198 | \l__fontspec_tmpa_dim=\dimen135 199 | \l__fontspec_tmpb_dim=\dimen136 200 | \l__fontspec_tmpc_dim=\dimen137 201 | 202 | ("D:\LaTeX\MiKTeX 2.9\tex/latex/base\fontenc.sty" 203 | Package: fontenc 2018/08/11 v2.0j Standard LaTeX package 204 | 205 | ("D:\LaTeX\MiKTeX 2.9\tex/latex/base\tuenc.def" 206 | File: tuenc.def 2018/08/11 v2.0j Standard LaTeX file 207 | LaTeX Font Info: Redeclaring font encoding TU on input line 82. 208 | )) 209 | ("D:\LaTeX\MiKTeX 2.9\tex/latex/fontspec\fontspec.cfg") 210 | LaTeX Info: Redefining \itshape on input line 3944. 211 | LaTeX Info: Redefining \slshape on input line 3949. 212 | LaTeX Info: Redefining \scshape on input line 3954. 213 | LaTeX Info: Redefining \upshape on input line 3959. 214 | LaTeX Info: Redefining \em on input line 3989. 215 | LaTeX Info: Redefining \emph on input line 4014. 216 | LaTeX Info: Redefining \- on input line 4068. 217 | )) 218 | ("D:\LaTeX\MiKTeX 2.9\tex/latex/polyglossia\polyglossia.sty" 219 | Package: polyglossia 2018/04/07 v1.43 Alternative to Babel for XeLaTeX and LuaL 220 | aTeX 221 | 222 | (C:\Users\Sky\AppData\Roaming\MiKTeX\2.9\tex/latex/etoolbox\etoolbox.sty 223 | Package: etoolbox 2018/08/19 v2.5f e-TeX tools for LaTeX (JAW) 224 | \etb@tempcnta=\count185 225 | ) 226 | ("D:\LaTeX\MiKTeX 2.9\tex/latex/makecmds\makecmds.sty" 227 | Package: makecmds 2009/09/03 v1.0a extra command making commands 228 | ) 229 | ("D:\LaTeX\MiKTeX 2.9\tex/latex/xkeyval\xkeyval.sty" 230 | Package: xkeyval 2014/12/03 v2.7a package option processing (HA) 231 | 232 | ("D:\LaTeX\MiKTeX 2.9\tex/generic/xkeyval\xkeyval.tex" 233 | ("D:\LaTeX\MiKTeX 2.9\tex/generic/xkeyval\xkvutils.tex" 234 | \XKV@toks=\toks14 235 | \XKV@tempa@toks=\toks15 236 | 237 | ("D:\LaTeX\MiKTeX 2.9\tex/generic/xkeyval\keyval.tex")) 238 | \XKV@depth=\count186 239 | File: xkeyval.tex 2014/12/03 v2.7a key=value parser (HA) 240 | )) 241 | ("D:\LaTeX\MiKTeX 2.9\tex/generic/oberdiek\ifluatex.sty" 242 | Package: ifluatex 2016/05/16 v1.4 Provides the ifluatex switch (HO) 243 | Package ifluatex Info: LuaTeX not detected. 244 | ) 245 | ("D:\LaTeX\MiKTeX 2.9\tex/generic/ifxetex\ifxetex.sty" 246 | Package: ifxetex 2010/09/12 v0.6 Provides ifxetex conditional 247 | ) 248 | \xpg@normalclass=\XeTeXcharclass1 249 | ) 250 | (C:\Users\Sky\AppData\Roaming\MiKTeX\2.9\tex/latex/imakeidx\imakeidx.sty 251 | Package: imakeidx 2016/10/15 v1.3e Package for typesetting indices in a synchro 252 | nous mode 253 | 254 | ("D:\LaTeX\MiKTeX 2.9\tex/latex/tools\multicol.sty" 255 | Package: multicol 2018/12/27 v1.8v multicolumn formatting (FMi) 256 | \c@tracingmulticols=\count187 257 | \mult@box=\box42 258 | \multicol@leftmargin=\dimen138 259 | \c@unbalance=\count188 260 | \c@collectmore=\count189 261 | \doublecol@number=\count190 262 | \multicoltolerance=\count191 263 | \multicolpretolerance=\count192 264 | \full@width=\dimen139 265 | \page@free=\dimen140 266 | \premulticols=\dimen141 267 | \postmulticols=\dimen142 268 | \multicolsep=\skip49 269 | \multicolbaselineskip=\skip50 270 | \partial@page=\box43 271 | \last@line=\box44 272 | \maxbalancingoverflow=\dimen143 273 | \mult@rightbox=\box45 274 | \mult@grightbox=\box46 275 | \mult@gfirstbox=\box47 276 | \mult@firstbox=\box48 277 | \@tempa=\box49 278 | \@tempa=\box50 279 | \@tempa=\box51 280 | \@tempa=\box52 281 | \@tempa=\box53 282 | \@tempa=\box54 283 | \@tempa=\box55 284 | \@tempa=\box56 285 | \@tempa=\box57 286 | \@tempa=\box58 287 | \@tempa=\box59 288 | \@tempa=\box60 289 | \@tempa=\box61 290 | \@tempa=\box62 291 | \@tempa=\box63 292 | \@tempa=\box64 293 | \@tempa=\box65 294 | \c@columnbadness=\count193 295 | \c@finalcolumnbadness=\count194 296 | \last@try=\dimen144 297 | \multicolovershoot=\dimen145 298 | \multicolundershoot=\dimen146 299 | \mult@nat@firstbox=\box66 300 | \colbreak@box=\box67 301 | \mc@col@check@num=\count195 302 | )) 303 | ("D:\LaTeX\MiKTeX 2.9\tex/latex/hyperref\hyperref.sty" 304 | Package: hyperref 2018/11/30 v6.88e Hypertext links for LaTeX 305 | 306 | ("D:\LaTeX\MiKTeX 2.9\tex/generic/oberdiek\hobsub-hyperref.sty" 307 | Package: hobsub-hyperref 2016/05/16 v1.14 Bundle oberdiek, subset hyperref (HO) 308 | 309 | 310 | ("D:\LaTeX\MiKTeX 2.9\tex/generic/oberdiek\hobsub-generic.sty" 311 | Package: hobsub-generic 2016/05/16 v1.14 Bundle oberdiek, subset generic (HO) 312 | Package: hobsub 2016/05/16 v1.14 Construct package bundles (HO) 313 | Package: infwarerr 2016/05/16 v1.4 Providing info/warning/error messages (HO) 314 | Package: ltxcmds 2016/05/16 v1.23 LaTeX kernel commands for general use (HO) 315 | Package hobsub Info: Skipping package `ifluatex' (already loaded). 316 | Package: ifvtex 2016/05/16 v1.6 Detect VTeX and its facilities (HO) 317 | Package ifvtex Info: VTeX not detected. 318 | Package: intcalc 2016/05/16 v1.2 Expandable calculations with integers (HO) 319 | Package: ifpdf 2018/09/07 v3.3 Provides the ifpdf switch 320 | Package: etexcmds 2016/05/16 v1.6 Avoid name clashes with e-TeX commands (HO) 321 | Package: kvsetkeys 2016/05/16 v1.17 Key value parser (HO) 322 | Package: kvdefinekeys 2016/05/16 v1.4 Define keys (HO) 323 | Package: pdftexcmds 2018/09/10 v0.29 Utility functions of pdfTeX for LuaTeX (HO 324 | ) 325 | Package pdftexcmds Info: LuaTeX not detected. 326 | Package pdftexcmds Info: pdfTeX >= 1.30 not detected. 327 | Package pdftexcmds Info: \pdf@primitive is available. 328 | Package pdftexcmds Info: \pdf@ifprimitive is available. 329 | Package pdftexcmds Info: \pdfdraftmode not found. 330 | Package: pdfescape 2016/05/16 v1.14 Implements pdfTeX's escape features (HO) 331 | Package: bigintcalc 2016/05/16 v1.4 Expandable calculations on big integers (HO 332 | ) 333 | Package: bitset 2016/05/16 v1.2 Handle bit-vector datatype (HO) 334 | Package: uniquecounter 2016/05/16 v1.3 Provide unlimited unique counter (HO) 335 | ) 336 | Package hobsub Info: Skipping package `hobsub' (already loaded). 337 | Package: letltxmacro 2016/05/16 v1.5 Let assignment for LaTeX macros (HO) 338 | Package: hopatch 2016/05/16 v1.3 Wrapper for package hooks (HO) 339 | Package: xcolor-patch 2016/05/16 xcolor patch 340 | Package: atveryend 2016/05/16 v1.9 Hooks at the very end of document (HO) 341 | Package: atbegshi 2016/06/09 v1.18 At begin shipout hook (HO) 342 | Package: refcount 2016/05/16 v3.5 Data extraction from label references (HO) 343 | Package: hycolor 2016/05/16 v1.8 Color options for hyperref/bookmark (HO) 344 | ) 345 | ("D:\LaTeX\MiKTeX 2.9\tex/latex/oberdiek\auxhook.sty" 346 | Package: auxhook 2016/05/16 v1.4 Hooks for auxiliary files (HO) 347 | ) 348 | ("D:\LaTeX\MiKTeX 2.9\tex/latex/oberdiek\kvoptions.sty" 349 | Package: kvoptions 2016/05/16 v3.12 Key value format for package options (HO) 350 | ) 351 | \@linkdim=\dimen147 352 | \Hy@linkcounter=\count196 353 | \Hy@pagecounter=\count197 354 | 355 | ("D:\LaTeX\MiKTeX 2.9\tex/latex/hyperref\pd1enc.def" 356 | File: pd1enc.def 2018/11/30 v6.88e Hyperref: PDFDocEncoding definition (HO) 357 | ) 358 | \Hy@SavedSpaceFactor=\count198 359 | 360 | ("D:\LaTeX\MiKTeX 2.9\tex/latex/00miktex\hyperref.cfg" 361 | File: hyperref.cfg 2002/06/06 v1.2 hyperref configuration of TeXLive 362 | ) 363 | Package hyperref Info: Option `colorlinks' set `true' on input line 4393. 364 | Package hyperref Info: Option `bookmarksopen' set `true' on input line 4393. 365 | 366 | 367 | Package hyperref Warning: Unexpected value `true' 368 | (hyperref) of option `backref' instead of 369 | (hyperref) `section', `slide', `page', `none', 370 | (hyperref) or `false' on input line 4393. 371 | 372 | Package hyperref Info: Hyper figures OFF on input line 4519. 373 | Package hyperref Info: Link nesting OFF on input line 4524. 374 | Package hyperref Info: Hyper index ON on input line 4527. 375 | Package hyperref Info: Plain pages OFF on input line 4534. 376 | Package hyperref Info: Backreferencing OFF on input line 4539. 377 | Package hyperref Info: Implicit mode ON; LaTeX internals redefined. 378 | Package hyperref Info: Bookmarks ON on input line 4772. 379 | \c@Hy@tempcnt=\count199 380 | (C:\Users\Sky\AppData\Roaming\MiKTeX\2.9\tex/latex/url\url.sty 381 | \Urlmuskip=\muskip16 382 | Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc. 383 | ) 384 | LaTeX Info: Redefining \url on input line 5125. 385 | \XeTeXLinkMargin=\dimen148 386 | \Fld@menulength=\count266 387 | \Field@Width=\dimen149 388 | \Fld@charsize=\dimen150 389 | Package hyperref Info: Hyper figures OFF on input line 6380. 390 | Package hyperref Info: Link nesting OFF on input line 6385. 391 | Package hyperref Info: Hyper index ON on input line 6388. 392 | Package hyperref Info: backreferencing OFF on input line 6395. 393 | Package hyperref Info: Link coloring ON on input line 6398. 394 | Package hyperref Info: Link coloring with OCG OFF on input line 6405. 395 | Package hyperref Info: PDF/A mode OFF on input line 6410. 396 | LaTeX Info: Redefining \ref on input line 6450. 397 | LaTeX Info: Redefining \pageref on input line 6454. 398 | \Hy@abspage=\count267 399 | \c@Item=\count268 400 | \c@Hfootnote=\count269 401 | ) 402 | Package hyperref Info: Driver (autodetected): hxetex. 403 | 404 | ("D:\LaTeX\MiKTeX 2.9\tex/latex/hyperref\hxetex.def" 405 | File: hxetex.def 2018/11/30 v6.88e Hyperref driver for XeTeX 406 | 407 | ("D:\LaTeX\MiKTeX 2.9\tex/latex/hyperref\puenc.def" 408 | File: puenc.def 2018/11/30 v6.88e Hyperref: PDF Unicode definition (HO) 409 | ) 410 | ("D:\LaTeX\MiKTeX 2.9\tex/generic/oberdiek\stringenc.sty" 411 | Package: stringenc 2016/05/16 v1.11 Convert strings between diff. encodings (HO 412 | ) 413 | ) 414 | \pdfm@box=\box68 415 | \c@Hy@AnnotLevel=\count270 416 | \HyField@AnnotCount=\count271 417 | \Fld@listcount=\count272 418 | \c@bookmark@seq@number=\count273 419 | 420 | ("D:\LaTeX\MiKTeX 2.9\tex/latex/oberdiek\rerunfilecheck.sty" 421 | Package: rerunfilecheck 2016/05/16 v1.8 Rerun checks for auxiliary files (HO) 422 | Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2 423 | 82. 424 | ) 425 | \Hy@SectionHShift=\skip51 426 | ) 427 | Package hyperref Info: Option `unicode' set `true' on input line 17. 428 | 429 | (C:\Users\Sky\AppData\Roaming\MiKTeX\2.9\tex/latex/glossaries/base\glossaries.s 430 | ty 431 | Package: glossaries 2019/01/06 v4.42 (NLCT) 432 | ("D:\LaTeX\MiKTeX 2.9\tex/latex/base\ifthen.sty" 433 | Package: ifthen 2014/09/29 v1.1c Standard LaTeX ifthen package (DPC) 434 | ) 435 | (C:\Users\Sky\AppData\Roaming\MiKTeX\2.9\tex/latex/mfirstuc\mfirstuc.sty 436 | Package: mfirstuc 2017/11/14 v2.06 (NLCT) 437 | \@glsmfirst=\toks16 438 | \@glsmrest=\toks17 439 | ) 440 | (C:\Users\Sky\AppData\Roaming\MiKTeX\2.9\tex/latex/textcase\textcase.sty 441 | Package: textcase 2004/10/07 v0.07 Text only upper/lower case changing (DPC) 442 | ) 443 | (C:\Users\Sky\AppData\Roaming\MiKTeX\2.9\tex/latex/xfor\xfor.sty 444 | Package: xfor 2009/02/05 v1.05 (NLCT) 445 | ) 446 | (C:\Users\Sky\AppData\Roaming\MiKTeX\2.9\tex/latex/datatool\datatool-base.sty 447 | Package: datatool-base 2018/12/07 v2.31 (NLCT) 448 | 449 | ("D:\LaTeX\MiKTeX 2.9\tex/latex/amsmath\amsmath.sty" 450 | Package: amsmath 2018/12/01 v2.17b AMS math features 451 | \@mathmargin=\skip52 452 | 453 | For additional information on amsmath, use the `?' option. 454 | ("D:\LaTeX\MiKTeX 2.9\tex/latex/amsmath\amstext.sty" 455 | Package: amstext 2000/06/29 v2.01 AMS text 456 | 457 | ("D:\LaTeX\MiKTeX 2.9\tex/latex/amsmath\amsgen.sty" 458 | File: amsgen.sty 1999/11/30 v2.0 generic functions 459 | \@emptytoks=\toks18 460 | \ex@=\dimen151 461 | )) 462 | ("D:\LaTeX\MiKTeX 2.9\tex/latex/amsmath\amsbsy.sty" 463 | Package: amsbsy 1999/11/29 v1.2d Bold Symbols 464 | \pmbraise@=\dimen152 465 | ) 466 | ("D:\LaTeX\MiKTeX 2.9\tex/latex/amsmath\amsopn.sty" 467 | Package: amsopn 2016/03/08 v2.02 operator names 468 | ) 469 | \inf@bad=\count274 470 | LaTeX Info: Redefining \frac on input line 223. 471 | \uproot@=\count275 472 | \leftroot@=\count276 473 | LaTeX Info: Redefining \overline on input line 385. 474 | \classnum@=\count277 475 | \DOTSCASE@=\count278 476 | LaTeX Info: Redefining \ldots on input line 482. 477 | LaTeX Info: Redefining \dots on input line 485. 478 | LaTeX Info: Redefining \cdots on input line 606. 479 | \Mathstrutbox@=\box69 480 | \strutbox@=\box70 481 | \big@size=\dimen153 482 | LaTeX Font Info: Redeclaring font encoding OML on input line 729. 483 | LaTeX Font Info: Redeclaring font encoding OMS on input line 730. 484 | \macc@depth=\count279 485 | \c@MaxMatrixCols=\count280 486 | \dotsspace@=\muskip17 487 | \c@parentequation=\count281 488 | \dspbrk@lvl=\count282 489 | \tag@help=\toks19 490 | \row@=\count283 491 | \column@=\count284 492 | \maxfields@=\count285 493 | \andhelp@=\toks20 494 | \eqnshift@=\dimen154 495 | \alignsep@=\dimen155 496 | \tagshift@=\dimen156 497 | \tagwidth@=\dimen157 498 | \totwidth@=\dimen158 499 | \lineht@=\dimen159 500 | \@envbody=\toks21 501 | \multlinegap=\skip53 502 | \multlinetaggap=\skip54 503 | \mathdisplay@stack=\toks22 504 | LaTeX Info: Redefining \[ on input line 2844. 505 | LaTeX Info: Redefining \] on input line 2845. 506 | ) 507 | (C:\Users\Sky\AppData\Roaming\MiKTeX\2.9\tex/latex/substr\substr.sty 508 | Package: substr 2009/10/20 v1.2 Handle substrings 509 | \c@su@anzahl=\count286 510 | ) 511 | (C:\Users\Sky\AppData\Roaming\MiKTeX\2.9\tex/latex/datatool\datatool-fp.sty 512 | Package: datatool-fp 2018/12/07 v2.31 (NLCT) 513 | 514 | (C:\Users\Sky\AppData\Roaming\MiKTeX\2.9\tex/latex/fp\fp.sty 515 | Package: fp 1995/04/02 516 | 517 | `Fixed Point Package', Version 0.8, April 2, 1995 (C) Michael Mehlich 518 | (C:\Users\Sky\AppData\Roaming\MiKTeX\2.9\tex/latex/fp\defpattern.sty 519 | Package: defpattern 1994/10/12 520 | \actioncount=\count287 521 | ) 522 | (C:\Users\Sky\AppData\Roaming\MiKTeX\2.9\tex/latex/fp\fp-basic.sty 523 | Package: fp-basic 1996/05/13 524 | \FP@xs=\count288 525 | \FP@xia=\count289 526 | \FP@xib=\count290 527 | \FP@xfa=\count291 528 | \FP@xfb=\count292 529 | \FP@rega=\count293 530 | \FP@regb=\count294 531 | \FP@regs=\count295 532 | \FP@times=\count296 533 | ) 534 | (C:\Users\Sky\AppData\Roaming\MiKTeX\2.9\tex/latex/fp\fp-addons.sty 535 | Package: fp-addons 1995/03/15 536 | ) 537 | (C:\Users\Sky\AppData\Roaming\MiKTeX\2.9\tex/latex/fp\fp-snap.sty 538 | Package: fp-snap 1995/04/05 539 | ) 540 | (C:\Users\Sky\AppData\Roaming\MiKTeX\2.9\tex/latex/fp\fp-exp.sty 541 | Package: fp-exp 1995/04/03 542 | ) 543 | (C:\Users\Sky\AppData\Roaming\MiKTeX\2.9\tex/latex/fp\fp-trigo.sty 544 | Package: fp-trigo 1995/04/14 545 | ) 546 | (C:\Users\Sky\AppData\Roaming\MiKTeX\2.9\tex/latex/fp\fp-pas.sty 547 | Package: fp-pas 1994/08/29 548 | ) 549 | (C:\Users\Sky\AppData\Roaming\MiKTeX\2.9\tex/latex/fp\fp-random.sty 550 | Package: fp-random 1995/02/23 551 | \FPseed=\count297 552 | ) 553 | (C:\Users\Sky\AppData\Roaming\MiKTeX\2.9\tex/latex/fp\fp-eqn.sty 554 | Package: fp-eqn 1995/04/03 555 | ) 556 | (C:\Users\Sky\AppData\Roaming\MiKTeX\2.9\tex/latex/fp\fp-upn.sty 557 | Package: fp-upn 1996/10/21 558 | ) 559 | (C:\Users\Sky\AppData\Roaming\MiKTeX\2.9\tex/latex/fp\fp-eval.sty 560 | Package: fp-eval 1995/04/03 561 | ))) 562 | \@dtl@toks=\toks23 563 | \@dtl@tmpcount=\count298 564 | \dtl@tmplength=\skip55 565 | \dtl@sortresult=\count299 566 | \@dtl@numgrpsepcount=\count300 567 | \@dtl@datatype=\count301 568 | \dtl@codeA=\count302 569 | \dtl@codeB=\count303 570 | \@dtl@foreach@level=\count304 571 | ) 572 | (C:\Users\Sky\AppData\Roaming\MiKTeX\2.9\tex/latex/glossaries/base\glossaries-c 573 | ompatible-307.sty 574 | Package: glossaries-compatible-307 2019/01/06 v4.42 (NLCT) 575 | ) 576 | (C:\Users\Sky\AppData\Roaming\MiKTeX\2.9\tex/latex/tracklang\tracklang.sty 577 | Package: tracklang 2018/05/13 v1.3.6 (NLCT) Track Languages 578 | 579 | (C:\Users\Sky\AppData\Roaming\MiKTeX\2.9\tex/generic/tracklang\tracklang.tex)) 580 | \gls@level=\count305 581 | \@gls@tmpb=\toks24 582 | \gls@tmplen=\skip56 583 | \glskeylisttok=\toks25 584 | \glslabeltok=\toks26 585 | \glsshorttok=\toks27 586 | \glslongtok=\toks28 587 | 588 | (C:\Users\Sky\AppData\Roaming\MiKTeX\2.9\tex/latex/glossaries/styles\glossary-h 589 | ypernav.sty 590 | Package: glossary-hypernav 2019/01/06 v4.42 (NLCT) 591 | ) 592 | (C:\Users\Sky\AppData\Roaming\MiKTeX\2.9\tex/latex/glossaries/styles\glossary-l 593 | ist.sty 594 | Package: glossary-list 2019/01/06 v4.42 (NLCT) 595 | \glslistdottedwidth=\skip57 596 | ) 597 | (C:\Users\Sky\AppData\Roaming\MiKTeX\2.9\tex/latex/glossaries/styles\glossary-l 598 | ong.sty 599 | Package: glossary-long 2019/01/06 v4.42 (NLCT) 600 | ("D:\LaTeX\MiKTeX 2.9\tex/latex/tools\longtable.sty" 601 | Package: longtable 2014/10/28 v4.11 Multi-page Table package (DPC)+ FMi change 602 | \LTleft=\skip58 603 | \LTright=\skip59 604 | \LTpre=\skip60 605 | \LTpost=\skip61 606 | \LTchunksize=\count306 607 | \LTcapwidth=\dimen160 608 | \LT@head=\box71 609 | \LT@firsthead=\box72 610 | \LT@foot=\box73 611 | \LT@lastfoot=\box74 612 | \LT@cols=\count307 613 | \LT@rows=\count308 614 | \c@LT@tables=\count309 615 | \c@LT@chunks=\count310 616 | \LT@p@ftn=\toks29 617 | ) 618 | \glsdescwidth=\skip62 619 | \glspagelistwidth=\skip63 620 | ) 621 | (C:\Users\Sky\AppData\Roaming\MiKTeX\2.9\tex/latex/glossaries/styles\glossary-s 622 | uper.sty 623 | Package: glossary-super 2019/01/06 v4.42 (NLCT) 624 | 625 | (C:\Users\Sky\AppData\Roaming\MiKTeX\2.9\tex/latex/supertabular\supertabular.st 626 | y 627 | Package: supertabular 2004/02/20 v4.1e the supertabular environment 628 | \c@tracingst=\count311 629 | \ST@wd=\dimen161 630 | \ST@rightskip=\skip64 631 | \ST@leftskip=\skip65 632 | \ST@parfillskip=\skip66 633 | \ST@pageleft=\dimen162 634 | \ST@headht=\dimen163 635 | \ST@tailht=\dimen164 636 | \ST@pagesofar=\dimen165 637 | \ST@pboxht=\dimen166 638 | \ST@lineht=\dimen167 639 | \ST@stretchht=\dimen168 640 | \ST@prevht=\dimen169 641 | \ST@toadd=\dimen170 642 | \ST@dimen=\dimen171 643 | \ST@pbox=\box75 644 | )) 645 | (C:\Users\Sky\AppData\Roaming\MiKTeX\2.9\tex/latex/glossaries/styles\glossary-t 646 | ree.sty 647 | Package: glossary-tree 2019/01/06 v4.42 (NLCT) 648 | \glstreeindent=\skip67 649 | )) ("D:\LaTeX\MiKTeX 2.9\tex/latex/oberdiek\bookmark.sty" 650 | Package: bookmark 2016/05/17 v1.26 PDF bookmarks (HO) 651 | 652 | ("D:\LaTeX\MiKTeX 2.9\tex/latex/oberdiek\bkm-dvipdfm.def" 653 | File: bkm-dvipdfm.def 2016/05/17 v1.26 bookmark driver for dvipdfm (HO) 654 | \BKM@id=\count312 655 | )) 656 | (C:\Users\Sky\AppData\Roaming\MiKTeX\2.9\tex/latex/acronym\acronym.sty 657 | Package: acronym 2015/03/21 v1.41 Support for acronyms (Tobias Oetiker) 658 | 659 | (C:\Users\Sky\AppData\Roaming\MiKTeX\2.9\tex/latex/bigfoot\suffix.sty 660 | Package: suffix 2006/07/15 1.5a Variant command support 661 | ) 662 | (C:\Users\Sky\AppData\Roaming\MiKTeX\2.9\tex/latex/xstring\xstring.sty 663 | (C:\Users\Sky\AppData\Roaming\MiKTeX\2.9\tex/generic/xstring\xstring.tex 664 | \integerpart=\count313 665 | Invalid UTF-8 byte or sequence at line 35 replaced by U+FFFD. 666 | \decimalpart=\count314 667 | Invalid UTF-8 byte or sequence at line 79 replaced by U+FFFD. 668 | Invalid UTF-8 byte or sequence at line 79 replaced by U+FFFD. 669 | Invalid UTF-8 byte or sequence at line 83 replaced by U+FFFD. 670 | Invalid UTF-8 byte or sequence at line 86 replaced by U+FFFD. 671 | Invalid UTF-8 byte or sequence at line 102 replaced by U+FFFD. 672 | Invalid UTF-8 byte or sequence at line 114 replaced by U+FFFD. 673 | Invalid UTF-8 byte or sequence at line 120 replaced by U+FFFD. 674 | Invalid UTF-8 byte or sequence at line 125 replaced by U+FFFD. 675 | Invalid UTF-8 byte or sequence at line 147 replaced by U+FFFD. 676 | Invalid UTF-8 byte or sequence at line 147 replaced by U+FFFD. 677 | Invalid UTF-8 byte or sequence at line 147 replaced by U+FFFD. 678 | Invalid UTF-8 byte or sequence at line 182 replaced by U+FFFD. 679 | Invalid UTF-8 byte or sequence at line 182 replaced by U+FFFD. 680 | Invalid UTF-8 byte or sequence at line 182 replaced by U+FFFD. 681 | Invalid UTF-8 byte or sequence at line 183 replaced by U+FFFD. 682 | Invalid UTF-8 byte or sequence at line 184 replaced by U+FFFD. 683 | Invalid UTF-8 byte or sequence at line 185 replaced by U+FFFD. 684 | Invalid UTF-8 byte or sequence at line 185 replaced by U+FFFD. 685 | Invalid UTF-8 byte or sequence at line 185 replaced by U+FFFD. 686 | Invalid UTF-8 byte or sequence at line 189 replaced by U+FFFD. 687 | Invalid UTF-8 byte or sequence at line 189 replaced by U+FFFD. 688 | Invalid UTF-8 byte or sequence at line 190 replaced by U+FFFD. 689 | Invalid UTF-8 byte or sequence at line 190 replaced by U+FFFD. 690 | Invalid UTF-8 byte or sequence at line 193 replaced by U+FFFD. 691 | Invalid UTF-8 byte or sequence at line 208 replaced by U+FFFD. 692 | Invalid UTF-8 byte or sequence at line 208 replaced by U+FFFD. 693 | Invalid UTF-8 byte or sequence at line 208 replaced by U+FFFD. 694 | Invalid UTF-8 byte or sequence at line 208 replaced by U+FFFD. 695 | Invalid UTF-8 byte or sequence at line 208 replaced by U+FFFD. 696 | Invalid UTF-8 byte or sequence at line 208 replaced by U+FFFD. 697 | Invalid UTF-8 byte or sequence at line 221 replaced by U+FFFD. 698 | Invalid UTF-8 byte or sequence at line 221 replaced by U+FFFD. 699 | Invalid UTF-8 byte or sequence at line 241 replaced by U+FFFD. 700 | Invalid UTF-8 byte or sequence at line 241 replaced by U+FFFD. 701 | Invalid UTF-8 byte or sequence at line 241 replaced by U+FFFD. 702 | Invalid UTF-8 byte or sequence at line 241 replaced by U+FFFD. 703 | Invalid UTF-8 byte or sequence at line 266 replaced by U+FFFD. 704 | Invalid UTF-8 byte or sequence at line 284 replaced by U+FFFD. 705 | Invalid UTF-8 byte or sequence at line 295 replaced by U+FFFD. 706 | Invalid UTF-8 byte or sequence at line 300 replaced by U+FFFD. 707 | Invalid UTF-8 byte or sequence at line 300 replaced by U+FFFD. 708 | Invalid UTF-8 byte or sequence at line 301 replaced by U+FFFD. 709 | Invalid UTF-8 byte or sequence at line 301 replaced by U+FFFD. 710 | Invalid UTF-8 byte or sequence at line 301 replaced by U+FFFD. 711 | Invalid UTF-8 byte or sequence at line 302 replaced by U+FFFD. 712 | Invalid UTF-8 byte or sequence at line 303 replaced by U+FFFD. 713 | Invalid UTF-8 byte or sequence at line 332 replaced by U+FFFD. 714 | Invalid UTF-8 byte or sequence at line 332 replaced by U+FFFD. 715 | Invalid UTF-8 byte or sequence at line 332 replaced by U+FFFD. 716 | Invalid UTF-8 byte or sequence at line 332 replaced by U+FFFD. 717 | Invalid UTF-8 byte or sequence at line 333 replaced by U+FFFD. 718 | Invalid UTF-8 byte or sequence at line 334 replaced by U+FFFD. 719 | Invalid UTF-8 byte or sequence at line 334 replaced by U+FFFD. 720 | Invalid UTF-8 byte or sequence at line 334 replaced by U+FFFD. 721 | Invalid UTF-8 byte or sequence at line 406 replaced by U+FFFD. 722 | Invalid UTF-8 byte or sequence at line 406 replaced by U+FFFD. 723 | Invalid UTF-8 byte or sequence at line 409 replaced by U+FFFD. 724 | Invalid UTF-8 byte or sequence at line 410 replaced by U+FFFD. 725 | Invalid UTF-8 byte or sequence at line 428 replaced by U+FFFD. 726 | Invalid UTF-8 byte or sequence at line 434 replaced by U+FFFD. 727 | Invalid UTF-8 byte or sequence at line 457 replaced by U+FFFD. 728 | Invalid UTF-8 byte or sequence at line 457 replaced by U+FFFD. 729 | Invalid UTF-8 byte or sequence at line 464 replaced by U+FFFD. 730 | Invalid UTF-8 byte or sequence at line 464 replaced by U+FFFD. 731 | Invalid UTF-8 byte or sequence at line 466 replaced by U+FFFD. 732 | Invalid UTF-8 byte or sequence at line 466 replaced by U+FFFD. 733 | Invalid UTF-8 byte or sequence at line 541 replaced by U+FFFD. 734 | Invalid UTF-8 byte or sequence at line 541 replaced by U+FFFD. 735 | Invalid UTF-8 byte or sequence at line 541 replaced by U+FFFD. 736 | Invalid UTF-8 byte or sequence at line 586 replaced by U+FFFD. 737 | Invalid UTF-8 byte or sequence at line 586 replaced by U+FFFD. 738 | Invalid UTF-8 byte or sequence at line 588 replaced by U+FFFD. 739 | Invalid UTF-8 byte or sequence at line 588 replaced by U+FFFD. 740 | Invalid UTF-8 byte or sequence at line 595 replaced by U+FFFD. 741 | Invalid UTF-8 byte or sequence at line 597 replaced by U+FFFD. 742 | Invalid UTF-8 byte or sequence at line 599 replaced by U+FFFD. 743 | Invalid UTF-8 byte or sequence at line 602 replaced by U+FFFD. 744 | Invalid UTF-8 byte or sequence at line 605 replaced by U+FFFD. 745 | Invalid UTF-8 byte or sequence at line 605 replaced by U+FFFD. 746 | Invalid UTF-8 byte or sequence at line 610 replaced by U+FFFD. 747 | Invalid UTF-8 byte or sequence at line 615 replaced by U+FFFD. 748 | Invalid UTF-8 byte or sequence at line 637 replaced by U+FFFD. 749 | Invalid UTF-8 byte or sequence at line 639 replaced by U+FFFD. 750 | Invalid UTF-8 byte or sequence at line 641 replaced by U+FFFD. 751 | Invalid UTF-8 byte or sequence at line 648 replaced by U+FFFD. 752 | Invalid UTF-8 byte or sequence at line 654 replaced by U+FFFD. 753 | Invalid UTF-8 byte or sequence at line 679 replaced by U+FFFD. 754 | Invalid UTF-8 byte or sequence at line 701 replaced by U+FFFD. 755 | Invalid UTF-8 byte or sequence at line 706 replaced by U+FFFD. 756 | Invalid UTF-8 byte or sequence at line 716 replaced by U+FFFD. 757 | Invalid UTF-8 byte or sequence at line 716 replaced by U+FFFD. 758 | Invalid UTF-8 byte or sequence at line 716 replaced by U+FFFD. 759 | Invalid UTF-8 byte or sequence at line 720 replaced by U+FFFD. 760 | Invalid UTF-8 byte or sequence at line 733 replaced by U+FFFD. 761 | Invalid UTF-8 byte or sequence at line 733 replaced by U+FFFD. 762 | Invalid UTF-8 byte or sequence at line 742 replaced by U+FFFD. 763 | Invalid UTF-8 byte or sequence at line 742 replaced by U+FFFD. 764 | Invalid UTF-8 byte or sequence at line 743 replaced by U+FFFD. 765 | Invalid UTF-8 byte or sequence at line 743 replaced by U+FFFD. 766 | Invalid UTF-8 byte or sequence at line 763 replaced by U+FFFD. 767 | Invalid UTF-8 byte or sequence at line 774 replaced by U+FFFD. 768 | Invalid UTF-8 byte or sequence at line 774 replaced by U+FFFD. 769 | Invalid UTF-8 byte or sequence at line 775 replaced by U+FFFD. 770 | Invalid UTF-8 byte or sequence at line 775 replaced by U+FFFD. 771 | Invalid UTF-8 byte or sequence at line 775 replaced by U+FFFD. 772 | Invalid UTF-8 byte or sequence at line 798 replaced by U+FFFD. 773 | Invalid UTF-8 byte or sequence at line 798 replaced by U+FFFD. 774 | Invalid UTF-8 byte or sequence at line 811 replaced by U+FFFD. 775 | Invalid UTF-8 byte or sequence at line 825 replaced by U+FFFD. 776 | Invalid UTF-8 byte or sequence at line 825 replaced by U+FFFD. 777 | Invalid UTF-8 byte or sequence at line 832 replaced by U+FFFD. 778 | Invalid UTF-8 byte or sequence at line 839 replaced by U+FFFD. 779 | Invalid UTF-8 byte or sequence at line 839 replaced by U+FFFD. 780 | Invalid UTF-8 byte or sequence at line 847 replaced by U+FFFD. 781 | Invalid UTF-8 byte or sequence at line 847 replaced by U+FFFD. 782 | Invalid UTF-8 byte or sequence at line 862 replaced by U+FFFD. 783 | Invalid UTF-8 byte or sequence at line 863 replaced by U+FFFD. 784 | Invalid UTF-8 byte or sequence at line 865 replaced by U+FFFD. 785 | Invalid UTF-8 byte or sequence at line 865 replaced by U+FFFD. 786 | Invalid UTF-8 byte or sequence at line 909 replaced by U+FFFD. 787 | Invalid UTF-8 byte or sequence at line 910 replaced by U+FFFD. 788 | Invalid UTF-8 byte or sequence at line 910 replaced by U+FFFD. 789 | Invalid UTF-8 byte or sequence at line 935 replaced by U+FFFD. 790 | Invalid UTF-8 byte or sequence at line 935 replaced by U+FFFD. 791 | Invalid UTF-8 byte or sequence at line 937 replaced by U+FFFD. 792 | Invalid UTF-8 byte or sequence at line 937 replaced by U+FFFD. 793 | Invalid UTF-8 byte or sequence at line 941 replaced by U+FFFD. 794 | Invalid UTF-8 byte or sequence at line 941 replaced by U+FFFD. 795 | Invalid UTF-8 byte or sequence at line 963 replaced by U+FFFD. 796 | Invalid UTF-8 byte or sequence at line 963 replaced by U+FFFD. 797 | Invalid UTF-8 byte or sequence at line 965 replaced by U+FFFD. 798 | Invalid UTF-8 byte or sequence at line 966 replaced by U+FFFD. 799 | Invalid UTF-8 byte or sequence at line 1007 replaced by U+FFFD. 800 | ) 801 | Package: xstring 2018/12/09 v1.81 String manipulations (CT) 802 | ) 803 | \AC@clearlist=\toks30 804 | ) 805 | ("D:\LaTeX\MiKTeX 2.9\tex/latex/graphics\graphicx.sty" 806 | Package: graphicx 2017/06/01 v1.1a Enhanced LaTeX Graphics (DPC,SPQR) 807 | 808 | ("D:\LaTeX\MiKTeX 2.9\tex/latex/graphics\graphics.sty" 809 | Package: graphics 2017/06/25 v1.2c Standard LaTeX Graphics (DPC,SPQR) 810 | 811 | ("D:\LaTeX\MiKTeX 2.9\tex/latex/graphics\trig.sty" 812 | Package: trig 2016/01/03 v1.10 sin cos tan (DPC) 813 | ) 814 | ("D:\LaTeX\MiKTeX 2.9\tex/latex/graphics-cfg\graphics.cfg" 815 | File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration 816 | ) 817 | Package graphics Info: Driver file: xetex.def on input line 99. 818 | 819 | ("D:\LaTeX\MiKTeX 2.9\tex/latex/graphics-def\xetex.def" 820 | File: xetex.def 2017/06/24 v5.0h Graphics/color driver for xetex 821 | )) 822 | \Gin@req@height=\dimen172 823 | \Gin@req@width=\dimen173 824 | ) 825 | ("D:\LaTeX\MiKTeX 2.9\tex/latex/base\fontenc.sty" 826 | Package: fontenc 2018/08/11 v2.0j Standard LaTeX package 827 | 828 | ("D:\LaTeX\MiKTeX 2.9\tex/latex/base\t1enc.def" 829 | File: t1enc.def 2018/08/11 v2.0j Standard LaTeX file 830 | LaTeX Font Info: Redeclaring font encoding T1 on input line 48. 831 | ) 832 | LaTeX Font Info: Try loading font information for T1+lmr on input line 105. 833 | 834 | ("D:\LaTeX\MiKTeX 2.9\tex/latex/lm\t1lmr.fd" 835 | File: t1lmr.fd 2009/10/30 v1.6 Font defs for Latin Modern 836 | )) 837 | 838 | Package fontspec Info: Font "Nakula" does not contain any OpenType `Script' 839 | (fontspec) information. 840 | 841 | 842 | Package fontspec Info: Could not resolve font "Nakula/BI" (it probably doesn't 843 | (fontspec) exist). 844 | 845 | 846 | Package fontspec Info: Could not resolve font "Nakula/B" (it probably doesn't 847 | (fontspec) exist). 848 | 849 | 850 | Package fontspec Info: Could not resolve font "Nakula/I" (it probably doesn't 851 | (fontspec) exist). 852 | 853 | 854 | Package fontspec Info: Font family 'Nakula(0)' created for font 'Nakula' with 855 | (fontspec) options [Ligatures=TeX]. 856 | (fontspec) 857 | (fontspec) This font family consists of the following NFSS 858 | (fontspec) series/shapes: 859 | (fontspec) 860 | (fontspec) - 'normal' (m/n) with NFSS spec.: 861 | (fontspec) <->"Nakula/OT:mapping=tex-text;" 862 | (fontspec) - 'small caps' (m/sc) with NFSS spec.: 863 | (fontspec) <->"Nakula/OT:+smcp;mapping=tex-text;" 864 | 865 | LaTeX Info: Redefining \rmfamily on input line 34. 866 | 867 | ("D:\LaTeX\MiKTeX 2.9\tex/latex/polyglossia\gloss-sanskrit.ldf" 868 | File: gloss-sanskrit.ldf polyglossia: module for sanskrit 869 | 870 | ("D:\LaTeX\MiKTeX 2.9\tex/latex/polyglossia\devanagaridigits.sty" 871 | Package: devanagaridigits 2010/04/01 v0.1 Formatting of Devanagari digits 872 | ) 873 | Package polyglossia Info: Skipping automatic font setup for language sanskrit. 874 | \sanskrit@punctthin=\XeTeXcharclass2 875 | ) 876 | Package polyglossia Info: Default language is sanskrit. 877 | 878 | ("D:\LaTeX\MiKTeX 2.9\tex/latex/polyglossia\gloss-english.ldf" 879 | File: gloss-english.ldf polyglossia: module for english 880 | ) (main.aux 881 | 882 | Package fontspec Info: Could not resolve font "Nakula/BI" (it probably doesn't 883 | (fontspec) exist). 884 | 885 | 886 | Package fontspec Info: Could not resolve font "Nakula/B" (it probably doesn't 887 | (fontspec) exist). 888 | 889 | 890 | Package fontspec Info: Could not resolve font "Nakula/I" (it probably doesn't 891 | (fontspec) exist). 892 | 893 | 894 | Package fontspec Info: Font family 'Nakula(1)' created for font 'Nakula' with 895 | (fontspec) options [Ligatures=TeX,Script=Devanagari]. 896 | (fontspec) 897 | (fontspec) This font family consists of the following NFSS 898 | (fontspec) series/shapes: 899 | (fontspec) 900 | (fontspec) - 'normal' (m/n) with NFSS spec.: 901 | (fontspec) <->"Nakula/OT:script=deva;language=DFLT;mapping=tex-text 902 | ;" 903 | (fontspec) - 'small caps' (m/sc) with NFSS spec.: 904 | 905 | 906 | (body.aux)) 907 | \openout1 = `main.aux'. 908 | 909 | LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 39. 910 | LaTeX Font Info: ... okay on input line 39. 911 | LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 39. 912 | LaTeX Font Info: ... okay on input line 39. 913 | LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 39. 914 | LaTeX Font Info: ... okay on input line 39. 915 | LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 39. 916 | LaTeX Font Info: ... okay on input line 39. 917 | LaTeX Font Info: Checking defaults for TU/lmr/m/n on input line 39. 918 | LaTeX Font Info: ... okay on input line 39. 919 | LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 39. 920 | LaTeX Font Info: ... okay on input line 39. 921 | LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 39. 922 | LaTeX Font Info: ... okay on input line 39. 923 | LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 39. 924 | LaTeX Font Info: ... okay on input line 39. 925 | LaTeX Font Info: Checking defaults for PU/pdf/m/n on input line 39. 926 | LaTeX Font Info: ... okay on input line 39. 927 | 928 | Package fontspec Info: Adjusting the maths setup (use [no-math] to avoid 929 | (fontspec) this). 930 | 931 | \symlegacymaths=\mathgroup4 932 | LaTeX Font Info: Overwriting symbol font `legacymaths' in version `bold' 933 | (Font) OT1/cmr/m/n --> OT1/cmr/bx/n on input line 39. 934 | LaTeX Font Info: Redeclaring math accent \acute on input line 39. 935 | LaTeX Font Info: Redeclaring math accent \grave on input line 39. 936 | LaTeX Font Info: Redeclaring math accent \ddot on input line 39. 937 | LaTeX Font Info: Redeclaring math accent \tilde on input line 39. 938 | LaTeX Font Info: Redeclaring math accent \bar on input line 39. 939 | LaTeX Font Info: Redeclaring math accent \breve on input line 39. 940 | LaTeX Font Info: Redeclaring math accent \check on input line 39. 941 | LaTeX Font Info: Redeclaring math accent \hat on input line 39. 942 | LaTeX Font Info: Redeclaring math accent \dot on input line 39. 943 | LaTeX Font Info: Redeclaring math accent \mathring on input line 39. 944 | LaTeX Font Info: Redeclaring math symbol \Gamma on input line 39. 945 | LaTeX Font Info: Redeclaring math symbol \Delta on input line 39. 946 | LaTeX Font Info: Redeclaring math symbol \Theta on input line 39. 947 | LaTeX Font Info: Redeclaring math symbol \Lambda on input line 39. 948 | LaTeX Font Info: Redeclaring math symbol \Xi on input line 39. 949 | LaTeX Font Info: Redeclaring math symbol \Pi on input line 39. 950 | LaTeX Font Info: Redeclaring math symbol \Sigma on input line 39. 951 | LaTeX Font Info: Redeclaring math symbol \Upsilon on input line 39. 952 | LaTeX Font Info: Redeclaring math symbol \Phi on input line 39. 953 | LaTeX Font Info: Redeclaring math symbol \Psi on input line 39. 954 | LaTeX Font Info: Redeclaring math symbol \Omega on input line 39. 955 | LaTeX Font Info: Redeclaring math symbol \mathdollar on input line 39. 956 | LaTeX Font Info: Redeclaring symbol font `operators' on input line 39. 957 | LaTeX Font Info: Encoding `OT1' has changed to `TU' for symbol font 958 | (Font) `operators' in the math version `normal' on input line 39. 959 | LaTeX Font Info: Overwriting symbol font `operators' in version `normal' 960 | (Font) OT1/cmr/m/n --> TU/Nakula(0)/m/n on input line 39. 961 | LaTeX Font Info: Encoding `OT1' has changed to `TU' for symbol font 962 | (Font) `operators' in the math version `bold' on input line 39. 963 | LaTeX Font Info: Overwriting symbol font `operators' in version `bold' 964 | (Font) OT1/cmr/bx/n --> TU/Nakula(0)/m/n on input line 39. 965 | LaTeX Font Info: Overwriting symbol font `operators' in version `normal' 966 | (Font) TU/Nakula(0)/m/n --> TU/Nakula(0)/m/n on input line 39. 967 | 968 | LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal' 969 | (Font) OT1/cmr/m/it --> TU/Nakula(0)/m/it on input line 39. 970 | LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal' 971 | (Font) OT1/cmr/bx/n --> TU/Nakula(0)/bx/n on input line 39. 972 | LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal' 973 | (Font) OT1/cmss/m/n --> TU/lmss/m/n on input line 39. 974 | LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal' 975 | (Font) OT1/cmtt/m/n --> TU/lmtt/m/n on input line 39. 976 | LaTeX Font Info: Overwriting symbol font `operators' in version `bold' 977 | (Font) TU/Nakula(0)/m/n --> TU/Nakula(0)/bx/n on input line 39 978 | . 979 | LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold' 980 | (Font) OT1/cmr/bx/it --> TU/Nakula(0)/bx/it on input line 39. 981 | LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold' 982 | (Font) OT1/cmss/bx/n --> TU/lmss/bx/n on input line 39. 983 | LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold' 984 | (Font) OT1/cmtt/m/n --> TU/lmtt/bx/n on input line 39. 985 | \AtBeginShipoutBox=\box76 986 | Package hyperref Info: Link coloring OFF on input line 39. 987 | ("D:\LaTeX\MiKTeX 2.9\tex/latex/hyperref\nameref.sty" 988 | Package: nameref 2016/05/21 v2.44 Cross-referencing by name of section 989 | 990 | ("D:\LaTeX\MiKTeX 2.9\tex/generic/oberdiek\gettitlestring.sty" 991 | Package: gettitlestring 2016/05/16 v1.5 Cleanup title references (HO) 992 | ) 993 | \c@section@level=\count315 994 | ) 995 | LaTeX Info: Redefining \ref on input line 39. 996 | LaTeX Info: Redefining \pageref on input line 39. 997 | LaTeX Info: Redefining \nameref on input line 39. 998 | 999 | 1000 | LaTeX Font Warning: Font shape `TU/Nakula(1)/bx/n' undefined 1001 | (Font) using `TU/Nakula(1)/m/n' instead on input line 40. 1002 | 1003 | (main.toc) 1004 | \tf@toc=\write3 1005 | \openout3 = `main.toc'. 1006 | 1007 | ("D:\LaTeX\MiKTeX 2.9\tex/generic/oberdiek\se-ascii-print.def" 1008 | File: se-ascii-print.def 2016/05/16 v1.11 stringenc: Printable ASCII characters 1009 | 1010 | ) 1011 | [1 1012 | 1013 | 1014 | ] 1015 | \openout2 = `body.aux'. 1016 | 1017 | (body.tex 1018 | 1019 | LaTeX Font Warning: Font shape `TU/Nakula(1)/m/sl' undefined 1020 | (Font) using `TU/Nakula(1)/m/n' instead on input line 1. 1021 | 1022 | [2 1023 | 1024 | 1025 | ] 1026 | Chapter 1. 1027 | ) [3] 1028 | Package atveryend Info: Empty hook `BeforeClearDocument' on input line 44. 1029 | Package atveryend Info: Empty hook `AfterLastShipout' on input line 44. 1030 | (main.aux (body.aux)) 1031 | Package atveryend Info: Empty hook `AtVeryEndDocument' on input line 44. 1032 | Package atveryend Info: Empty hook `AtEndAfterFileList' on input line 44. 1033 | 1034 | 1035 | LaTeX Font Warning: Some font shapes were not available, defaults substituted. 1036 | 1037 | ) 1038 | Here is how much of TeX's memory you used: 1039 | 26651 strings out of 427748 1040 | 490619 string characters out of 3152492 1041 | 644537 words of memory out of 3000000 1042 | 30484 multiletter control sequences out of 15000+200000 1043 | 535760 words of font info for 35 fonts, out of 3000000 for 9000 1044 | 1328 hyphenation exceptions out of 8191 1045 | 46i,4n,67p,1992b,443s stack positions out of 5000i,500n,10000p,200000b,50000s 1046 | 1047 | Output written on main.pdf (3 pages). 1048 | --------------------------------------------------------------------------------