aboutsummaryrefslogtreecommitdiff
path: root/tex/src
diff options
context:
space:
mode:
authorMohammad Akhlaghi <mohammad@akhlaghi.org>2020-11-30 18:35:58 +0000
committerMohammad Akhlaghi <mohammad@akhlaghi.org>2020-11-30 18:35:58 +0000
commit23f496e99877085cc4c5ff04c5c36dc4c55c3936 (patch)
tree36fdf505c7365ad392177fb9cf732ff3d7c6fd4f /tex/src
parent0c91e703a72f4b26f2e7924fac97aa35be98b923 (diff)
New tex/src/preamble-maneage.tex for Maneage-only TeX customization
Until now, the Maneage-only features of LaTeX where mixed with 'tex/src/preamble-project.tex' (which is reserved for project-specific things). But we want to move the highlighting features (that have started here) into the core Maneage branch, so its best for these Maneage-specific features to be in a Maneage-specific preamble file. With this commit, a hew 'tex/src/preamble-maneage.tex' has been created for this purpose and the highlighting modes have been put in there. In the process, I noticed that 'tex/src/preamble-project.tex' doesn't have a copyright! This has been corrected.
Diffstat (limited to 'tex/src')
-rw-r--r--tex/src/preamble-maneage.tex35
-rw-r--r--tex/src/preamble-project.tex40
2 files changed, 53 insertions, 22 deletions
diff --git a/tex/src/preamble-maneage.tex b/tex/src/preamble-maneage.tex
new file mode 100644
index 0000000..81d8535
--- /dev/null
+++ b/tex/src/preamble-maneage.tex
@@ -0,0 +1,35 @@
+%% Preamble for Maneage-related features.
+%
+%% Copyright (C) 2020 Mohammad Akhlaghi <mohammad@akhlaghi.org>
+%
+%% This LaTeX file is part of Maneage. Maneage is free software: you can
+%% redistribute it and/or modify it under the terms of the GNU General
+%% Public License as published by the Free Software Foundation, either
+%% version 3 of the License, or (at your option) any later version.
+%
+%% Maneage is distributed in the hope that it will be useful, but WITHOUT
+%% ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+%% FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+%% for more details. See <http://www.gnu.org/licenses/>.
+
+
+
+
+
+%% Highlighting
+%% ------------
+%
+%% Maneage feature for highlighting changes they can be set activated
+%% directly on the command-line with the '--highlight-new' or
+%% '--highlight-notes' options
+\ifdefined\highlightnew
+\newcommand{\new}[1]{\textcolor{green!50!black}{#1}}
+\else
+\newcommand{\new}[1]{\textcolor{black}{#1}}
+\fi
+
+\ifdefined\highlightnotes
+\newcommand{\tonote}[1]{\textcolor{red!60!black}{[#1]}}
+\else
+\newcommand{\tonote}[1]{{}}
+\fi
diff --git a/tex/src/preamble-project.tex b/tex/src/preamble-project.tex
index 5caf976..4382485 100644
--- a/tex/src/preamble-project.tex
+++ b/tex/src/preamble-project.tex
@@ -1,3 +1,21 @@
+%% Settings specific to this project (beyond the journal's style).
+%
+%% Copyright (C) 2020 Mohammad Akhlaghi <mohammad@akhlaghi.org>
+%
+%% This LaTeX file is part of Maneage. Maneage is free software: you can
+%% redistribute it and/or modify it under the terms of the GNU General
+%% Public License as published by the Free Software Foundation, either
+%% version 3 of the License, or (at your option) any later version.
+%
+%% Maneage is distributed in the hope that it will be useful, but WITHOUT
+%% ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+%% FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+%% for more details. See <http://www.gnu.org/licenses/>.
+
+
+
+
+
%% Import graphics
\usepackage{graphicx}
@@ -27,7 +45,6 @@
\usepackage{multibib}
\newcites{appendix}{Bibliography}
-
%% To have typewriter font
\usepackage{courier}
@@ -55,27 +72,6 @@
\pretocmd\lst@makecaption{\noindent{\rule{\linewidth}{1pt}}}{}{}
\makeatother
-
-
-
-%% Maneage feature for highlighting changes they can be set activated
-%% directly on the command-line with the '--highlight-new' or
-%% '--highlight-notes' options
-\ifdefined\highlightnew
-\newcommand{\new}[1]{\textcolor{green!50!black}{#1}}
-\else
-\newcommand{\new}[1]{\textcolor{black}{#1}}
-\fi
-
-\ifdefined\highlightnotes
-\newcommand{\tonote}[1]{\textcolor{red!60!black}{[#1]}}
-\else
-\newcommand{\tonote}[1]{{}}
-\fi
-
-
-
-
%% Custom macros
\newcommand{\inlinecode}[1]{\textcolor{blue!35!black}{\texttt{#1}}}