<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>Customisation &amp;mdash; Paul Sutton</title>
    <link>https://personaljournal.ca/paulsutton/tag:Customisation</link>
    <description>Personal Blog</description>
    <pubDate>Tue, 05 May 2026 16:21:51 +0000</pubDate>
    <item>
      <title>LaTeX - Customising the Overleaf / Scismic CV</title>
      <link>https://personaljournal.ca/paulsutton/latex-customising-the-overleaf-scismic-cv</link>
      <description>&lt;![CDATA[LaTeX - Customising the Overleaf / Scismic CV &#xA;&#xA;I made some modification to the Scismic CV template to make it suitable for my needs, however some of these modifications may be useful to others. &#xA;&#xA;Firstly the sectioning on this is excellent, especially if combined with lists&#xA;&#xA;\section{Education: The Open University}&#xA;\begin{itemize}&#xA;\item Certificate in Contemporary Science, Open University, 2012 &#xA;\end{itemize}&#xA;What is also useful is being able to comment out individual entries.  This is good if a specific course is not applicable to the post you are applying for.  To do this just place a % at the start of the line.&#xA;&#xA;%\item Planets: an introduction, (S196),                                2006&#xA;&#xA;This is fine, but what about whole sections such as a specific job or volunteer entry?&#xA;&#xA;Firstly add this to your preamble&#xA;\usepackage{comment} % allow comments&#xA;&#xA;Then add this before and after the section you want to remove&#xA;\begin{comment}&#xA;\end{comment} &#xA;The nice thing about this, is that by commenting these out&#xA;%\begin{comment}&#xA;%\end{comment} &#xA;The entry is restored.&#xA;&#xA;While not strictly needed you can add clickable urls in to your CV&#xA;\usepackage{hyperref} % allow urls in document&#xA;\hypersetup{&#xA;&#x9;colorlinks,&#xA;&#x9;citecolor=black,&#xA;&#x9;filecolor=black,&#xA;&#x9;linkcolor=black,&#xA;&#x9;urlcolor=black&#xA;} % set up hyperref&#xA;Goes in your preamble, while using the following makes a line of text a url which people can click,  use sparingly though. &#xA;&#xA;\url{http://your-url.co.uk/}&#xA;&#xA;I have also added page numbers, which can be useful. &#xA;&#xA;\usepackage{fancyhdr}&#xA;\usepackage{datetime}&#xA;&#xA;\fancyhf{}&#xA;\fancyfoot[R]{}&#xA;\fancyfoot[L]{\thepage}&#xA;\pagestyle{fancy}&#xA;&#xA;This is not perfect, but does work.  &#xA;&#xA;Hopefully these tips are helpful to people.   This template is really flexible and overleaf have quite a few very professional looking templates. [6] along with cover letter templates [7].&#xA;&#xA;I have added a section on jobs and employment to my forum [8].&#xA;&#xA;Links&#xA;&#xA;1 LaTeX Project&#xA;2 Learn LaTeX&#xA;3 Scismic&#xA;4 Overleaf&#xA;  5 Scismic&#39;s Recommended CV Template for Biotech and Pharma Jobs&#xA;6 Overleaf CV Templates&#xA;7 Overleaf cover letter templates&#xA;8 Tuxiversity Forum&#xA;&#xA;TAGS&#xA;&#xA;#LaTeX,#CV,#Overleaf,#Scismic,#Customisation&#xA;&#xA;a href=&#34;https://liberapay.com/PaulSutton/donate&#34;img alt=&#34;Donate using Liberapay&#34; src=&#34;https://liberapay.com/assets/widgets/donate.svg&#34;/a&#xA;&#xA;img src=&#34;https://socialhub.activitypub.rocks/uploads/default/original/1X/6aac842b7ff5c58385a02f3a131c259281be88c8.png&#34; target=&#34;_blank&#34; &#xA;&#xA;a rel=&#34;license&#34; href=&#34;http://creativecommons.org/licenses/by-sa/4.0/&#34;img alt=&#34;Creative Commons Licence&#34; style=&#34;border-width:0&#34; src=&#34;https://i.creativecommons.org/l/by-sa/4.0/88x31.png&#34; //abr /This work is licensed under a a rel=&#34;license&#34; href=&#34;http://creativecommons.org/licenses/by-sa/4.0/&#34;Creative Commons Attribution-ShareAlike 4.0 International License/a&#xA;&#xA;hr&#xD;&#xA;&#xD;&#xA;table&#xD;&#xA;thead&#xD;&#xA;trtda rel=&#34;me&#34; href=&#34;https://qoto.org/@zleap&#34;Mastodon/a/td&#xD;&#xA;tda href=&#34;https://wiki.ircnow.org/?n=Shelllabs.Intro&#34;ShellLabs/td&#xD;&#xA;tda href=&#34;https://joinmastodon.org/&#34;Join Mastodon/a/td/tr/thead/table&#xD;&#xA;center&#xD;&#xA;AI statement : b Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. /b&#xD;&#xA;/center&#xD;&#xA;&#xD;&#xA;a href=&#34;https://liberapay.com/PaulSutton/donate&#34;img alt=&#34;Donate using Liberapay&#34; src=&#34;https://liberapay.com/assets/widgets/donate.svg&#34;/a&#xD;&#xA;]]&gt;</description>
      <content:encoded><![CDATA[<p>LaTeX – Customising the Overleaf / Scismic CV</p>

<p>I made some modification to the Scismic CV template to make it suitable for my needs, however some of these modifications may be useful to others.</p>

<p>Firstly the sectioning on this is excellent, especially if combined with lists</p>

<pre><code>\section{Education: The Open University}
\begin{itemize}
\item Certificate in Contemporary Science, Open University, 2012 
\end{itemize}
</code></pre>

<p>What is also useful is being able to comment out individual entries.  This is good if a specific course is not applicable to the post you are applying for.  To do this just place a % at the start of the line.</p>

<pre><code>%\item Planets: an introduction, (S196),                                2006
</code></pre>

<p>This is fine, but what about whole sections such as a specific job or volunteer entry?</p>

<p>Firstly add this to your preamble</p>

<pre><code>\usepackage{comment} % allow comments
</code></pre>

<p>Then add this before and after the section you want to remove</p>

<pre><code>\begin{comment}
\end{comment} 
</code></pre>

<p>The nice thing about this, is that by commenting these out</p>

<pre><code>%\begin{comment}
%\end{comment} 
</code></pre>

<p>The entry is restored.</p>

<p>While not strictly needed you can add clickable urls in to your CV</p>

<pre><code>\usepackage{hyperref} % allow urls in document
\hypersetup{
	colorlinks,
	citecolor=black,
	filecolor=black,
	linkcolor=black,
	urlcolor=black
} % set up hyperref
</code></pre>

<p>Goes in your preamble, while using the following makes a line of text a url which people can click,  use sparingly though.</p>

<pre><code>\url{http://your-url.co.uk/}
</code></pre>

<p>I have also added page numbers, which can be useful.</p>

<pre><code>\usepackage{fancyhdr}
\usepackage{datetime}

\fancyhf{}
\fancyfoot[R]{}
\fancyfoot[L]{\thepage}
\pagestyle{fancy}
</code></pre>

<p>This is not perfect, but does work.</p>

<p>Hopefully these tips are helpful to people.   This template is really flexible and overleaf have quite a few very professional looking templates. [6] along with cover letter templates [7].</p>

<p>I have added a section on jobs and employment to my forum [8].</p>

<p><strong>Links</strong></p>

<p>1 <a href="https://www.latex-project.org/" rel="nofollow">LaTeX Project</a>
2 <a href="https://www.learnlatex.org/en/" rel="nofollow">Learn LaTeX</a>
3 <a href="https://www.scismic.com/" rel="nofollow">Scismic</a>
4 <a href="https://www.overleaf.com" rel="nofollow">Overleaf</a>
  5 <a href="https://www.overleaf.com/latex/templates/scismics-recommended-cv-template-for-biotech-and-pharma-jobs/hbnkjrjnnpjz" rel="nofollow">Scismic&#39;s Recommended CV Template for Biotech and Pharma Jobs</a>
6 <a href="https://www.overleaf.com/latex/templates/tagged/cv" rel="nofollow">Overleaf CV Templates</a>
7 <a href="https://www.overleaf.com/latex/templates?q=Cover+Letters" rel="nofollow">Overleaf cover letter templates</a>
8 <a href="https://forum.tuxiversity.org/" rel="nofollow">Tuxiversity Forum</a></p>

<p><strong>TAGS</strong></p>

<p><a href="/paulsutton/tag:LaTeX" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">LaTeX</span></a>,<a href="/paulsutton/tag:CV" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">CV</span></a>,<a href="/paulsutton/tag:Overleaf" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Overleaf</span></a>,<a href="/paulsutton/tag:Scismic" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Scismic</span></a>,<a href="/paulsutton/tag:Customisation" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Customisation</span></a></p>

<p><a href="https://liberapay.com/PaulSutton/donate" rel="nofollow"><img alt="Donate using Liberapay" src="https://liberapay.com/assets/widgets/donate.svg"></a></p>

<p><a href="https://torresjrjr.com/archive/2020-07-19-guide-to-the-fediverse" rel="nofollow"><img src="https://socialhub.activitypub.rocks/uploads/default/original/1X/6aac842b7ff5c58385a02f3a131c259281be88c8.png"></a></p>

<p><a href="http://creativecommons.org/licenses/by-sa/4.0/" rel="nofollow"><img alt="Creative Commons Licence" style="border-width:0" src="https://i.creativecommons.org/l/by-sa/4.0/88x31.png"/></a><br/>This work is licensed under a <a href="http://creativecommons.org/licenses/by-sa/4.0/" rel="nofollow">Creative Commons Attribution-ShareAlike 4.0 International License</a></p>

<hr>

<p><table>
<thead>
<tr><td><a href="https://qoto.org/@zleap" rel="nofollow">Mastodon</a></td>
<td><a href="https://wiki.ircnow.org/?n=Shelllabs.Intro" rel="nofollow">ShellLabs</td>
<td><a href="https://joinmastodon.org/" rel="nofollow">Join Mastodon</a></td></tr></thead></table>

AI statement : <b> Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. </b>
</p>

<p><a href="https://liberapay.com/PaulSutton/donate" rel="nofollow"><img alt="Donate using Liberapay" src="https://liberapay.com/assets/widgets/donate.svg"></a></p>
]]></content:encoded>
      <guid>https://personaljournal.ca/paulsutton/latex-customising-the-overleaf-scismic-cv</guid>
      <pubDate>Tue, 04 Jan 2022 07:30:00 +0000</pubDate>
    </item>
  </channel>
</rss>