From f0622d8a21b15c4c9374ffc50a20a14056d42e09 Mon Sep 17 00:00:00 2001 From: Mohammad Akhlaghi Date: Wed, 22 Apr 2020 04:49:16 +0100 Subject: Implemented Konrad's suggestions, minor edits here and there Today Konrad made the following suggestions after reading through the paper (created from Commit 1ac5c12). Thanks a lot Konrad ;-). I tried to address them all in this commit. Afterwards, while looking over the corrected parts, some minor edits came up to me to remove redundant parts and add extra points where it helps. In particular to be able to print the International Phonetic Alphabet (IPA), I had to include the LaTeX `TIPA' package, but it was interesting to see that it was already available in the project as a dependency of another package we loaded. --- tex/src/figure-src-inputconf.tex | 2 +- tex/src/preamble-style.tex | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) (limited to 'tex') diff --git a/tex/src/figure-src-inputconf.tex b/tex/src/figure-src-inputconf.tex index fc3315d..1a3b31c 100644 --- a/tex/src/figure-src-inputconf.tex +++ b/tex/src/figure-src-inputconf.tex @@ -1,4 +1,4 @@ -\begin{tcolorbox}[title=\inlinecode{\textcolor{white}{INPUT.conf}}\hfill\textcolor{white}{(simplified)}] +\begin{tcolorbox}[title=\inlinecode{\textcolor{white}{INPUT.conf}}] \footnotesize \texttt{\mkvar{MK20DATA} = menke20.xlsx}\\ \texttt{\mkvar{MK20MD5}{ } = 8e4eee64791f351fec58680126d558a0}\\ diff --git a/tex/src/preamble-style.tex b/tex/src/preamble-style.tex index 82f9714..592d97e 100644 --- a/tex/src/preamble-style.tex +++ b/tex/src/preamble-style.tex @@ -145,6 +145,9 @@ %% Custom macros \newcommand{\inlinecode}[1]{\textcolor{blue!35!black}{\texttt{#1}}} +%% To use International Phonetic Alphabet (IPA) +\usepackage{tipa} + %% Example Makefile macros \newcommand{\mkcomment}[1]{\textcolor{red!70!white}{\# #1}} \newcommand{\mkvar}[1]{\textcolor{orange!40!black}{#1}} -- cgit v1.2.1