Estou criando uma página inicial para vários exames e pretendo automatizá-la um pouco mais. No momento eu escrevo (ou melhor, copio e colo), uma tonelada de comandos no preâmbulo como segue:
\newcommand{\contact}{Lecturer name}
\newcommand{\date}{2019-07-12}
.
.
\settoggle{isVisit}{true}
E no meu documento principal eu o invoco escrevendo
\FrontpageUiT
Um exemplo mínimo é mostrado abaixo. Quero alterar o comando para poder usar a seguinte sintaxe
\FrontpageUiTsetup{
contact = Lecturer name,
date = 2019-07-12,
pages =,
% visit = Yes,
visitWhen = approximately 11
.
.
.
}
e invoque-o escrevendo
\FrontpageUiT
No documento principal. Eu tenho algumas necessidades básicas para o arquivo de configuração
- Se uma linha não estiver incluída na configuração (ou comentada). Essa linha não deveria existir na tabela impressa. Deve simplesmente ser ignorado/excluído.
- Se uma linha estiver em branco, ela deverá ser incluída em branco.
É possível criar uma função que possua um arquivo de configuração, com entradas nomeadas?
\documentclass{article}
\usepackage{etoolbox}
\usepackage{lastpage,hyperref}
\newtoggle{isVisit} \settoggle{isVisit}{true}
\newtoggle{showVisit} \settoggle{showVisit}{true}
\usepackage[utf8]{inputenc}
\newcommand{\courseCode}{MAT~--~2200}
\newcommand{\courseNameEnglish}{Differential Equations}
% Default time is 09:00 - 13:00 | Uncomment and change the line below \visif neccecary
% \newcommand{\examtime}{15:00--19:00}
\newcommand{\location}{Technical Studies 1}
\newcommand{\permittedAids}{Calculator}
\newcommand{\paper}{squares}
\newcommand{\pages}{} % Sets the total number of pages manually. Uncomment if neccecary
\newcommand{\contact}{John Doe}
\newcommand{\mobile}{}
\settoggle{isVisit}{false} % Uncomment this line if examinator / person in charge is visiting
\newcommand{\visitWhen}{ca. 11:00}
\settoggle{showVisit}{true} %Uncomment if unknown when visit
% \newcommand{\ExerciseNumber}{1}
\newcommand{\PublishedDate}{2018--09--25}% YEAR {dddd} MONTH {01 - 12} DAY {01 - 31}
% \Deadline{2018}{11}{27}% Has to be set, not visible if exam
\newcommand{\nonEmptyExist}[3]{%
\ifdef{#1}{%
\ifdefempty{#1}{#2}{#3}%%
}{%
#2%
}%
}
\newcommand{\FrontpageUiT}{%
\begin{tabular}{|p{0.2\textwidth}|p{0.728\textwidth}|}
\hline
Exam: & \courseCode, \courseNameEnglish\\ \hline
Date: & \PublishedDate \\ \hline
Time: & \nonEmptyExist{\examtime}{09:00 -- 13:00}{\examtime} \\ \hline
Location: & \location \\ \hline
Permitted aids & \permittedAids \\
\hline
Type of paper & \paper \\ \hline
Total pages & \bfseries\nonEmptyExist{\pages}{\pageref*{LastPage}}{\pages} \\ \hline
Contact & John Doe \\
Mobile & \mobile \\ \hline
\iftoggle{showVisit}{%
\multicolumn{2}{|l|}{Does lecturer visit \iftoggle{isVisit}{YES}{NO}}
\iftoggle{isVisit}{\\ \multicolumn{2}{|l|}{If yes: \visitWhen}}{} \\ \hline}{}%
\end{tabular}
}
\begin{document}
\FrontpageUiT
\end{document}
Responder1
A interface tradicional para isso seria ter um comando \location
que armazenasse algum valor \@location
(e o mesmo para todos os outros parâmetros). O comando de composição deve então usar os valores armazenados, se existirem. (Esta é a interface usada pelas classes padrão para \date
, author
, etc.)
Veja como você pode fazer isso (para uma pequena seleção de seus parâmetros):
\documentclass{article}
\usepackage{booktabs}
\makeatletter
% Provide commands.
\newcommand*\new@document@parameter[1]{%
% Check if names are taken.
\expandafter\newcommand\csname #1\endcsname{}%
\expandafter\newcommand\csname @#1\endcsname{}%
% Set up the parameter
\expandafter\edef\csname #1\endcsname##1{%
\gdef\expandafter\noexpand\csname @#1\endcsname{##1}%
}%
\expandafter\let\csname @#1\endcsname\@empty
}
\new@document@parameter{examtime}
\new@document@parameter{location}
\new@document@parameter{permittedaids}
\new@document@parameter{contact}
% Provide initial values.
\examtime{09:00\,--\,13:00}
% Provide names.
\newcommand*\examtimename{Time}
\newcommand*\locationname{Location}
\newcommand*\permittedaidsname{Permitted aids}
\newcommand*\contactname{Contact}
% The typesetting command.
\newcommand\FrontpageUiT{%
\noindent
\begin{tabular}{p{0.2\textwidth} p{\dimexpr 0.8\textwidth - 4\tabcolsep}}\toprule
\ifx\@examtime\@empty\else
\examtimename & \@examtime \\%
\fi
\ifx\@location\@empty\else
\locationname & \@location \\%
\fi
\ifx\@permittedaids\@empty\else
\permittedaidsname & \@permittedaids \\%
\fi
\ifx\@contact\@empty\else
\contactname & \@contact \\%
\fi
\bottomrule
\end{tabular}%
}
\makeatother
\location{Room~101}
\contact{Mr.~O'Brien}
\begin{document}
\FrontpageUiT
\end{document}
- Se você realmente deseja compor todos os parâmetros de forma idêntica, é claro que você pode adicionar uma macro para economizar digitação.
- Se você não se importa com a adaptabilidade da linguagem, é claro que você pode digitar os nomes dos parâmetros diretamente
\FrontpageUiT
em vez de definir uma macro para cada um. - Fiz algumas melhorias na sua mesa. Veja se você gosta deles.
Se você preferir uma interface de valor-chave, poderá conseguir isso facilmente usando qualquer um dos vários pacotes que fornecem essa funcionalidade. Com expl3
isso ficaria assim: Load xparse
, substitua a parte que fornece os comandos e valores iniciais por
\ExplSyntaxOn
% Provide keys.
\keys_define:nn { babylonia }
{
examtime .tl_set:N = \@examtime,
examtime .initial:n = {09:00\,--\,13:00},
location .tl_set:N = \@location,
permittedaids .tl_set:N = \@permittedaids,
contact .tl_set:N = \@contact,
}
% Provide key setting command.
\NewDocumentCommand\FrontpageUiTsetup{ m }{
\keys_set:nn { babylonia } { #1 }
}
\ExplSyntaxOff
e defina as teclas como
\FrontpageUiTsetup{
location = Room~101,
contact = Mr.~O'Brien,
}
(É claro que tudo poderia ser configurado e nomeado de uma maneira mais consistente com expl3
, mas a ideia é essa.)