From 23f496e99877085cc4c5ff04c5c36dc4c55c3936 Mon Sep 17 00:00:00 2001 From: Mohammad Akhlaghi Date: Mon, 30 Nov 2020 18:35:58 +0000 Subject: 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. --- tex/src/preamble-maneage.tex | 35 +++++++++++++++++++++++++++++++++++ tex/src/preamble-project.tex | 40 ++++++++++++++++++---------------------- 2 files changed, 53 insertions(+), 22 deletions(-) create mode 100644 tex/src/preamble-maneage.tex (limited to 'tex/src') 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 +% +%% 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 . + + + + + +%% 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 +% +%% 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 . + + + + + %% 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}}} -- cgit v1.2.1