my-cv

The LaTeX and BibTeX source for my curriculum vitae

https://github.com/bruceravel/my-cv

Science Score: 18.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
  • .zenodo.json file
  • DOI references
  • Academic publication links
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (8.2%) to scientific vocabulary
Last synced: 10 months ago · JSON representation ·

Repository

The LaTeX and BibTeX source for my curriculum vitae

Basic Info
Statistics
  • Stars: 11
  • Watchers: 1
  • Forks: 3
  • Open Issues: 0
  • Releases: 0
Created about 15 years ago · Last pushed over 1 year ago
Metadata Files
Readme Citation

README.org

#+TITLE: Bruce Ravel's CV

[[https://s3.amazonaws.com/BruceRavelCV/cv.pdf][A PDF copy of my CV]]

* Files:

  + ~cv.tex~: the LaTeX source for my CV
  + ~highlights.bib~: bib file with my favorite citations
  + ~allmine.bib~: bib file with all the rest of my citations
  + ~BR_smiling.jpg~: my photo
  + ~moderncv.purple.patch~: a patch to the Modern CV LaTeX class to add a color of my choice
  + ~mydoi.sty~: a patched copy of the standard ~doi.sty~

* Required downloads:

  + The Modern CV class: [[https://launchpad.net/moderncv]] 
     - Unpack the zip file into the current directory (or, I suppose,
       install it system-wide).  Really only need the ~.sty~ and
       ~.cls~ files in the current directory.
     - +Apply the patch: ~patch < moderncv.purple.patch~ to add the purple color theme+ 
       My purple theme has been included since version 0.13, so the patch is no longer necessary.
     - Update moderncv to 1.4!
  + etoolbox: [[http://www.ctan.org/tex-archive/macros/latex/contrib/etoolbox]]
     - Again, only need the ~etoolbox.sty~ file in the current directory.
  + I had to install Ubuntu's +texlive-latex-extra+ to get one of
    Modern CV's dependencies (~xargs.sty~).  This has since moved into
    the ~texlive-latex3~ package.

* The doi/hyperref problem

This happens:

 : Package hyperref Message: Driver (autodetected): hpdftex.
 : 
 : (/usr/share/texlive/texmf-dist/tex/latex/hyperref/hpdftex.def
 : (/usr/share/texlive/texmf-dist/tex/latex/oberdiek/rerunfilecheck.sty)))
 : 
 : ! LaTeX Error: Option clash for package hyperref.
 : 
 : See the LaTeX manual or LaTeX Companion for explanation.
 : Type  H   for immediate help.
 :  ...                                              
 :                                                   
 : l.49 \begin{document}

The solution is to edit the ~doi.sty~ file at line 36 to read

 : \RequirePackage[unicode]{hyperref}

i.e. add the =[unicode]=.

On my desktop at work, ~doi.sty~ is ~/usr/share/texlive/texmf-dist/tex/latex/doi/doi.sty~

The reason this is necessary is that =moderncv= imports the hyperref
package with the =[unicode]= argument.  The warning is about hyperref
being imported differently in the two packages.

Alternately, simply remove line 36, which works because hyperref is
already loaded.

~mydoi.cls~ is a copy of ~doi.sty~ version 2007/07/24 with line 36
commented out


Owner

  • Name: Bruce Ravel
  • Login: bruceravel
  • Kind: user
  • Location: Upton, NY

Citation (citations/analyze.gp)

## http://researchlibrary.bnl.gov/ --> Web of Knowledge --> Web of Science
## there search for Journal of Synchrotron Radiation and sort result
## by most citations

## the expgui article from APS News, May 2010
## http://www.aps.anl.gov/News/APS_News/Content/APS_NEWS_20100528.php
## at Web of Science, search for "expgui" in Journal of Applied
## Crystallography

set term qt 0 enhanced font 'Droid sans, 12'
#set term postscript color enhanced landscape solid font 'Arial,14'
#set out 'citations.ps'

set style line 1 linecolor rgb "blue" pointsize 1 pointtype 7
set style line 2 linecolor rgb "red"  pointsize 1 pointtype 9


count=system("head -1 analyze.txt | cut -d ' ' -f 7")
date=system("ls -l analyze.txt | cut -f 6,7 -d ' '")
#date=system("ls -l analyze.txt | cut -f 6,8 -d ' '")

ttl="citations of Athena/Artemis paper from JSR\n" . count . ' total citations'

set title ttl
set xlabel 'year'
set ylabel 'number of citations'
set xrange [2004.5:2025.5]
set yrange [:1400]
set boxwidth 0.2
set style fill solid
set key left top samplen 0.3

plot 'analyze.txt' using 1:2

plot 'analyze.txt' using 1:($1>2024 ? 1/0 : $2) with boxes ls 1 title 'yearly totals',\
     '' using 1:($2+50):2 with labels title '',\
     '' using 1:($1<2025 ? 1/0 : $2) with boxes ls 2 title 'as of '.date

GitHub Events

Total
  • Push event: 1
Last Year
  • Push event: 1