-
Notifications
You must be signed in to change notification settings - Fork 6
/
bibliometRics.Rtex
85 lines (63 loc) · 2.41 KB
/
bibliometRics.Rtex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
\documentclass{article}
\usepackage{graphicx}
\usepackage[utf8]{inputenc}
\usepackage{geometry}
\geometry{verbose,tmargin=3cm,bmargin=3cm,lmargin=3cm,rmargin=3cm}
\usepackage{listings}
\lstset{breaklines=true}
\usepackage{fancyhdr}
%% for inline R code: if the inline code is not correctly parsed, you will see a message
\newcommand{\rinline}[1]{SOMETHING WRONG WITH knitr}
%% begin.rcode setup, include=FALSE
% library(knitr)
% opts_chunk$set(fig.path='figure/latex-', cache.path='cache/latex-')
%% end.rcode
\begin{document}
%% begin.rcode bibdata, cache=FALSE, include=FALSE
% source('bibliometRics.R')
% quant <- read.baselines('BaselinePercentiles.csv')
% bib <- read.wos('FILENAME')
% x <- bibliometric(bib, quant, 'GEOSCIENCES')
% publist <- apply(cbind(bib$pubs,rank(bib,q=quant$GEOSCIENCES)),1,format_pub,au=bib$au)
%% end.rcode
\pagestyle{fancy}
\fancyhf{}
\rhead{\rinline{bib$ref}}
\lhead{\rinline{bib$au}}
\rfoot{Page \thepage}
\lfoot{\today}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}
\title{\rinline{bib$au} \\ \vspace{2 mm} {\large \rinline{bib$ref}}}
\date{}
\maketitle
%\section*{\rinline{bib$au}}
% Tratamos de cuantificar: la cantidad (pubs, pubs_year), la calidad / impacto (pubs_lead, hndx, hndx_year, cit_tot, cit_year, cit_art, ifact2, ifact5), y las aportaciones singulares (i10, i25, i50, cit_max).
\section*{Indicators}
%% begin.rcode biblioplot, cairo-scatter, echo=FALSE, message=FALSE, warning=FALSE, dev='cairo_pdf', fig.width=12, fig.height=4, out.width='1.0\\textwidth'
% biblioplot(bib, q=quant$GEOSCIENCES)
%% end.rcode
%\section*{Table}
\begin{table}[h]
\centering
\begin{tabular}{llll}
\hline
Publications (total) & Pubs. (as lead author) & Years & Pubs. per year \\
\rinline{x$pubs} & \rinline{x$lead} & \rinline{x$years} & \rinline{x$pubs_year} \\
\hline
Citations (total) & Citations per year & Citations per pub & Citations (highest pub) \\
\rinline{x$cit_tot} & \rinline{x$cit_year} & \rinline{x$cit_art} & \rinline{x$cit_max} \\
\hline
h-index & h-index per year & g-index & g-index per year \\
\rinline{x$hin} & \rinline{x$hin_year} & \rinline{x$gin} & \rinline{x$gin_year} \\
\hline
Pubs $>$q0.9 & Pubs $>$q0.9 (as lead) & i-score & i-score (as lead) \\
\rinline{x$pubs09} & \rinline{x$pubs09_lead} & \rinline{x$iscore} & \rinline{x$iscore_lead} \\
\hline
\end{tabular}
\end{table}
\section*{Publication list}
\begin{enumerate}
\rinline{publist}
\end{enumerate}
\end{document}