Skip to content
Snippets Groups Projects
Commit 33de0f14 authored by witiko's avatar witiko
Browse files

The `hints` option is now the default, removed a bulk of placeholder

strings, which are now replaced by the hints.
parent 434e4cab
No related branches found
No related tags found
No related merge requests found
\documentclass[color,cover,hints]{fithesis3/fithesis3} \documentclass[color,cover]{fithesis3/fithesis3}
\usepackage[utf8]{inputenc} \usepackage[utf8]{inputenc}
\usepackage[slovak]{babel} \usepackage[english]{babel}
\begin{document} \begin{document}
Ahoj všetci! Hello world!
\end{document} \end{document}
...@@ -179,31 +179,6 @@ ...@@ -179,31 +179,6 @@
% \section{Public API} % \section{Public API}
% \label{sec:public-api} % \label{sec:public-api}
% \subsection{Options} % \subsection{Options}
% The class recognizes the \texttt{hints} option, which replaces
% the placeholder text of undefined metadata fields with the names
% of the corresponding |\thesissetup| keys. The hints are
% disabled by default.
% \begin{macrocode}
\newif\ifthesis@hints@\thesis@hints@false
\DeclareOption{hints}{\thesis@hints@true}
\ProcessOptions
% \end{macrocode}
% \begin{macro}{\thesis@def}
% The |\thesis@def|\oarg{key}\marg{name}\marg{value} private macro
% then defines the private |\thesis@|\textit{name} macro to expand
% to \textit{value}, when hints are disabled, and to either
% <<\textit{key}>>, if specified, or to <<\textit{name}>>, when
% hints are enabled.
% \begin{macrocode}
\newcommand{\thesis@def}[3][]{%
\expandafter\def\csname thesis@#2\endcsname{%
\ifthesis@hints@%
<<\ifx\@empty#1\@empty#2\else#1\fi>>%
\else%
#3%
\fi}}
% \end{macrocode}
% \end{macro}
% Any \oarg{options} passed to the class will be handed down to the % Any \oarg{options} passed to the class will be handed down to the
% loaded style files. The supported options are therefore documented % loaded style files. The supported options are therefore documented
% in the subsection of section \ref{sec:style-files} dedicated to % in the subsection of section \ref{sec:style-files} dedicated to
...@@ -296,6 +271,18 @@ ...@@ -296,6 +271,18 @@
\def\thesis@stylepath{\thesis@subdir{#1}}} \def\thesis@stylepath{\thesis@subdir{#1}}}
% \end{macrocode} % \end{macrocode}
% \end{macro} % \end{macro}
% \begin{macro}{\thesis@def}
% The |\thesis@def|\oarg{key}\marg{name} private macro defines
% the private |\thesis@|\textit{name} macro to expand
% to either <<\textit{key}>>, if specified, or to
% <<\textit{name}>>. The macro serves to provide the placeholder
% string for user-defined macros with no default value.
% \begin{macrocode}
\newcommand{\thesis@def}[2][]{%
\expandafter\def\csname thesis@#2\endcsname{%
<<\ifx\@empty#1\@empty#2\else#1\fi>>}}
% \end{macrocode}
% \end{macro}
% \begin{macro}{\thesis@declaration} % \begin{macro}{\thesis@declaration}
% \subsubsection{The \texttt{declaration} key} % \subsubsection{The \texttt{declaration} key}
% The \marg{\texttt{declaration}=text} pair sets the % The \marg{\texttt{declaration}=text} pair sets the
...@@ -304,7 +291,7 @@ ...@@ -304,7 +291,7 @@
% \textit{text} is stored within the private |\thesis@declaration| % \textit{text} is stored within the private |\thesis@declaration|
% macro, whose implicit value is |\thesis@@{declaration}|. % macro, whose implicit value is |\thesis@@{declaration}|.
% \begin{macrocode} % \begin{macrocode}
\thesis@def{declaration}{\thesis@@{declaration}} \def\thesis@declaration{\thesis@@{declaration}}
\long\def\KV@thesis@declaration#1{% \long\def\KV@thesis@declaration#1{%
\long\def\thesis@declaration{#1}} \long\def\thesis@declaration{#1}}
% \end{macrocode} % \end{macrocode}
...@@ -352,30 +339,25 @@ ...@@ -352,30 +339,25 @@
% within the following private macros: % within the following private macros:
% \begin{itemize} % \begin{itemize}
% \item\DescribeMacro{\thesis@author}|\thesis@author| % \item\DescribeMacro{\thesis@author}|\thesis@author|
% -- The full name of the author. The default value of the % -- The full name of the author.
% macro is |\thesis@@{placeholders@author}|.
% \item\DescribeMacro{\thesis@author@head}|\thesis@author@head| % \item\DescribeMacro{\thesis@author@head}|\thesis@author@head|
% -- The first space-delimited part of the name. This % -- The first space-delimited part of the name. This
% corresponds to the author's first name. The default value of % corresponds to the author's first name.
% the macro is |\thesis@@{placeholders@author@firstName}|.
% \item\DescribeMacro{\thesis@author@tail}|\thesis@author@tail| % \item\DescribeMacro{\thesis@author@tail}|\thesis@author@tail|
% -- The full name without the first space-delimited part of % -- The full name without the first space-delimited part of
% the name. This corresponds to the author's surname. The % the name. This corresponds to the author's surname.
% default value of the macro is
% |\thesis@@{placeholders@author@surname}|.
% \end{itemize} % \end{itemize}
% \begin{macrocode} % \begin{macrocode}
\def\thesis@parseAuthor#1{% \def\thesis@parseAuthor#1{%
\def\thesis@author{#1}% \def\thesis@author{#1}%
\def\thesis@author@head{\thesis@head#1 \relax}% \def\thesis@author@head{\expandafter\expandafter\expandafter%
\@gobble\thesis@head#1 \relax}%
\def\thesis@author@tail{\thesis@tail#1 \relax}} \def\thesis@author@tail{\thesis@tail#1 \relax}}
\thesis@def{author}{\thesis@@{placeholders@author}} \thesis@def{author}%
\thesis@def[author]{author@head}{% \thesis@def[author]{author@head}%
\thesis@@{placeholders@author@firstName}} \thesis@def[author]{author@tail}%
\thesis@def[author]{author@tail}{%
\thesis@@{placeholders@author@surname}}
\define@key{thesis}{author}{% \define@key{thesis}{author}{%
\expandafter\thesis@parseAuthor{#1}} \thesis@parseAuthor{#1}}
% \end{macrocode} % \end{macrocode}
% \end{macro} % \end{macro}
% \begin{macro}{\thesis@id} % \begin{macro}{\thesis@id}
...@@ -383,11 +365,10 @@ ...@@ -383,11 +365,10 @@
% The \marg{\texttt{id}=identifier} pair sets the identifier % The \marg{\texttt{id}=identifier} pair sets the identifier
% of the thesis author to \textit{identifier}. This usually % of the thesis author to \textit{identifier}. This usually
% corresponds to a unique identifier of the author within the % corresponds to a unique identifier of the author within the
% information system of the given university. The default value of % information system of the given university.
% the macro is |\thesis@@{placeholders@id}|.
% \begin{macrocode} % \begin{macrocode}
\thesis@def{id}{\thesis@@{placeholders@id}} \thesis@def{id}
\define@key{thesis}{id}{% \define@key{thesis}{id}{%
\def\thesis@id{#1}} \def\thesis@id{#1}}
% \end{macrocode} % \end{macrocode}
% \end{macro} % \end{macro}
...@@ -469,10 +450,9 @@ ...@@ -469,10 +450,9 @@
% The \marg{\texttt{department}=name} pair sets the name of the % The \marg{\texttt{department}=name} pair sets the name of the
% department, at which the thesis is being written, to % department, at which the thesis is being written, to
% \textit{name}. The \textit{name} is stored within the private % \textit{name}. The \textit{name} is stored within the private
% |\thesis@department| macro, whose implicit value is % |\thesis@department| macro.
% |\thesis@@{placeholders@department}|.
% \begin{macrocode} % \begin{macrocode}
\thesis@def{department}{\thesis@@{placeholders@department}} \thesis@def{department}
\define@key{thesis}{department}{% \define@key{thesis}{department}{%
\def\thesis@department{#1}} \def\thesis@department{#1}}
% \end{macrocode} % \end{macrocode}
...@@ -482,10 +462,9 @@ ...@@ -482,10 +462,9 @@
% The \marg{\texttt{departmentEn}=name} pair sets the English % The \marg{\texttt{departmentEn}=name} pair sets the English
% name of the department, at which the thesis is being written, to % name of the department, at which the thesis is being written, to
% \textit{name}. The \textit{name} is stored within the private % \textit{name}. The \textit{name} is stored within the private
% |\thesis@departmentEn| macro, whose implicit value is % |\thesis@departmentEn| macro.
% |\thesis@@{placeholders@english@department}|.
% \begin{macrocode} % \begin{macrocode}
\thesis@def{departmentEn}{\thesis@english@placeholders@department} \thesis@def{departmentEn}
\define@key{thesis}{departmentEn}{% \define@key{thesis}{departmentEn}{%
\def\thesis@departmentEn{#1}} \def\thesis@departmentEn{#1}}
% \end{macrocode} % \end{macrocode}
...@@ -494,10 +473,9 @@ ...@@ -494,10 +473,9 @@
% \subsubsection{The \texttt{programme} key} % \subsubsection{The \texttt{programme} key}
% The \marg{\texttt{programme}=name} pair sets the name of the % The \marg{\texttt{programme}=name} pair sets the name of the
% author's study programme to \textit{name}. The \textit{name} % author's study programme to \textit{name}. The \textit{name}
% is stored within the private |\thesis@programme| macro, whose % is stored within the private |\thesis@programme| macro.
% implicit value is |\thesis@@{placeholders@programme}|.
% \begin{macrocode} % \begin{macrocode}
\thesis@def{programme}{\thesis@@{placeholders@programme}} \thesis@def{programme}
\define@key{thesis}{programme}{% \define@key{thesis}{programme}{%
\def\thesis@programme{#1}} \def\thesis@programme{#1}}
% \end{macrocode} % \end{macrocode}
...@@ -507,10 +485,9 @@ ...@@ -507,10 +485,9 @@
% The \marg{\texttt{programmeEn}=name} pair sets the English name % The \marg{\texttt{programmeEn}=name} pair sets the English name
% of the author's study programme to \textit{name}. The % of the author's study programme to \textit{name}. The
% \textit{name} is stored within the private |\thesis@programmeEn| % \textit{name} is stored within the private |\thesis@programmeEn|
% macro, whose implicit value is % macro.
% |\thesis@@{placeholders@english@programme}|.
% \begin{macrocode} % \begin{macrocode}
\thesis@def{programmeEn}{\thesis@english@placeholders@programme} \thesis@def{programmeEn}
\define@key{thesis}{programmeEn}{% \define@key{thesis}{programmeEn}{%
\def\thesis@programmeEn{#1}} \def\thesis@programmeEn{#1}}
% \end{macrocode} % \end{macrocode}
...@@ -519,10 +496,9 @@ ...@@ -519,10 +496,9 @@
% \subsubsection{The \texttt{field} key} % \subsubsection{The \texttt{field} key}
% The \marg{\texttt{field}=name} pair sets the name of the % The \marg{\texttt{field}=name} pair sets the name of the
% author's field of stufy to \textit{name}. The \textit{name} % author's field of stufy to \textit{name}. The \textit{name}
% is stored within the private |\thesis@field| macro, whose % is stored within the private |\thesis@field| macro.
% implicit value is |\thesis@@{placeholders@field}|.
% \begin{macrocode} % \begin{macrocode}
\thesis@def{field}{\thesis@@{placeholders@field}} \thesis@def{field}
\define@key{thesis}{field}{% \define@key{thesis}{field}{%
\def\thesis@field{#1}} \def\thesis@field{#1}}
% \end{macrocode} % \end{macrocode}
...@@ -531,10 +507,9 @@ ...@@ -531,10 +507,9 @@
% \subsubsection{The \texttt{fieldEn} key} % \subsubsection{The \texttt{fieldEn} key}
% The \marg{\texttt{fieldEn}=name} pair sets the English name of % The \marg{\texttt{fieldEn}=name} pair sets the English name of
% the author's field of stufy to \textit{name}. The \textit{name} % the author's field of stufy to \textit{name}. The \textit{name}
% is stored within the private |\thesis@fieldEn| macro, whose % is stored within the private |\thesis@fieldEn| macro.
% implicit value is |\thesis@english@placeholders@field|.
% \begin{macrocode} % \begin{macrocode}
\thesis@def{fieldEn}{\thesis@english@placeholders@field} \thesis@def{fieldEn}
\define@key{thesis}{fieldEn}{% \define@key{thesis}{fieldEn}{%
\def\thesis@fieldEn{#1}} \def\thesis@fieldEn{#1}}
% \end{macrocode} % \end{macrocode}
...@@ -717,17 +692,8 @@ ...@@ -717,17 +692,8 @@
\fi% \fi%
\global\edef\thesis@academicYear{\@yearA/\@yearB}}} \global\edef\thesis@academicYear{\@yearA/\@yearB}}}
\ifthesis@hints@% \edef\thesis@date{\the\year/\the\month/\the\day}%
\thesis@def[date]{date}{}% \expandafter\thesis@parseDate\thesis@date|%
\thesis@def[date]{year}{}%
\thesis@def[date]{month}{}%
\thesis@def[date]{day}{}%
\thesis@def[date]{academicYear}{}%
\def\thesis@season{winter}%
\else%
\edef\thesis@date{\the\year/\the\month/\the\day}%
\expandafter\thesis@parseDate\thesis@date|%
\fi%
\define@key{thesis}{date}{{% \define@key{thesis}{date}{{%
\edef\@date{#1}% \edef\@date{#1}%
...@@ -740,7 +706,7 @@ ...@@ -740,7 +706,7 @@
% The \textit{place} is stored within the private |\thesis@place| % The \textit{place} is stored within the private |\thesis@place|
% macro, whose implicit value is \texttt{Brno}. % macro, whose implicit value is \texttt{Brno}.
% \begin{macrocode} % \begin{macrocode}
\thesis@def{place}{Brno} \def\thesis@place{Brno}
\define@key{thesis}{place}{% \define@key{thesis}{place}{%
\def\thesis@place{#1}} \def\thesis@place{#1}}
% \end{macrocode} % \end{macrocode}
...@@ -749,10 +715,9 @@ ...@@ -749,10 +715,9 @@
% \subsubsection{The \texttt{title} key} % \subsubsection{The \texttt{title} key}
% The \marg{\texttt{title}=title} pair sets the title of the % The \marg{\texttt{title}=title} pair sets the title of the
% thesis to \textit{title}. The \textit{title} is stored within the % thesis to \textit{title}. The \textit{title} is stored within the
% private |\thesis@title| macro, whose implicit value is % private |\thesis@title| macro.
% |\thesis@@{placeholders@|\discretionary{}{}{}|title}|.
% \begin{macrocode} % \begin{macrocode}
\thesis@def{title}{\thesis@@{placeholders@title}} \thesis@def{title}
\define@key{thesis}{title}{% \define@key{thesis}{title}{%
\def\thesis@title{#1}} \def\thesis@title{#1}}
% \end{macrocode} % \end{macrocode}
...@@ -777,10 +742,9 @@ ...@@ -777,10 +742,9 @@
% \subsubsection{The \texttt{titleEn} key} % \subsubsection{The \texttt{titleEn} key}
% The \marg{\texttt{titleEn}=title} pair sets the English title of % The \marg{\texttt{titleEn}=title} pair sets the English title of
% the thesis to \textit{title}. The \textit{title} is stored within % the thesis to \textit{title}. The \textit{title} is stored within
% the private |\thesis@titleEn| macro, whose implicit value is % the private |\thesis@titleEn| macro.
% |\thesis@english@placeholders@|\discretionary{}{}{}|title|.
% \begin{macrocode} % \begin{macrocode}
\thesis@def{titleEn}{\thesis@english@placeholders@title} \thesis@def{titleEn}
\define@key{thesis}{titleEn}{% \define@key{thesis}{titleEn}{%
\def\thesis@titleEn{#1}} \def\thesis@titleEn{#1}}
% \end{macrocode} % \end{macrocode}
...@@ -803,10 +767,9 @@ ...@@ -803,10 +767,9 @@
% \subsubsection{The \texttt{keywords} key} % \subsubsection{The \texttt{keywords} key}
% The \marg{\texttt{keywords}=list} pair sets the keywords of the % The \marg{\texttt{keywords}=list} pair sets the keywords of the
% thesis to the comma-delimited \textit{list}. The \textit{list} % thesis to the comma-delimited \textit{list}. The \textit{list}
% is stored within the private |\thesis@keywords| macro, whose % is stored within the private |\thesis@keywords| macro.
% implicit value is |\thesis@@{placeholders@keywords}|.
% \begin{macrocode} % \begin{macrocode}
\thesis@def{keywords}{\thesis@@{placeholders@keywords}} \thesis@def{keywords}
\define@key{thesis}{keywords}{% \define@key{thesis}{keywords}{%
\def\thesis@keywords{#1}} \def\thesis@keywords{#1}}
% \end{macrocode} % \end{macrocode}
...@@ -816,10 +779,9 @@ ...@@ -816,10 +779,9 @@
% The \marg{\texttt{keywordsEn}=list} pair sets the English % The \marg{\texttt{keywordsEn}=list} pair sets the English
% keywords of the thesis to the comma-delimited \textit{list}. The % keywords of the thesis to the comma-delimited \textit{list}. The
% \textit{list} is stored within the private |\thesis@keywordsEn| % \textit{list} is stored within the private |\thesis@keywordsEn|
% macro, whose implicit value is % macro.
% |\thesis@english@placeholders@keywords|.
% \begin{macrocode} % \begin{macrocode}
\thesis@def{keywordsEn}{\thesis@english@placeholders@keywords} \thesis@def{keywordsEn}
\define@key{thesis}{keywordsEn}{% \define@key{thesis}{keywordsEn}{%
\def\thesis@keywordsEn{#1}} \def\thesis@keywordsEn{#1}}
% \end{macrocode} % \end{macrocode}
...@@ -828,10 +790,9 @@ ...@@ -828,10 +790,9 @@
% \subsubsection{The \texttt{abstract} key} % \subsubsection{The \texttt{abstract} key}
% The \marg{\texttt{abstract}=text} pair sets the abstract of the % The \marg{\texttt{abstract}=text} pair sets the abstract of the
% thesis to \textit{text}. The \textit{text} is stored within the % thesis to \textit{text}. The \textit{text} is stored within the
% private |\thesis@abstract| macro, whose implicit value is % private |\thesis@abstract| macro.
% |\thesis@@{placeholders@abstract}|.
% \begin{macrocode} % \begin{macrocode}
\thesis@def{abstract}{\thesis@@{placeholders@abstract}} \thesis@def{abstract}
\long\def\KV@thesis@abstract#1{% \long\def\KV@thesis@abstract#1{%
\long\def\thesis@abstract{#1}} \long\def\thesis@abstract{#1}}
% \end{macrocode} % \end{macrocode}
...@@ -840,11 +801,9 @@ ...@@ -840,11 +801,9 @@
% \subsubsection{The \texttt{abstractEn} key} % \subsubsection{The \texttt{abstractEn} key}
% The \marg{\texttt{abstractEn}=text} pair sets the English % The \marg{\texttt{abstractEn}=text} pair sets the English
% abstract of the thesis to \textit{text}. The \textit{text} % abstract of the thesis to \textit{text}. The \textit{text}
% is stored within the private |\thesis@abstractEn| macro, % is stored within the private |\thesis@abstractEn| macro.
% whose implicit value is
% |\thesis@english@placeholders@abstract|.
% \begin{macrocode} % \begin{macrocode}
\thesis@def{abstractEn}{\thesis@english@placeholders@abstract} \thesis@def{abstractEn}
\long\def\KV@thesis@abstractEn#1{% \long\def\KV@thesis@abstractEn#1{%
\long\def\thesis@abstractEn{#1}} \long\def\thesis@abstractEn{#1}}
% \end{macrocode} % \end{macrocode}
...@@ -853,10 +812,9 @@ ...@@ -853,10 +812,9 @@
% \subsubsection{The \texttt{advisor} key} % \subsubsection{The \texttt{advisor} key}
% The \marg{\texttt{advisor}=name} pair sets the thesis advisor's % The \marg{\texttt{advisor}=name} pair sets the thesis advisor's
% full name to \textit{name}. The \textit{name} is stored within % full name to \textit{name}. The \textit{name} is stored within
% the private |\thesis@advisor| macro, whose implicit value is % the private |\thesis@advisor| macro.
% |\thesis@@{placeholders@advisor}|.
% \begin{macrocode} % \begin{macrocode}
\thesis@def{advisor}{\thesis@@{placeholders@advisor}} \thesis@def{advisor}
\define@key{thesis}{advisor}{\def\thesis@advisor{#1}} \define@key{thesis}{advisor}{\def\thesis@advisor{#1}}
% \end{macrocode} % \end{macrocode}
% \end{macro} % \end{macro}
...@@ -864,8 +822,7 @@ ...@@ -864,8 +822,7 @@
% \subsubsection{The \texttt{thanks} key} % \subsubsection{The \texttt{thanks} key}
% The \marg{\texttt{thanks}=text} pair sets the acknowledgement % The \marg{\texttt{thanks}=text} pair sets the acknowledgement
% text to \textit{text}. The \textit{text} is stored within % text to \textit{text}. The \textit{text} is stored within
% the private |\thesis@thanks| macro, whose implicit value is % the private |\thesis@thanks| macro.
% |\undefined|.
% \begin{macrocode} % \begin{macrocode}
\long\def\KV@thesis@thanks#1{% \long\def\KV@thesis@thanks#1{%
\long\def\thesis@thanks{#1}} \long\def\thesis@thanks{#1}}
...@@ -877,11 +834,10 @@ ...@@ -877,11 +834,10 @@
% list of paths (and optional page spec specifiers, see the % list of paths (and optional page spec specifiers, see the
% \textsf{pdfpages} package |\includepdfmerge| command % \textsf{pdfpages} package |\includepdfmerge| command
% documentation) to the pdf files containing the thesis assignment % documentation) to the pdf files containing the thesis assignment
% to \textit{list}. The \textit{list} is stored within the private % to \textit{list}. The \textit{list} is stored within the
% |\thesis@assignmentFiles| macro, whose implicit value is % |\thesis@assignmentFiles| private macro. When defined, the PDF
% |\undefined|. When defined, the PDF files are injected into the % files are injected into the resulting document instead of the
% resulting document instead of the placeholder % placeholder |\thesis@@{assignment}| string.
% |\thesis@assignment| string.
% \begin{macrocode} % \begin{macrocode}
\define@key{thesis}{assignment}{% \define@key{thesis}{assignment}{%
\def\thesis@assignmentFiles{#1}} \def\thesis@assignmentFiles{#1}}
...@@ -1151,7 +1107,7 @@ ...@@ -1151,7 +1107,7 @@
\ifx\relax#2% \ifx\relax#2%
\expandafter\@gobbletwo% \expandafter\@gobbletwo%
\else% \else%
#1% \ #1%
\fi% \fi%
\thesis@head#2}% \thesis@head#2}%
\def\thesis@tail#1 #2{% \def\thesis@tail#1 #2{%
...@@ -1222,26 +1178,12 @@ ...@@ -1222,26 +1178,12 @@
% (see section \ref{sec:thesis@load}) needs to define the following % (see section \ref{sec:thesis@load}) needs to define the following
% private macros: % private macros:
% \begin{itemize} % \begin{itemize}
% \item|\thesis@|\textit{locale}|@placeholders@title| -- The
% placeholder title of the thesis
% \item|\thesis@|\textit{locale}|@placeholders@keywords| -- The
% placeholder keywords of the thesis
% \item|\thesis@|\textit{locale}|@placeholders@abstract| -- The
% placeholder abstract of the thesis
% \item|\thesis@|\textit{locale}|@placeholders@author| -- The
% placeholder name of the thesis author
% \item|\thesis@|\textit{locale}|@universityName| -- The name of % \item|\thesis@|\textit{locale}|@universityName| -- The name of
% the university % the university
% \item|\thesis@|\textit{locale}|@facultyName| -- The name of the % \item|\thesis@|\textit{locale}|@facultyName| -- The name of the
% faculty % faculty
% \item|\thesis@|\textit{locale}|@placeholders@advisor| -- The % \item|\thesis@|\textit{locale}|@assignment| -- Instructions to
% placeholder name of the advisor % replace the current page with the official thesis assignment
% \item|\thesis@|\textit{locale}|@placeholders@department| -- The
% placeholder department name
% \item|\thesis@|\textit{locale}|@placeholders@programme| -- The
% placeholder programme name
% \item|\thesis@|\textit{locale}|@placeholders@thanks| -- The
% placeholder acknowledgement text
% \item|\thesis@|\textit{locale}|@declaration| -- The declaration % \item|\thesis@|\textit{locale}|@declaration| -- The declaration
% text % text
% \item|\thesis@|\textit{locale}|@fieldTitle| -- The title of % \item|\thesis@|\textit{locale}|@fieldTitle| -- The title of
...@@ -1258,16 +1200,16 @@ ...@@ -1258,16 +1200,16 @@
% the acknowledgement section % the acknowledgement section
% \item|\thesis@|\textit{locale}|@declarationTitle| -- The title % \item|\thesis@|\textit{locale}|@declarationTitle| -- The title
% of the declaration section % of the declaration section
% \item|\thesis@|\textit{locale}|@typeName| -- The name of the % \item|\thesis@|\textit{locale}|@idTitle| -- The title of the
% thesis type % thesis author's identifier field
% \item|\thesis@|\textit{locale}|@assignment| -- Instructions to
% replace the current page with the official thesis assignment
% \item|\thesis@|\textit{locale}|@winter| -- The name of the % \item|\thesis@|\textit{locale}|@winter| -- The name of the
% winter semester % winter semester
% \item|\thesis@|\textit{locale}|@summer| -- The name of the % \item|\thesis@|\textit{locale}|@summer| -- The name of the
% summer semester % summer semester
% \item|\thesis@|\textit{locale}|@semester| -- The full name of % \item|\thesis@|\textit{locale}|@semester| -- The full name of
% the current semester % the current semester
% \item|\thesis@|\textit{locale}|@typeName| -- The name of the
% thesis type
% \end{itemize} % \end{itemize}
% %
% \def\file#1{\paragraph{The \texttt{#1} file}} % \def\file#1{\paragraph{The \texttt{#1} file}}
......
...@@ -17,21 +17,8 @@ ...@@ -17,21 +17,8 @@
\ifthesis@woman a\fi} \ifthesis@woman a\fi}
% Zástupné texty % Zástupné texty
\def\thesis@czech@placeholders@title{Název práce}
\def\thesis@czech@placeholders@keywords{klíčové slovo 1,
klíčové slovo 2, ...}
\def\thesis@czech@placeholders@abstract{Text shrnutí}
\def\thesis@czech@placeholders@author{Jméno autora}
\def\thesis@czech@placeholders@author@firstName{Jméno}
\def\thesis@czech@placeholders@author@surname{Příjmení}
\def\thesis@czech@universityName{Název univerzity} \def\thesis@czech@universityName{Název univerzity}
\def\thesis@czech@facultyName{Název fakulty} \def\thesis@czech@facultyName{Název fakulty}
\def\thesis@czech@placeholders@advisor{Jméno vedoucího}
\def\thesis@czech@placeholders@department{Název katedry}
\def\thesis@czech@placeholders@programme{Název studijního
programu}
\def\thesis@czech@placeholders@field{Název studijního oboru}
\def\thesis@czech@placeholders@id{Identifikátor}
\def\thesis@czech@assignment{Místo tohoto listu vložte kopii \def\thesis@czech@assignment{Místo tohoto listu vložte kopii
oficiálního podepsaného zadání práce.} oficiálního podepsaného zadání práce.}
\def\thesis@czech@declaration{Text prohlášení ...} \def\thesis@czech@declaration{Text prohlášení ...}
...@@ -79,8 +66,7 @@ ...@@ -79,8 +66,7 @@
% This is the Czech locale file specific to the Masaryk % This is the Czech locale file specific to the Masaryk
% University in Brno. It replaces the \texttt{universityName} % University in Brno. It replaces the \texttt{universityName}
% placeholder with the correct value and defines the % placeholder with the correct value and defines the
% \texttt{declaration}, \texttt{placeholders@id} and % \texttt{declaration} and \texttt{idTitle} strings.
% \texttt{idTitle} strings.
% \iffalse % \iffalse
%<*mu> %<*mu>
% \fi\begin{macrocode} % \fi\begin{macrocode}
...@@ -93,7 +79,6 @@ ...@@ -93,7 +79,6 @@
\thesis@czech@gender@koncovka\ samostatně a \thesis@czech@gender@koncovka\ samostatně a
použil\thesis@czech@gender@koncovka\ jen prameny použil\thesis@czech@gender@koncovka\ jen prameny
uvedené~v seznamu literatury.} uvedené~v seznamu literatury.}
\def\thesis@czech@placeholders@id{UČO}
% Různé % Různé
\def\thesis@czech@idTitle{UČO} \def\thesis@czech@idTitle{UČO}
...@@ -103,8 +88,8 @@ ...@@ -103,8 +88,8 @@
% This is the Czech locale file specific to the Faculty of Law at % This is the Czech locale file specific to the Faculty of Law at
% University in Brno. It replaces the \texttt{facultyName} % University in Brno. It replaces the \texttt{facultyName}
% placeholder with the correct value and replaces the % placeholder with the correct value and replaces the
% \texttt{abstractTitle} and \texttt{placeholders@abstract} % \texttt{abstractTitle} string in accordance with the
% strings in accordance with the requirements of the faculty. % requirements of the faculty.
% \iffalse % \iffalse
%<*mu/law> %<*mu/law>
% \fi\begin{macrocode} % \fi\begin{macrocode}
...@@ -114,7 +99,6 @@ ...@@ -114,7 +99,6 @@
\def\thesis@czech@abstractTitle{Abstrakt} \def\thesis@czech@abstractTitle{Abstrakt}
% Zástupné texty % Zástupné texty
\def\thesis@czech@placeholders@abstract{Text abstraktu}
\def\thesis@czech@facultyName{Právnická fakulta Masarykovy \def\thesis@czech@facultyName{Právnická fakulta Masarykovy
univerzity} univerzity}
% \end{macrocode}\iffalse % \end{macrocode}\iffalse
...@@ -123,15 +107,14 @@ ...@@ -123,15 +107,14 @@
% This is the Czech locale file specific to the Faculty of Sports % This is the Czech locale file specific to the Faculty of Sports
% Studies at the Masaryk University in Brno. It replaces the % Studies at the Masaryk University in Brno. It replaces the
% \texttt{facultyName} placeholder with the correct value and the % \texttt{facultyName} placeholder with the correct value and the
% \texttt{placeholders@field} and \texttt{fieldTitle} strings in % \texttt{fieldTitle} string in accordance with the common usage
% accordance with the common usage at the faculty. % at the faculty.
% \iffalse % \iffalse
%<*mu/fsps> %<*mu/fsps>
% \fi\begin{macrocode} % \fi\begin{macrocode}
\ProvidesFile{fithesis3/locale/mu/fsps/czech.def}[2015/04/27] \ProvidesFile{fithesis3/locale/mu/fsps/czech.def}[2015/04/27]
% Zástupné texty % Zástupné texty
\def\thesis@czech@placeholders@field{Název specializace}
\def\thesis@czech@facultyName{Fakulta sportovních studií} \def\thesis@czech@facultyName{Fakulta sportovních studií}
% Různé % Různé
...@@ -141,8 +124,7 @@ ...@@ -141,8 +124,7 @@
% \fi\file{locale/mu/fss/czech.def} % \fi\file{locale/mu/fss/czech.def}
% This is the Czech locale file specific to the Faculty of Social % This is the Czech locale file specific to the Faculty of Social
% Studies at the Masaryk University in Brno. It replaces the % Studies at the Masaryk University in Brno. It replaces the
% \texttt{facultyName} and \texttt{placeholders@assignment} % \texttt{facultyName} string with the correct value.
% strings with the correct value.
% \iffalse % \iffalse
%<*mu/fss> %<*mu/fss>
% \fi\begin{macrocode} % \fi\begin{macrocode}
...@@ -150,7 +132,7 @@ ...@@ -150,7 +132,7 @@
% Zástupné texty % Zástupné texty
\def\thesis@czech@facultyName{Fakulta sociálních studií} \def\thesis@czech@facultyName{Fakulta sociálních studií}
\def\thesis@czech@placeholders@assignment{Místo tohoto listu \def\thesis@czech@assignment{Místo tohoto listu
vložte kopie oficiálního podepsaného zadání práce nebo vložte kopie oficiálního podepsaného zadání práce nebo
prohlášení autora školního díla nebo obojí~v závislosti na prohlášení autora školního díla nebo obojí~v závislosti na
požadavcích příslušné katedry.} požadavcích příslušné katedry.}
...@@ -173,12 +155,11 @@ ...@@ -173,12 +155,11 @@
% This is the Czech locale file specific to the Faculty of % This is the Czech locale file specific to the Faculty of
% Medicine at the Masaryk University in Brno. % Medicine at the Masaryk University in Brno.
% It replaces the \texttt{facultyName} placeholder with the % It replaces the \texttt{facultyName} placeholder with the
% correct value and redefines the \texttt{abstractTitle}, % correct value and redefines the \texttt{abstractTitle} string in
% and \texttt{placeholders@abstract} strings in accordance with % accordance with the common usage at the faculty. The file also
% the common usage at the faculty. The file also defines the % defines the \texttt{bib@title} and \texttt{bib@pages} strings
% \texttt{bib@title} and \texttt{bib@pages} strings required by the % required by the |\thesis@blocks@bibEntry| block defined within
% |\thesis@blocks@bibEntry| block defined within the % the \texttt{style/mu/fithesis3-med.sty} style file.
% \texttt{style/mu/fithesis3-med.sty} style file.
% \iffalse % \iffalse
%<*mu/med> %<*mu/med>
% \fi\begin{macrocode} % \fi\begin{macrocode}
...@@ -188,7 +169,6 @@ ...@@ -188,7 +169,6 @@
\def\thesis@czech@abstractTitle{Anotace} \def\thesis@czech@abstractTitle{Anotace}
% Zástupné texty % Zástupné texty
\def\thesis@czech@placeholders@abstract{Text abstraktu}
\def\thesis@czech@facultyName{Lékařská fakulta} \def\thesis@czech@facultyName{Lékařská fakulta}
% Bibliografický záznam % Bibliografický záznam
...@@ -200,10 +180,9 @@ ...@@ -200,10 +180,9 @@
% This is the Czech locale file specific to the Faculty of % This is the Czech locale file specific to the Faculty of
% Informatics at the Masaryk University in Brno. % Informatics at the Masaryk University in Brno.
% It replaces the \texttt{facultyName} placeholder with the % It replaces the \texttt{facultyName} placeholder with the
% correct value and updates the \texttt{placeholders@assignment} % correct value and updates the \texttt{declaration} string in
% and \texttt{declaration} strings in accordance with the % accordance with the requirements of the faculty. The file also
% requirements of the faculty. The file also defines the % defines the \texttt{advisorSignature} string required by the
% \texttt{advisorSignature} string required by the
% |\thesis@blocks@titlePage| block defined within the % |\thesis@blocks@titlePage| block defined within the
% \texttt{style/mu/fithesis3-fi.sty} style file. % \texttt{style/mu/fithesis3-fi.sty} style file.
% \iffalse % \iffalse
...@@ -213,7 +192,7 @@ ...@@ -213,7 +192,7 @@
% Zástupné texty % Zástupné texty
\def\thesis@czech@facultyName{Fakulta informatiky} \def\thesis@czech@facultyName{Fakulta informatiky}
\def\thesis@czech@placeholders@assignment{Místo tohoto listu \def\thesis@czech@assignment{Místo tohoto listu
vložte kopie oficiálního podepsaného zadání práce a vložte kopie oficiálního podepsaného zadání práce a
prohlášení autora školního díla.} prohlášení autora školního díla.}
\def\thesis@czech@declaration{% \def\thesis@czech@declaration{%
...@@ -299,11 +278,10 @@ ...@@ -299,11 +278,10 @@
% It defines the private macros required by the % It defines the private macros required by the
% |\thesis@blocks@bibEntry| block defined within the % |\thesis@blocks@bibEntry| block defined within the
% \texttt{style/mu/fithesis3-sci.sty} style file. % \texttt{style/mu/fithesis3-sci.sty} style file.
% It also replaces the \texttt{facultyName} and % It also replaces the \texttt{facultyName} placeholder with the
% \texttt{placeholders@department} placeholders with the % correct value and redefines the \texttt{abstractTitle} and
% correct value and redefines the \texttt{abstractTitle}, % \texttt{declaration} strings in accordance with the formal
% \texttt{placeholders@abstract} and \texttt{declaration} strings % requirements of the faculty.
% in accordance with the formal requirements of the faculty.
% \iffalse % \iffalse
%<*mu/sci> %<*mu/sci>
% \fi\begin{macrocode} % \fi\begin{macrocode}
...@@ -311,8 +289,6 @@ ...@@ -311,8 +289,6 @@
% Zástupné texty % Zástupné texty
\def\thesis@czech@facultyName{Přírodovědecká fakulta} \def\thesis@czech@facultyName{Přírodovědecká fakulta}
\def\thesis@czech@placeholders@department{Název ústavu}
\def\thesis@czech@placeholders@abstract{Text abstraktu}
% Ostatní % Ostatní
\def\thesis@czech@abstractTitle{Abstrakt} \def\thesis@czech@abstractTitle{Abstrakt}
......
...@@ -7,20 +7,8 @@ ...@@ -7,20 +7,8 @@
\ProvidesFile{fithesis3/locale/english.def}[2015/04/18] \ProvidesFile{fithesis3/locale/english.def}[2015/04/18]
% Placeholders % Placeholders
\def\thesis@english@placeholders@title{Thesis Title} \def\thesis@english@universityName{University name}
\def\thesis@english@placeholders@keywords{keyword1, keyword2, ...}
\def\thesis@english@placeholders@abstract{Abstract text}
\def\thesis@english@placeholders@author{Author's name}
\def\thesis@english@placeholders@author@firstName{Name}
\def\thesis@english@placeholders@author@surname{Surname}
\def\thesis@english@placeholders@universityName{University name}
\def\thesis@english@facultyName{Faculty name} \def\thesis@english@facultyName{Faculty name}
\def\thesis@english@placeholders@advisor{%
\thesis@english@advisorTitle's name}
\def\thesis@english@placeholders@department{Department name}
\def\thesis@english@placeholders@programme{Study programme name}
\def\thesis@english@placeholders@field{The field of study}
\def\thesis@english@placeholders@id{Identifier}
\def\thesis@english@assignment{Replace this page with a copy \def\thesis@english@assignment{Replace this page with a copy
of the official signed thesis assignment.} of the official signed thesis assignment.}
\def\thesis@english@declaration{Declaration text ...} \def\thesis@english@declaration{Declaration text ...}
...@@ -56,8 +44,7 @@ ...@@ -56,8 +44,7 @@
% This is the English locale file specific to the Masaryk % This is the English locale file specific to the Masaryk
% University in Brno. It replaces the \texttt{universityName} % University in Brno. It replaces the \texttt{universityName}
% placeholder with the correct value and defines the % placeholder with the correct value and defines the
% \texttt{declaration}, \texttt{placeholders@id} and % \texttt{declaration} and \texttt{idTitle} strings.
% \texttt{idTitle} strings.
% \iffalse % \iffalse
%<*mu> %<*mu>
% \fi\begin{macrocode} % \fi\begin{macrocode}
...@@ -68,7 +55,6 @@ ...@@ -68,7 +55,6 @@
which I have worked out by my own. All sources, references and which I have worked out by my own. All sources, references and
literature used or excerpted during elaboration of this work are literature used or excerpted during elaboration of this work are
properly cited and listed in complete reference to the due source.} properly cited and listed in complete reference to the due source.}
\def\thesis@english@placeholders@id{UČO}
% Miscellaneous % Miscellaneous
\def\thesis@english@idTitle{UČO} \def\thesis@english@idTitle{UČO}
...@@ -96,7 +82,6 @@ ...@@ -96,7 +82,6 @@
\ProvidesFile{fithesis3/locale/mu/fsps/english.def}[2015/04/18] \ProvidesFile{fithesis3/locale/mu/fsps/english.def}[2015/04/18]
% Placeholders % Placeholders
\def\thesis@english@placeholders@field{The specialization name}
\def\thesis@english@facultyName{Faculty of Sports Studies} \def\thesis@english@facultyName{Faculty of Sports Studies}
% Miscellaneous % Miscellaneous
...@@ -106,8 +91,7 @@ ...@@ -106,8 +91,7 @@
% \fi\file{locale/mu/fss/english.def} % \fi\file{locale/mu/fss/english.def}
% This is the English locale file specific to the Faculty of Social % This is the English locale file specific to the Faculty of Social
% Studies at the Masaryk University in Brno. It replaces the % Studies at the Masaryk University in Brno. It replaces the
% \texttt{facultyName} and \texttt{placeholders@assignment} % \texttt{facultyName} string with the correct value.
% strings with the correct value.
% \iffalse % \iffalse
%<*mu/fss> %<*mu/fss>
% \fi\begin{macrocode} % \fi\begin{macrocode}
...@@ -164,8 +148,8 @@ ...@@ -164,8 +148,8 @@
% This is the English locale file specific to the Faculty of % This is the English locale file specific to the Faculty of
% Informatics at the Masaryk University in Brno. % Informatics at the Masaryk University in Brno.
% It replaces the \texttt{facultyName} placeholder with the % It replaces the \texttt{facultyName} placeholder with the
% correct value and updates the \texttt{placeholders@assignment} % correct value and updates the string in accordance with the
% string in accordance with the requirements of the faculty. % requirements of the faculty.
% The file also defines the \texttt{advisorSignature} string % The file also defines the \texttt{advisorSignature} string
% required by the |\thesis@blocks@titlePage| block defined % required by the |\thesis@blocks@titlePage| block defined
% within the \texttt{style/mu/fithesis3-fi.sty} style file. % within the \texttt{style/mu/fithesis3-fi.sty} style file.
......
...@@ -15,21 +15,8 @@ ...@@ -15,21 +15,8 @@
\ifthesis@woman a\fi} \ifthesis@woman a\fi}
% Zástupné texty % Zástupné texty
\def\thesis@slovak@placeholders@title{Názov práce}
\def\thesis@slovak@placeholders@keywords{kľúčové slovo 1,
kľúčové slovo 2, ...}
\def\thesis@slovak@placeholders@abstract{Text zhrnutie}
\def\thesis@slovak@placeholders@author{Meno autora}
\def\thesis@slovak@placeholders@author@firstName{Meno}
\def\thesis@slovak@placeholders@author@surname{Priezvisko}
\def\thesis@slovak@universityName{Názov univerzity} \def\thesis@slovak@universityName{Názov univerzity}
\def\thesis@slovak@facultyName{Názov fakulty} \def\thesis@slovak@facultyName{Názov fakulty}
\def\thesis@slovak@placeholders@advisor{Meno vedúceho}
\def\thesis@slovak@placeholders@department{Názov katedry}
\def\thesis@slovak@placeholders@programme{Názov študijného
programu}
\def\thesis@slovak@placeholders@field{Název študijného odboru}
\def\thesis@slovak@placeholders@id{Identifikátor}
\def\thesis@slovak@assignment{Namiesto tejto stránky vložte kópiu \def\thesis@slovak@assignment{Namiesto tejto stránky vložte kópiu
oficiálneho podpísaného zadania práce.} oficiálneho podpísaného zadania práce.}
\def\thesis@slovak@declaration{Text prehlásenie ...} \def\thesis@slovak@declaration{Text prehlásenie ...}
...@@ -77,8 +64,7 @@ ...@@ -77,8 +64,7 @@
% This is the Slovak locale file specific to the Masaryk % This is the Slovak locale file specific to the Masaryk
% University in Brno. It replaces the \texttt{universityName} % University in Brno. It replaces the \texttt{universityName}
% placeholder with the correct value and defines the % placeholder with the correct value and defines the
% \texttt{declaration}, \texttt{placeholders@id} and % \texttt{declaration} and \texttt{idTitle} strings.
% \texttt{idTitle} strings.
% \iffalse % \iffalse
%<*mu> %<*mu>
% \fi\begin{macrocode} % \fi\begin{macrocode}
...@@ -91,7 +77,6 @@ ...@@ -91,7 +77,6 @@
slovak@typeName@akuzativ} vypracoval% slovak@typeName@akuzativ} vypracoval%
\thesis@slovak@gender@koncovka\ samostatne len s~použitím \thesis@slovak@gender@koncovka\ samostatne len s~použitím
uvedenej literatúry a prameňov.} uvedenej literatúry a prameňov.}
\def\thesis@slovak@placeholders@id{UČO}
% Rôzne % Rôzne
\def\thesis@slovak@idTitle{UČO} \def\thesis@slovak@idTitle{UČO}
...@@ -101,9 +86,8 @@ ...@@ -101,9 +86,8 @@
% This is the Slovak locale file specific to the Faculty of Law at % This is the Slovak locale file specific to the Faculty of Law at
% the Masaryk University in Brno. It replaces the % the Masaryk University in Brno. It replaces the
% \texttt{facultyName} placeholder with the correct value and % \texttt{facultyName} placeholder with the correct value and
% replaces the \texttt{abstractTitle} and % replaces the \texttt{abstractTitle} string in accordance with
% \texttt{placeholders@abstract} strings in accordance with the % the requirements of the faculty.
% requirements of the faculty.
% \iffalse % \iffalse
%<*mu/law> %<*mu/law>
% \fi\begin{macrocode} % \fi\begin{macrocode}
...@@ -113,7 +97,6 @@ ...@@ -113,7 +97,6 @@
\def\thesis@slovak@abstractTitle{Abstrakt} \def\thesis@slovak@abstractTitle{Abstrakt}
% Zástupné texty % Zástupné texty
\def\thesis@slovak@placeholders@abstract{Text abstraktu}
\def\thesis@slovak@facultyName{Právnická fakulta Masarykovej \def\thesis@slovak@facultyName{Právnická fakulta Masarykovej
univerzity} univerzity}
% \end{macrocode}\iffalse % \end{macrocode}\iffalse
...@@ -122,15 +105,14 @@ ...@@ -122,15 +105,14 @@
% This is the Slovak locale file specific to the Faculty of Sports % This is the Slovak locale file specific to the Faculty of Sports
% Studies at the Masaryk University in Brno. It replaces the % Studies at the Masaryk University in Brno. It replaces the
% \texttt{facultyName} placeholder with the correct value and the % \texttt{facultyName} placeholder with the correct value and the
% \texttt{placeholders@field} and \texttt{fieldTitle} strings in % \texttt{fieldTitle} string in accordance with the common usage
% accordance with the common usage at the faculty. % at the faculty.
% \iffalse % \iffalse
%<*mu/fsps> %<*mu/fsps>
% \fi\begin{macrocode} % \fi\begin{macrocode}
\ProvidesFile{fithesis3/locale/mu/fsps/slovak.def}[2015/04/18] \ProvidesFile{fithesis3/locale/mu/fsps/slovak.def}[2015/04/18]
% Zástupné texty % Zástupné texty
\def\thesis@slovak@placeholders@field{Názov špecializácie}
\def\thesis@slovak@facultyName{Fakulta športových štúdií} \def\thesis@slovak@facultyName{Fakulta športových štúdií}
% Rôzne % Rôzne
...@@ -140,8 +122,7 @@ ...@@ -140,8 +122,7 @@
% \fi\file{locale/mu/fss/slovak.def} % \fi\file{locale/mu/fss/slovak.def}
% This is the Slovak locale file specific to the Faculty of Social % This is the Slovak locale file specific to the Faculty of Social
% Studies at the Masaryk University in Brno. It replaces the % Studies at the Masaryk University in Brno. It replaces the
% \texttt{facultyName} and \texttt{placeholders@assignment} % \texttt{facultyName} string with the correct value.
% strings with the correct value.
% \iffalse % \iffalse
%<*mu/fss> %<*mu/fss>
% \fi\begin{macrocode} % \fi\begin{macrocode}
...@@ -171,10 +152,10 @@ ...@@ -171,10 +152,10 @@
% This is the Slovak locale file specific to the Faculty of % This is the Slovak locale file specific to the Faculty of
% Medicine at the Masaryk University in Brno. % Medicine at the Masaryk University in Brno.
% It replaces the \texttt{facultyName} placeholder with the % It replaces the \texttt{facultyName} placeholder with the
% correct value and redefines the \texttt{abstractTitle}, % correct value and redefines the \texttt{abstractTitle}
% and \texttt{placeholders@abstract} strings in accordance % string in accordance with the common usage at the faculty.
% with the common usage at the faculty. The file also defines the % The file also defines the \texttt{bib@title} and
% \texttt{bib@title} and \texttt{bib@pages} strings required by the % \texttt{bib@pages} strings required by the
% |\thesis@blocks@bibEntry| block defined within the % |\thesis@blocks@bibEntry| block defined within the
% \texttt{style/mu/fithesis3-med.sty} style file. % \texttt{style/mu/fithesis3-med.sty} style file.
...@@ -187,7 +168,6 @@ ...@@ -187,7 +168,6 @@
\def\thesis@slovak@abstractTitle{Anotácie} \def\thesis@slovak@abstractTitle{Anotácie}
% Zástupné texty % Zástupné texty
\def\thesis@slovak@placeholders@abstract{Text abstraktu}
\def\thesis@slovak@facultyName{Lekárska fakulta} \def\thesis@slovak@facultyName{Lekárska fakulta}
% Bibliografický zoznam % Bibliografický zoznam
...@@ -199,9 +179,9 @@ ...@@ -199,9 +179,9 @@
% This is the Slovak locale file specific to the Faculty of % This is the Slovak locale file specific to the Faculty of
% Informatics at the Masaryk University in Brno. % Informatics at the Masaryk University in Brno.
% It replaces the \texttt{facultyName} placeholder with the % It replaces the \texttt{facultyName} placeholder with the
% correct value and updates the \texttt{placeholders@assignment} % correct value and updates the \texttt{declaration} string
% and \texttt{declaration} strings in accordance with the % in accordance with the requirements of the faculty.
% requirements of the faculty. The file also defines the % The file also defines the
% \texttt{advisorSignature} string required by the % \texttt{advisorSignature} string required by the
% |\thesis@blocks@titlePage| block defined within the % |\thesis@blocks@titlePage| block defined within the
% \texttt{style/mu/fithesis3-fi.sty} style file. % \texttt{style/mu/fithesis3-fi.sty} style file.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment