maestria-investigacion/bibliografia/bibliografia.html

1856 lines
73 KiB
HTML

<!DOCTYPE HTML>
<html>
<head>
<title>JabRef references</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript">
<!--
// QuickSearch script for JabRef HTML export
// Version: 3.0
//
// Copyright (c) 2006-2011, Mark Schenk
//
// This software is distributed under a Creative Commons Attribution 3.0 License
// http://creativecommons.org/licenses/by/3.0/
//
// Features:
// - intuitive find-as-you-type searching
// ~ case insensitive
// ~ ignore diacritics (optional)
//
// - search with/without Regular Expressions
// - match BibTeX key
//
// Search settings
var searchAbstract = true; // search in abstract
var searchReview = true; // search in review
var noSquiggles = true; // ignore diacritics when searching
var searchRegExp = false; // enable RegExp searches
if (window.addEventListener) {
window.addEventListener("load",initSearch,false); }
else if (window.attachEvent) {
window.attachEvent("onload", initSearch); }
function initSearch() {
// check for quick search table and searchfield
if (!document.getElementById('qs_table')||!document.getElementById('quicksearch')) { return; }
// load all the rows and sort into arrays
loadTableData();
//find the query field
qsfield = document.getElementById('qs_field');
// previous search term; used for speed optimisation
prevSearch = '';
//find statistics location
stats = document.getElementById('stat');
setStatistics(-1);
// set up preferences
initPreferences();
// shows the searchfield
document.getElementById('quicksearch').style.display = 'block';
document.getElementById('qs_field').onkeyup = quickSearch;
}
function loadTableData() {
// find table and appropriate rows
searchTable = document.getElementById('qs_table');
var allRows = searchTable.getElementsByTagName('tbody')[0].getElementsByTagName('tr');
// split all rows into entryRows and infoRows (e.g. abstract, review, bibtex)
entryRows = new Array(); infoRows = new Array(); absRows = new Array(); revRows = new Array();
// get data from each row
entryRowsData = new Array(); absRowsData = new Array(); revRowsData = new Array();
BibTeXKeys = new Array();
for (var i=0, k=0, j=0; i<allRows.length;i++) {
if (allRows[i].className.match(/entry/)) {
entryRows[j] = allRows[i];
entryRowsData[j] = stripDiacritics(getTextContent(allRows[i]));
allRows[i].id ? BibTeXKeys[j] = allRows[i].id : allRows[i].id = 'autokey_'+j;
j ++;
} else {
infoRows[k++] = allRows[i];
// check for abstract/review
if (allRows[i].className.match(/abstract/)) {
absRows.push(allRows[i]);
absRowsData[j-1] = stripDiacritics(getTextContent(allRows[i]));
} else if (allRows[i].className.match(/review/)) {
revRows.push(allRows[i]);
revRowsData[j-1] = stripDiacritics(getTextContent(allRows[i]));
}
}
}
//number of entries and rows
numEntries = entryRows.length;
numInfo = infoRows.length;
numAbs = absRows.length;
numRev = revRows.length;
}
function quickSearch(){
tInput = qsfield;
if (tInput.value.length == 0) {
showAll();
setStatistics(-1);
qsfield.className = '';
return;
} else {
t = stripDiacritics(tInput.value);
if(!searchRegExp) { t = escapeRegExp(t); }
// only search for valid RegExp
try {
textRegExp = new RegExp(t,"i");
closeAllInfo();
qsfield.className = '';
}
catch(err) {
prevSearch = tInput.value;
qsfield.className = 'invalidsearch';
return;
}
}
// count number of hits
var hits = 0;
// start looping through all entry rows
for (var i = 0; cRow = entryRows[i]; i++){
// only show search the cells if it isn't already hidden OR if the search term is getting shorter, then search all
if(cRow.className.indexOf('noshow')==-1 || tInput.value.length <= prevSearch.length){
var found = false;
if (entryRowsData[i].search(textRegExp) != -1 || BibTeXKeys[i].search(textRegExp) != -1){
found = true;
} else {
if(searchAbstract && absRowsData[i]!=undefined) {
if (absRowsData[i].search(textRegExp) != -1){ found=true; }
}
if(searchReview && revRowsData[i]!=undefined) {
if (revRowsData[i].search(textRegExp) != -1){ found=true; }
}
}
if (found){
cRow.className = 'entry show';
hits++;
} else {
cRow.className = 'entry noshow';
}
}
}
// update statistics
setStatistics(hits)
// set previous search value
prevSearch = tInput.value;
}
// Strip Diacritics from text
// http://stackoverflow.com/questions/990904/javascript-remove-accents-in-strings
// String containing replacement characters for stripping accents
var stripstring =
'AAAAAAACEEEEIIII'+
'DNOOOOO.OUUUUY..'+
'aaaaaaaceeeeiiii'+
'dnooooo.ouuuuy.y'+
'AaAaAaCcCcCcCcDd'+
'DdEeEeEeEeEeGgGg'+
'GgGgHhHhIiIiIiIi'+
'IiIiJjKkkLlLlLlL'+
'lJlNnNnNnnNnOoOo'+
'OoOoRrRrRrSsSsSs'+
'SsTtTtTtUuUuUuUu'+
'UuUuWwYyYZzZzZz.';
function stripDiacritics(str){
if(noSquiggles==false){
return str;
}
var answer='';
for(var i=0;i<str.length;i++){
var ch=str[i];
var chindex=ch.charCodeAt(0)-192; // Index of character code in the strip string
if(chindex>=0 && chindex<stripstring.length){
// Character is within our table, so we can strip the accent...
var outch=stripstring.charAt(chindex);
// ...unless it was shown as a '.'
if(outch!='.')ch=outch;
}
answer+=ch;
}
return answer;
}
// http://stackoverflow.com/questions/3446170/escape-string-for-use-in-javascript-regex
// NOTE: must escape every \ in the export code because of the JabRef Export...
function escapeRegExp(str) {
return str.replace(/[-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g, "\\$&");
}
function toggleInfo(articleid,info) {
var entry = document.getElementById(articleid);
var abs = document.getElementById('abs_'+articleid);
var rev = document.getElementById('rev_'+articleid);
var bib = document.getElementById('bib_'+articleid);
if (abs && info == 'abstract') {
abs.className.indexOf('noshow') == -1?abs.className = 'abstract noshow':abs.className = 'abstract show';
} else if (rev && info == 'review') {
rev.className.indexOf('noshow') == -1?rev.className = 'review noshow':rev.className = 'review show';
} else if (bib && info == 'bibtex') {
bib.className.indexOf('noshow') == -1?bib.className = 'bibtex noshow':bib.className = 'bibtex show';
} else {
return;
}
// check if one or the other is available
var revshow; var absshow; var bibshow;
(abs && abs.className.indexOf('noshow') == -1)? absshow = true: absshow = false;
(rev && rev.className.indexOf('noshow') == -1)? revshow = true: revshow = false;
(bib && bib.className.indexOf('noshow') == -1)? bibshow = true: bibshow = false;
// highlight original entry
if(entry) {
if (revshow || absshow || bibshow) {
entry.className = 'entry highlight show';
} else {
entry.className = 'entry show';
}
}
// When there's a combination of abstract/review/bibtex showing, need to add class for correct styling
if(absshow) {
(revshow||bibshow)?abs.className = 'abstract nextshow':abs.className = 'abstract';
}
if (revshow) {
bibshow?rev.className = 'review nextshow': rev.className = 'review';
}
}
function setStatistics (hits) {
if(hits < 0) { hits=numEntries; }
if(stats) { stats.firstChild.data = hits + '/' + numEntries}
}
function getTextContent(node) {
// Function written by Arve Bersvendsen
// http://www.virtuelvis.com
if (node.nodeType == 3) {
return node.nodeValue;
} // text node
if (node.nodeType == 1 && node.className != "infolinks") { // element node
var text = [];
for (var chld = node.firstChild;chld;chld=chld.nextSibling) {
text.push(getTextContent(chld));
}
return text.join("");
} return ""; // some other node, won't contain text nodes.
}
function showAll(){
closeAllInfo();
for (var i = 0; i < numEntries; i++){ entryRows[i].className = 'entry show'; }
}
function closeAllInfo(){
for (var i=0; i < numInfo; i++){
if (infoRows[i].className.indexOf('noshow') ==-1) {
infoRows[i].className = infoRows[i].className + ' noshow';
}
}
}
function clearQS() {
qsfield.value = '';
showAll();
}
function redoQS(){
showAll();
quickSearch(qsfield);
}
function updateSetting(obj){
var option = obj.id;
var checked = obj.value;
switch(option)
{
case "opt_searchAbs":
searchAbstract=!searchAbstract;
redoQS();
break;
case "opt_searchRev":
searchReview=!searchReview;
redoQS();
break;
case "opt_useRegExp":
searchRegExp=!searchRegExp;
redoQS();
break;
case "opt_noAccents":
noSquiggles=!noSquiggles;
loadTableData();
redoQS();
break;
}
}
function initPreferences(){
if(searchAbstract){document.getElementById("opt_searchAbs").checked = true;}
if(searchReview){document.getElementById("opt_searchRev").checked = true;}
if(noSquiggles){document.getElementById("opt_noAccents").checked = true;}
if(searchRegExp){document.getElementById("opt_useRegExp").checked = true;}
if(numAbs==0) {document.getElementById("opt_searchAbs").parentNode.style.display = 'none';}
if(numRev==0) {document.getElementById("opt_searchRev").parentNode.style.display = 'none';}
}
function toggleSettings(){
var togglebutton = document.getElementById('showsettings');
var settings = document.getElementById('settings');
if(settings.className == "hidden"){
settings.className = "show";
togglebutton.innerText = "close settings";
togglebutton.textContent = "close settings";
}else{
settings.className = "hidden";
togglebutton.innerText = "settings...";
togglebutton.textContent = "settings...";
}
}
-->
</script>
<style type="text/css">
body { background-color: white; font-family: Arial, sans-serif; font-size: 13px; line-height: 1.2; padding: 1em; color: #2E2E2E; width: 50em; margin: auto auto; }
form#quicksearch { width: auto; border-style: solid; border-color: gray; border-width: 1px 0px; padding: 0.7em 0.5em; display:none; position:relative; }
span#searchstat {padding-left: 1em;}
div#settings { margin-top:0.7em; /* border-bottom: 1px transparent solid; background-color: #efefef; border: 1px grey solid; */ }
div#settings ul {margin: 0; padding: 0; }
div#settings li {margin: 0; padding: 0 1em 0 0; display: inline; list-style: none; }
div#settings li + li { border-left: 2px #efefef solid; padding-left: 0.5em;}
div#settings input { margin-bottom: 0px;}
div#settings.hidden {display:none;}
#showsettings { border: 1px grey solid; padding: 0 0.5em; float:right; line-height: 1.6em; text-align: right; }
#showsettings:hover { cursor: pointer; }
.invalidsearch { background-color: red; }
input[type="button"] { background-color: #efefef; border: 1px #2E2E2E solid;}
table { border: 1px gray none; width: 100%; empty-cells: show; border-spacing: 0em 0.1em; margin: 1em 0em; }
th, td { border: none; padding: 0.5em; vertical-align: top; text-align: justify; }
td a { color: navy; text-decoration: none; }
td a:hover { text-decoration: underline; }
tr.noshow { display: none;}
tr.highlight td { background-color: #EFEFEF; border-top: 2px #2E2E2E solid; font-weight: bold; }
tr.abstract td, tr.review td, tr.bibtex td { background-color: #EFEFEF; text-align: justify; border-bottom: 2px #2E2E2E solid; }
tr.nextshow td { border-bottom-style: none; }
tr.bibtex pre { width: 100%; overflow: auto; white-space: pre-wrap;}
p.infolinks { margin: 0.3em 0em 0em 0em; padding: 0px; }
@media print {
p.infolinks, #qs_settings, #quicksearch, t.bibtex { display: none !important; }
tr { page-break-inside: avoid; }
}
</style>
</head>
<body>
<form action="" id="quicksearch">
<input type="text" id="qs_field" autocomplete="off" placeholder="Type to search..." /> <input type="button" onclick="clearQS()" value="clear" />
<span id="searchstat">Matching entries: <span id="stat">0</span></span>
<div id="showsettings" onclick="toggleSettings()">settings...</div>
<div id="settings" class="hidden">
<ul>
<li><input type="checkbox" class="search_setting" id="opt_searchAbs" onchange="updateSetting(this)"><label for="opt_searchAbs"> include abstract</label></li>
<li><input type="checkbox" class="search_setting" id="opt_searchRev" onchange="updateSetting(this)"><label for="opt_searchRev"> include review</label></li>
<li><input type="checkbox" class="search_setting" id="opt_useRegExp" onchange="updateSetting(this)"><label for="opt_useRegExp"> use RegExp</label></li>
<li><input type="checkbox" class="search_setting" id="opt_noAccents" onchange="updateSetting(this)"><label for="opt_noAccents"> ignore accents</label></li>
</ul>
</div>
</form>
<table id="qs_table" border="1">
<tbody>
<tr id="althusser1970a" class="entry">
<td>Althusser L (1970), <i>"Ideología y aparatos ideológicos del Estado"</i>
<p class="infolinks"> [<a href="javascript:toggleInfo('althusser1970a','bibtex')">BibTeX</a>] [<a href="http://libgen.io/search.php?req=aparatos+ideol%C3%B3gicos+del+estado&lg_topic=libgen&open=0&view=simple&res=25&phrase=1&column=def" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_althusser1970a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@book{althusser1970a,
author = {Althusser, Louis},
title = {Ideología y aparatos ideológicos del Estado},
year = {1970},
url = {http://libgen.io/search.php?req=aparatos+ideol%C3%B3gicos+del+estado&amp;lg_topic=libgen&amp;open=0&amp;view=simple&amp;res=25&amp;phrase=1&amp;column=def}
}
</pre></td>
</tr>
<tr id="arkaute2008a" class="entry">
<td>Arkaute NR (2008), <i>"Propiedad intelectual, nuevas tecnologías y libre acceso a la cultura"</i> Centro Cultural de España en México — Universidad de las Américas Puebla.
<p class="infolinks"> [<a href="javascript:toggleInfo('arkaute2008a','bibtex')">BibTeX</a>] [<a href="https://www.academia.edu/2057461/Propiedad_intelectual_nuevas_tecnolog%C3%ADas_y_libre_acceso_a_la_cultura_-_Alberto_L%C3%B3pez_Cuenca_Eduardo_Ram%C3%ADrez_Pedrajo_coordinadores_" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_arkaute2008a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@inbook{arkaute2008a,
author = {Arkaute, Natxo Rodríguez},
editor = {López, Albert and Ramírez, Eduardo},
title = {Propiedad intelectual, nuevas tecnologías y libre acceso a la cultura},
publisher = {Centro Cultural de España en México — Universidad de las Américas Puebla},
year = {2008},
url = {https://www.academia.edu/2057461/Propiedad_intelectual_nuevas_tecnolog%C3%ADas_y_libre_acceso_a_la_cultura_-_Alberto_L%C3%B3pez_Cuenca_Eduardo_Ram%C3%ADrez_Pedrajo_coordinadores_}
}
</pre></td>
</tr>
<tr id="arteaga2008a" class="entry">
<td>Arteaga C (2008), <i>"Propiedad intelectual, nuevas tecnologías y libre acceso a la cultura"</i> Centro Cultural de España en México — Universidad de las Américas Puebla.
<p class="infolinks"> [<a href="javascript:toggleInfo('arteaga2008a','bibtex')">BibTeX</a>] [<a href="https://www.academia.edu/2057461/Propiedad_intelectual_nuevas_tecnolog%C3%ADas_y_libre_acceso_a_la_cultura_-_Alberto_L%C3%B3pez_Cuenca_Eduardo_Ram%C3%ADrez_Pedrajo_coordinadores_" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_arteaga2008a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@inbook{arteaga2008a,
author = {Arteaga, Carmen},
editor = {López, Albert and Ramírez, Eduardo},
title = {Propiedad intelectual, nuevas tecnologías y libre acceso a la cultura},
publisher = {Centro Cultural de España en México — Universidad de las Américas Puebla},
year = {2008},
url = {https://www.academia.edu/2057461/Propiedad_intelectual_nuevas_tecnolog%C3%ADas_y_libre_acceso_a_la_cultura_-_Alberto_L%C3%B3pez_Cuenca_Eduardo_Ram%C3%ADrez_Pedrajo_coordinadores_}
}
</pre></td>
</tr>
<tr id="barlow2016a" class="entry">
<td>Barlow JP (2016), <i>"¿Propiedad intelectual? Una recopilación de ensayos críticos"</i> Perro Triste.
<p class="infolinks"> [<a href="javascript:toggleInfo('barlow2016a','bibtex')">BibTeX</a>] [<a href="https://github.com/ColectivoPerroTriste/Ebooks/blob/master/Colecci%C3%B3n%20Delta/Libros/Propiedad%20intelectual/PropiedadIntelectual.epub" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_barlow2016a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@inbook{barlow2016a,
author = {Barlow, John Perry},
title = {¿Propiedad intelectual? Una recopilación de ensayos críticos},
publisher = {Perro Triste},
year = {2016},
url = {https://github.com/ColectivoPerroTriste/Ebooks/blob/master/Colecci%C3%B3n%20Delta/Libros/Propiedad%20intelectual/PropiedadIntelectual.epub}
}
</pre></td>
</tr>
<tr id="barron2012a" class="entry">
<td>Barron A (2012), <i>"Kant, Copyright and Communicative Freedom"</i>, Law and Philosophy. Vol. 31(1), pp. 1-48.
<p class="infolinks"> [<a href="javascript:toggleInfo('barron2012a','bibtex')">BibTeX</a>] [<a href="http://download.springer.com/static/pdf/141/art%253A10.1007%252Fs10982-011-9114-1.pdf?originUrl=http%3A%2F%2Flink.springer.com%2Farticle%2F10.1007%2Fs10982-011-9114-1&token2=exp=1487703458~acl=%2Fstatic%2Fpdf%2F141%2Fart%25253A10.1007%25252Fs10982-011-9114-1.pdf%3ForiginUrl%3Dhttp%253A%252F%252Flink.springer.com%252Farticle%252F10.1007%252Fs10982-011-9114-1*~hmac=dd161f43b747b675a0cd1b99a74a449f45eb77031fe27bdcbde4c5191e6fd9f7" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_barron2012a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@article{barron2012a,
author = {Barron, Anne},
title = {Kant, Copyright and Communicative Freedom},
journal = {Law and Philosophy},
year = {2012},
volume = {31},
number = {1},
pages = {1--48},
url = {http://download.springer.com/static/pdf/141/art%253A10.1007%252Fs10982-011-9114-1.pdf?originUrl=http%3A%2F%2Flink.springer.com%2Farticle%2F10.1007%2Fs10982-011-9114-1&amp;token2=exp=1487703458&nbsp;acl=%2Fstatic%2Fpdf%2F141%2Fart%25253A10.1007%25252Fs10982-011-9114-1.pdf%3ForiginUrl%3Dhttp%253A%252F%252Flink.springer.com%252Farticle%252F10.1007%252Fs10982-011-9114-1*&nbsp;hmac=dd161f43b747b675a0cd1b99a74a449f45eb77031fe27bdcbde4c5191e6fd9f7}
}
</pre></td>
</tr>
<tr id="barthes1968a" class="entry">
<td>Barthes R (1968), <i>"La muerte del autor"</i>
<p class="infolinks"> [<a href="javascript:toggleInfo('barthes1968a','bibtex')">BibTeX</a>] [<a href="http://www.cubaliteraria.cu/revista/laletradelescriba/n51/articulo-4.html" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_barthes1968a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@booklet{barthes1968a,
author = {Barthes, Roland},
title = {La muerte del autor},
year = {1968},
url = {http://www.cubaliteraria.cu/revista/laletradelescriba/n51/articulo-4.html}
}
</pre></td>
</tr>
<tr id="boeta2008a" class="entry">
<td>Boeta SA (2008), <i>"Propiedad intelectual, nuevas tecnologías y libre acceso a la cultura"</i> Centro Cultural de España en México — Universidad de las Américas Puebla.
<p class="infolinks"> [<a href="javascript:toggleInfo('boeta2008a','bibtex')">BibTeX</a>] [<a href="https://www.academia.edu/2057461/Propiedad_intelectual_nuevas_tecnolog%C3%ADas_y_libre_acceso_a_la_cultura_-_Alberto_L%C3%B3pez_Cuenca_Eduardo_Ram%C3%ADrez_Pedrajo_coordinadores_" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_boeta2008a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@inbook{boeta2008a,
author = {Boeta, Sergio Augusto},
editor = {López, Albert and Ramírez, Eduardo},
title = {Propiedad intelectual, nuevas tecnologías y libre acceso a la cultura},
publisher = {Centro Cultural de España en México — Universidad de las Américas Puebla},
year = {2008},
url = {https://www.academia.edu/2057461/Propiedad_intelectual_nuevas_tecnolog%C3%ADas_y_libre_acceso_a_la_cultura_-_Alberto_L%C3%B3pez_Cuenca_Eduardo_Ram%C3%ADrez_Pedrajo_coordinadores_}
}
</pre></td>
</tr>
<tr id="bollier2016a" class="entry">
<td>Bollier D (2016), <i>"¿Propiedad intelectual? Una recopilación de ensayos críticos"</i> Perro Triste.
<p class="infolinks"> [<a href="javascript:toggleInfo('bollier2016a','bibtex')">BibTeX</a>] [<a href="https://github.com/ColectivoPerroTriste/Ebooks/blob/master/Colecci%C3%B3n%20Delta/Libros/Propiedad%20intelectual/PropiedadIntelectual.epub" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_bollier2016a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@inbook{bollier2016a,
author = {Bollier, David},
title = {¿Propiedad intelectual? Una recopilación de ensayos críticos},
publisher = {Perro Triste},
year = {2016},
url = {https://github.com/ColectivoPerroTriste/Ebooks/blob/master/Colecci%C3%B3n%20Delta/Libros/Propiedad%20intelectual/PropiedadIntelectual.epub}
}
</pre></td>
</tr>
<tr id="bourdieu2008a" class="entry">
<td>Bourdieu P (2008), <i>"Homo academicus"</i> Siglo XXI.
<p class="infolinks"> [<a href="javascript:toggleInfo('bourdieu2008a','bibtex')">BibTeX</a>] [<a href="http://gen.lib.rus.ec/book/index.php?md5=308667934F8464CF490EE6318E4D1434" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_bourdieu2008a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@book{bourdieu2008a,
author = {Bourdieu, Pierre},
title = {Homo academicus},
publisher = {Siglo XXI},
year = {2008},
url = {http://gen.lib.rus.ec/book/index.php?md5=308667934F8464CF490EE6318E4D1434}
}
</pre></td>
</tr>
<tr id="bravo2005a" class="entry">
<td>Bravo Bueno D (2005), <i>"Copia este libro"</i>
<p class="infolinks"> [<a href="javascript:toggleInfo('bravo2005a','bibtex')">BibTeX</a>] [<a href="http://elastico.net/archives/005194.html" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_bravo2005a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@book{bravo2005a,
author = {Bravo Bueno, David},
title = {Copia este libro},
year = {2005},
url = {http://elastico.net/archives/005194.html}
}
</pre></td>
</tr>
<tr id="breakey2010a" class="entry">
<td>Breakey H (2010), <i>"Natural Intellectual Property Rights and the Public Domain"</i>, The Modern Law Review. Vol. 73(2), pp. 208-239. [Modern Law Review, Wiley].
<p class="infolinks"> [<a href="javascript:toggleInfo('breakey2010a','bibtex')">BibTeX</a>] [<a href="http://www.jstor.org/stable/40660697" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_breakey2010a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@article{breakey2010a,
author = {Breakey, Hugh},
title = {Natural Intellectual Property Rights and the Public Domain},
journal = {The Modern Law Review},
publisher = {[Modern Law Review, Wiley]},
year = {2010},
volume = {73},
number = {2},
pages = {208--239},
url = {http://www.jstor.org/stable/40660697}
}
</pre></td>
</tr>
<tr id="child1990a" class="entry">
<td>Child JW (1990), <i>"The Moral Foundations of Intangible Property"</i>, The Monist. Vol. 73(4), pp. 578-600. Oxford University Press.
<p class="infolinks"> [<a href="javascript:toggleInfo('child1990a','bibtex')">BibTeX</a>] [<a href="http://www.jstor.org/stable/27903211" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_child1990a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@article{child1990a,
author = {Child, James W.},
title = {The Moral Foundations of Intangible Property},
journal = {The Monist},
publisher = {Oxford University Press},
year = {1990},
volume = {73},
number = {4},
pages = {578--600},
url = {http://www.jstor.org/stable/27903211}
}
</pre></td>
</tr>
<tr id="derrida2002a" class="entry">
<td>Derrida J (2002), <i>"Jacques Derrida and the Humanities"</i> , pp. 24-57. Cambridge University Press.
<p class="infolinks"> [<a href="javascript:toggleInfo('derrida2002a','bibtex')">BibTeX</a>] [<a href="http://users.clas.ufl.edu/burt/derridafutureprofession.pdf" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_derrida2002a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@inbook{derrida2002a,
author = {Derrida, Jacques},
editor = {Cohen, Tom},
title = {Jacques Derrida and the Humanities},
publisher = {Cambridge University Press},
year = {2002},
pages = {24--57},
url = {http://users.clas.ufl.edu/burt/derridafutureprofession.pdf}
}
</pre></td>
</tr>
<tr id="htec1990a" class="entry">
<td>Derry T and Williams T (1990), <i>"Historia de la tecnología"</i> Vol. 1 Siglo XXI.
<p class="infolinks"> [<a href="javascript:toggleInfo('htec1990a','bibtex')">BibTeX</a>]</p>
</td>
</tr>
<tr id="bib_htec1990a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@book{htec1990a,
author = {Derry, T.K. and Williams, T.I.},
title = {Historia de la tecnología},
publisher = {Siglo XXI},
year = {1990},
volume = {1}
}
</pre></td>
</tr>
<tr id="htec1991a" class="entry">
<td>Derry T and Williams T (1991), <i>"Historia de la tecnología"</i> Vol. 2 Siglo XXI.
<p class="infolinks"> [<a href="javascript:toggleInfo('htec1991a','bibtex')">BibTeX</a>]</p>
</td>
</tr>
<tr id="bib_htec1991a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@book{htec1991a,
author = {Derry, T.K. and Williams, T.I.},
title = {Historia de la tecnología},
publisher = {Siglo XXI},
year = {1991},
volume = {2}
}
</pre></td>
</tr>
<tr id="htec1991b" class="entry">
<td>Derry T and Williams T (1991), <i>"Historia de la tecnología"</i> Vol. 3 Siglo XXI.
<p class="infolinks"> [<a href="javascript:toggleInfo('htec1991b','bibtex')">BibTeX</a>]</p>
</td>
</tr>
<tr id="bib_htec1991b" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@book{htec1991b,
author = {Derry, T.K. and Williams, T.I.},
title = {Historia de la tecnología},
publisher = {Siglo XXI},
year = {1991},
volume = {3}
}
</pre></td>
</tr>
<tr id="eff2017a" class="entry">
<td>Doctorow C (2016), <i>"Save Netflix!"</i>
<p class="infolinks"> [<a href="javascript:toggleInfo('eff2017a','bibtex')">BibTeX</a>] [<a href="https://www.eff.org/deeplinks/2016/04/save-netflix" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_eff2017a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@electronic{eff2017a,
author = {Doctorow, Cory},
title = {Save Netflix!},
year = {2016},
url = {https://www.eff.org/deeplinks/2016/04/save-netflix}
}
</pre></td>
</tr>
<tr id="drahos1996a" class="entry">
<td>Drahos P (1996), <i>"A Philosophy of Intellectual Property (Applied Legal Philosophy)"</i> Dartmouth Pub Co.
<p class="infolinks"> [<a href="javascript:toggleInfo('drahos1996a','bibtex')">BibTeX</a>] [<a href="http://gen.lib.rus.ec/book/index.php?md5=A9102DE4142FED0E1E3ACD70BE069EBB" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_drahos1996a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@book{drahos1996a,
author = {Peter Drahos},
title = {A Philosophy of Intellectual Property (Applied Legal Philosophy)},
publisher = {Dartmouth Pub Co},
year = {1996},
url = {http://gen.lib.rus.ec/book/index.php?md5=A9102DE4142FED0E1E3ACD70BE069EBB}
}
</pre></td>
</tr>
<tr id="eco2016a" class="entry">
<td>Eco U (2016), <i>"Obra abierta"</i> epublibre.
<p class="infolinks"> [<a href="javascript:toggleInfo('eco2016a','bibtex')">BibTeX</a>] [<a href="https://epublibre.org/libro/detalle/29988" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_eco2016a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@book{eco2016a,
author = {Eco, Umberto},
editor = {FLeCos},
title = {Obra abierta},
publisher = {epublibre},
year = {2016},
url = {https://epublibre.org/libro/detalle/29988}
}
</pre></td>
</tr>
<tr id="fiormonte2017a" class="entry">
<td>Fiormonte D and Priego E (), <i>"Knowledge Monopolies and Global Academic Publishing"</i>
<p class="infolinks"> [<a href="javascript:toggleInfo('fiormonte2017a','bibtex')">BibTeX</a>] [<a href="http://openaccess.city.ac.uk/15230/8/4965-knowledge-monopolies-and-global-academic-publishing.pdf" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_fiormonte2017a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@electronic{fiormonte2017a,
author = {Fiormonte, Domenico and Priego, Ernesto},
title = {Knowledge Monopolies and Global Academic Publishing},
url = {http://openaccess.city.ac.uk/15230/8/4965-knowledge-monopolies-and-global-academic-publishing.pdf}
}
</pre></td>
</tr>
<tr id="fisher2016a" class="entry">
<td>Fisher W (2016), <i>"¿Propiedad intelectual? Una recopilación de ensayos críticos"</i> Perro Triste.
<p class="infolinks"> [<a href="javascript:toggleInfo('fisher2016a','bibtex')">BibTeX</a>] [<a href="https://github.com/ColectivoPerroTriste/Ebooks/blob/master/Colecci%C3%B3n%20Delta/Libros/Propiedad%20intelectual/PropiedadIntelectual.epub" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_fisher2016a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@inbook{fisher2016a,
author = {Fisher, William},
title = {¿Propiedad intelectual? Una recopilación de ensayos críticos},
publisher = {Perro Triste},
year = {2016},
url = {https://github.com/ColectivoPerroTriste/Ebooks/blob/master/Colecci%C3%B3n%20Delta/Libros/Propiedad%20intelectual/PropiedadIntelectual.epub}
}
</pre></td>
</tr>
<tr id="foucault1999a" class="entry">
<td>Foucault M (1999), <i>"¿Qué es un autor?"</i>
<p class="infolinks"> [<a href="javascript:toggleInfo('foucault1999a','bibtex')">BibTeX</a>] [<a href="http://www.saber.ula.ve/bitstream/123456789/15927/1/davila-autor.pdf" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_foucault1999a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@booklet{foucault1999a,
author = {Foucault, Michel},
title = {¿Qué es un autor?},
year = {1999},
url = {http://www.saber.ula.ve/bitstream/123456789/15927/1/davila-autor.pdf}
}
</pre></td>
</tr>
<tr id="gilmore2004a" class="entry">
<td>Gilmore J (2004), <i>":() :|:&amp; ;: Internet, hackers y software libre"</i> Editora Fantasma.
<p class="infolinks"> [<a href="javascript:toggleInfo('gilmore2004a','bibtex')">BibTeX</a>] [<a href="http://www.epubgratis.org/internet-hackers-y-software-libre-carlos-gradin/" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_gilmore2004a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@inbook{gilmore2004a,
author = {Gilmore, John},
editor = {Gradin, Carlos},
title = {:() :|:&amp; ;: Internet, hackers y software libre},
publisher = {Editora Fantasma},
year = {2004},
url = {http://www.epubgratis.org/internet-hackers-y-software-libre-carlos-gradin/}
}
</pre></td>
</tr>
<tr id="hall2009a" class="entry">
<td>Hall G (2009), <i>"Introduction: Pirate Philosophy"</i>, Culture Machine. Vol. 10, pp. 1-5.
<p class="infolinks"> [<a href="javascript:toggleInfo('hall2009a','bibtex')">BibTeX</a>] [<a href="http://www.culturemachine.net/index.php/cm/issue/view/21" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_hall2009a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@article{hall2009a,
author = {Hall, Gary},
title = {Introduction: Pirate Philosophy},
journal = {Culture Machine},
year = {2009},
volume = {10},
pages = {1--5},
url = {http://www.culturemachine.net/index.php/cm/issue/view/21}
}
</pre></td>
</tr>
<tr id="hall2009b" class="entry">
<td>Hall G (2009), <i>"Pirate Philosophy (Version 1.0): Open Access, Open Editing, Free Content, Free/Libre/Open Media"</i>, Culture Machine. Vol. 10
<p class="infolinks"> [<a href="javascript:toggleInfo('hall2009b','bibtex')">BibTeX</a>] [<a href="http://aaaaarg.fail/thing/51c584176c3a0ed90bac0700" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_hall2009b" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@article{hall2009b,
author = {Hall, Gary},
title = {Pirate Philosophy (Version 1.0): Open Access, Open Editing, Free Content, Free/Libre/Open Media},
journal = {Culture Machine},
year = {2009},
volume = {10},
url = {http://aaaaarg.fail/thing/51c584176c3a0ed90bac0700}
}
</pre></td>
</tr>
<tr id="hall2012a" class="entry">
<td>Hall G (2012), <i>"Pirate Radical Philosophy"</i>, Radical Philosophy. (173), pp. 33-40.
<p class="infolinks"> [<a href="javascript:toggleInfo('hall2012a','bibtex')">BibTeX</a>] [<a href="https://www.academia.edu/11929908/Pirate_Radical_Philosophy" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_hall2012a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@article{hall2012a,
author = {Hall, Gary},
title = {Pirate Radical Philosophy},
journal = {Radical Philosophy},
year = {2012},
number = {173},
pages = {33--40},
url = {https://www.academia.edu/11929908/Pirate_Radical_Philosophy}
}
</pre></td>
</tr>
<tr id="hall2016a" class="entry">
<td>Hall G (2016), <i>"Pirate Philosophy: For a Digital Posthumanities"</i> MIT Press.
<p class="infolinks"> [<a href="javascript:toggleInfo('hall2016a','bibtex')">BibTeX</a>] [<a href="https://es.scribd.com/document/317868896/Pirate-Philosophy-For-a-Digital-Posthumanities#" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_hall2016a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@book{hall2016a,
author = {Hall, Gary},
title = {Pirate Philosophy: For a Digital Posthumanities},
publisher = {MIT Press},
year = {2016},
url = {https://es.scribd.com/document/317868896/Pirate-Philosophy-For-a-Digital-Posthumanities#}
}
</pre></td>
</tr>
<tr id="hall2016b" class="entry">
<td>Hall G and Adema J (2016), <i>"Posthumanities: The Dark Side of "The Dark Side of the Digital""</i>, Journal of Electronic Publishing. Vol. 19(2)
<p class="infolinks"> [<a href="javascript:toggleInfo('hall2016b','bibtex')">BibTeX</a>] [<a href="https://curve.coventry.ac.uk/open/file/71be4277-6fd3-40b4-a704-a8bee58efdfe/1/halldisruptcomb.pdf" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_hall2016b" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@article{hall2016b,
author = {Hall, Gary and Adema, J.},
title = {Posthumanities: The Dark Side of "The Dark Side of the Digital"},
journal = {Journal of Electronic Publishing},
year = {2016},
volume = {19},
number = {2},
url = {https://curve.coventry.ac.uk/open/file/71be4277-6fd3-40b4-a704-a8bee58efdfe/1/halldisruptcomb.pdf}
}
</pre></td>
</tr>
<tr id="hegel2005a" class="entry">
<td>Hegel GWF (2005), <i>"Principios de la filosofía del derecho"</i>, 5, 2005. , pp. 125-160. Editora y Distribuidora Hispano Americana, S.A. (EDHASA).
<p class="infolinks"> [<a href="javascript:toggleInfo('hegel2005a','bibtex')">BibTeX</a>] [<a href="https://docs.google.com/viewer?a=v&pid=sites&srcid=ZGVmYXVsdGRvbWFpbnxlc3RldGljYXBvbGl0aWNhMjAxNHxneDo0MjUwYjg2MzUwZGY2ZDk1" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_hegel2005a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@inbook{hegel2005a,
author = {Hegel, Georg Wilhelm Friedrich},
title = {Principios de la filosofía del derecho},
publisher = {Editora y Distribuidora Hispano Americana, S.A. (EDHASA)},
year = {2005},
pages = {125--160},
url = {https://docs.google.com/viewer?a=v&amp;pid=sites&amp;srcid=ZGVmYXVsdGRvbWFpbnxlc3RldGljYXBvbGl0aWNhMjAxNHxneDo0MjUwYjg2MzUwZGY2ZDk1}
}
</pre></td>
</tr>
<tr id="heidegger1994a" class="entry">
<td>Heidegger M (1994), <i>"Conferencias y artículos"</i> , pp. 9-37. Ediciones del Serbal.
<p class="infolinks"> [<a href="javascript:toggleInfo('heidegger1994a','bibtex')">BibTeX</a>] [<a href="http://www.bolivare.unam.mx/cursos/TextosCurso10-1/HEIDEGGER-%20LA%20PREGUNTA%20POR%20LA%20T%C9CNICA.pdf" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_heidegger1994a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@inbook{heidegger1994a,
author = {Heidegger, Martin},
title = {Conferencias y artículos},
publisher = {Ediciones del Serbal},
year = {1994},
pages = {9--37},
url = {http://www.bolivare.unam.mx/cursos/TextosCurso10-1/HEIDEGGER-%20LA%20PREGUNTA%20POR%20LA%20T%C9CNICA.pdf}
}
</pre></td>
</tr>
<tr id="hettinger1989a" class="entry">
<td>Hettinger EC (1989), <i>"Justifying Intellectual Property"</i>, Philosophy &amp; Public Affairs. Vol. 18(1), pp. 31-52. Wiley.
<p class="infolinks"> [<a href="javascript:toggleInfo('hettinger1989a','bibtex')">BibTeX</a>] [<a href="http://www.jstor.org/stable/2265190" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_hettinger1989a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@article{hettinger1989a,
author = {Hettinger, Edwin C.},
title = {Justifying Intellectual Property},
journal = {Philosophy &amp; Public Affairs},
publisher = {Wiley},
year = {1989},
volume = {18},
number = {1},
pages = {31--52},
url = {http://www.jstor.org/stable/2265190}
}
</pre></td>
</tr>
<tr id="himma2006a" class="entry">
<td>Himma KE (2006), <i>"Information, Technology and Social Justice"</i> Idea Group.
<p class="infolinks"> [<a href="javascript:toggleInfo('himma2006a','bibtex')">BibTeX</a>] [<a href="https://papers.ssrn.com/sol3/papers.cfm?abstract_id=840584" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_himma2006a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@inbook{himma2006a,
author = {Himma, Kenneth Einar},
editor = {Rooksby, Emma},
title = {Information, Technology and Social Justice},
publisher = {Idea Group},
year = {2006},
url = {https://papers.ssrn.com/sol3/papers.cfm?abstract_id=840584}
}
</pre></td>
</tr>
<tr id="hughes1988a" class="entry">
<td>Hughes J (1988), <i>"The Philosophy of Intellectual Property"</i>, Georgetown Law Journal.
<p class="infolinks"> [<a href="javascript:toggleInfo('hughes1988a','bibtex')">BibTeX</a>] [<a href="http://www.justinhughes.net/docs/a-ip01.pdf" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_hughes1988a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@article{hughes1988a,
author = {Hughes, Justin},
title = {The Philosophy of Intellectual Property},
journal = {Georgetown Law Journal},
year = {1988},
url = {http://www.justinhughes.net/docs/a-ip01.pdf}
}
</pre></td>
</tr>
<tr id="illich1985a" class="entry">
<td>Illich I (1985), <i>"La sociedad desescolarizada"</i> Joaquín Mortiz — Planeta.
<p class="infolinks"> [<a href="javascript:toggleInfo('illich1985a','bibtex')">BibTeX</a>] [<a href="http://libgen.io/book/index.php?md5=125D0ACA844D2B5BFE6F43867C090376" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_illich1985a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@book{illich1985a,
author = {Illich, Iván},
title = {La sociedad desescolarizada},
publisher = {Joaquín Mortiz — Planeta},
year = {1985},
url = {http://libgen.io/book/index.php?md5=125D0ACA844D2B5BFE6F43867C090376}
}
</pre></td>
</tr>
<tr id="jimenez2008a" class="entry">
<td>Jiménez L (2008), <i>"Propiedad intelectual, nuevas tecnologías y libre acceso a la cultura"</i> Centro Cultural de España en México — Universidad de las Américas Puebla.
<p class="infolinks"> [<a href="javascript:toggleInfo('jimenez2008a','bibtex')">BibTeX</a>] [<a href="https://www.academia.edu/2057461/Propiedad_intelectual_nuevas_tecnolog%C3%ADas_y_libre_acceso_a_la_cultura_-_Alberto_L%C3%B3pez_Cuenca_Eduardo_Ram%C3%ADrez_Pedrajo_coordinadores_" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_jimenez2008a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@inbook{jimenez2008a,
author = {Jiménez, Lucina},
editor = {López, Albert and Ramírez, Eduardo},
title = {Propiedad intelectual, nuevas tecnologías y libre acceso a la cultura},
publisher = {Centro Cultural de España en México — Universidad de las Américas Puebla},
year = {2008},
url = {https://www.academia.edu/2057461/Propiedad_intelectual_nuevas_tecnolog%C3%ADas_y_libre_acceso_a_la_cultura_-_Alberto_L%C3%B3pez_Cuenca_Eduardo_Ram%C3%ADrez_Pedrajo_coordinadores_}
}
</pre></td>
</tr>
<tr id="kant2005a" class="entry">
<td>Kant I (2005), <i>"La metafísica de las costumbres"</i>, 9, 2005. Editorial Tecnos.
<p class="infolinks"> [<a href="javascript:toggleInfo('kant2005a','bibtex')">BibTeX</a>] [<a href="https://es.scribd.com/doc/219559856/Kant-La-Metafisica-de-Las-Costumbres" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_kant2005a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@book{kant2005a,
author = {Kant, Immanuel},
title = {La metafísica de las costumbres},
publisher = {Editorial Tecnos},
year = {2005},
url = {https://es.scribd.com/doc/219559856/Kant-La-Metafisica-de-Las-Costumbres}
}
</pre></td>
</tr>
<tr id="kuflik1989a" class="entry">
<td>Kuflik A (1989), <i>"Owning Scientific and Technical Information"</i> Rutgers University Press.
<p class="infolinks"> [<a href="javascript:toggleInfo('kuflik1989a','bibtex')">BibTeX</a>] [<a href="http://storm.cis.fordham.edu/~cschweikert/csrv4650/ch3MoralFoundations.doc" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_kuflik1989a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@inbook{kuflik1989a,
author = {Kuflik, Arthur},
editor = {Weil, V. and Snapper, J.},
title = {Owning Scientific and Technical Information},
publisher = {Rutgers University Press},
year = {1989},
url = {http://storm.cis.fordham.edu/&nbsp;cschweikert/csrv4650/ch3MoralFoundations.doc}
}
</pre></td>
</tr>
<tr id="lenk2007a" class="entry">
<td>Lenk Christian HN and Andorno R (2007), <i>"Ethics and Law of Intellectual Property"</i> Ashgate.
<p class="infolinks"> [<a href="javascript:toggleInfo('lenk2007a','bibtex')">BibTeX</a>] [<a href="http://gen.lib.rus.ec/book/index.php?md5=42A8D0A02740B6063E85AE70BD3CEFBB" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_lenk2007a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@book{lenk2007a,
author = {Lenk, Christian, Hoppe, Nils and Andorno, Roberto},
title = {Ethics and Law of Intellectual Property},
publisher = {Ashgate},
year = {2007},
url = {http://gen.lib.rus.ec/book/index.php?md5=42A8D0A02740B6063E85AE70BD3CEFBB}
}
</pre></td>
</tr>
<tr id="lessig2001a" class="entry">
<td>Lessig L (2001), <i>"The Future of Ideas: The Fate of the Commons in a Connected World"</i> Random House.
<p class="infolinks"> [<a href="javascript:toggleInfo('lessig2001a','bibtex')">BibTeX</a>] [<a href="http://the-future-of-ideas.com/" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_lessig2001a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@book{lessig2001a,
author = {Lessig, Lawrence},
title = {The Future of Ideas: The Fate of the Commons in a Connected World},
publisher = {Random House},
year = {2001},
url = {http://the-future-of-ideas.com/}
}
</pre></td>
</tr>
<tr id="lessig2009a" class="entry">
<td>Lessig L (2009), <i>"El código 2.0"</i>, 5, 2009. Traficantes de Sueños.
<p class="infolinks"> [<a href="javascript:toggleInfo('lessig2009a','bibtex')">BibTeX</a>] [<a href="https://www.traficantes.net/libros/el-codigo-20" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_lessig2009a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@book{lessig2009a,
author = {Lessig, Lawrence},
editor = {Cabello, Florencio},
title = {El código 2.0},
publisher = {Traficantes de Sueños},
year = {2009},
url = {https://www.traficantes.net/libros/el-codigo-20}
}
</pre></td>
</tr>
<tr id="lessig2011a" class="entry">
<td>Lessig L (2011), <i>"Cultura libre"</i> LOM Ediciones.
<p class="infolinks"> [<a href="javascript:toggleInfo('lessig2011a','bibtex')">BibTeX</a>] [<a href="https://derechosdigitales.org/culturalibre/" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_lessig2011a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@book{lessig2011a,
author = {Lessig, Lawrence},
title = {Cultura libre},
publisher = {LOM Ediciones},
year = {2011},
url = {https://derechosdigitales.org/culturalibre/}
}
</pre></td>
</tr>
<tr id="lessig2012a" class="entry">
<td>Lessig L (2012), <i>"Remix : cultura de la remezcla y derechos de autor en el entorno digital"</i>, 10, 2012. Icaria editorial.
<p class="infolinks"> [<a href="javascript:toggleInfo('lessig2012a','bibtex')">BibTeX</a>] [<a href="http://icariaeditorial.com/pdf_libros/REMIX.pdf" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_lessig2012a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@book{lessig2012a,
author = {Lessig, Lawrence},
title = {Remix : cultura de la remezcla y derechos de autor en el entorno digital},
publisher = {Icaria editorial},
year = {2012},
url = {http://icariaeditorial.com/pdf_libros/REMIX.pdf}
}
</pre></td>
</tr>
<tr id="lever2012a" class="entry">
<td>Lever A (2012), <i>"New Frontiers in the Philosophy of Intellectual Property"</i> Cambridge University Press.
<p class="infolinks"> [<a href="javascript:toggleInfo('lever2012a','bibtex')">BibTeX</a>] [<a href="http://gen.lib.rus.ec/book/index.php?md5=94c9b1e4c70c84d18fd3e33cdaf52e0c" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_lever2012a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@book{lever2012a,
author = {Lever, Annabelle},
title = {New Frontiers in the Philosophy of Intellectual Property},
publisher = {Cambridge University Press},
year = {2012},
url = {http://gen.lib.rus.ec/book/index.php?md5=94c9b1e4c70c84d18fd3e33cdaf52e0c}
}
</pre></td>
</tr>
<tr id="levy2016a" class="entry">
<td>Lévy P (2016), <i>"¿Propiedad intelectual? Una recopilación de ensayos críticos"</i> Perro Triste.
<p class="infolinks"> [<a href="javascript:toggleInfo('levy2016a','bibtex')">BibTeX</a>] [<a href="https://github.com/ColectivoPerroTriste/Ebooks/blob/master/Colecci%C3%B3n%20Delta/Libros/Propiedad%20intelectual/PropiedadIntelectual.epub" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_levy2016a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@inbook{levy2016a,
author = {Lévy, Pierre},
title = {¿Propiedad intelectual? Una recopilación de ensayos críticos},
publisher = {Perro Triste},
year = {2016},
url = {https://github.com/ColectivoPerroTriste/Ebooks/blob/master/Colecci%C3%B3n%20Delta/Libros/Propiedad%20intelectual/PropiedadIntelectual.epub}
}
</pre></td>
</tr>
<tr id="locke2006a" class="entry">
<td>Locke J (2006), <i>"Segundo Tratado sobre el Gobierno Civil"</i> , pp. 32-55. Tecnos.
<p class="infolinks"> [<a href="javascript:toggleInfo('locke2006a','bibtex')">BibTeX</a>] [<a href="https://dairoorozco.files.wordpress.com/2013/01/locke-segundo-tratado-sobre-el-gobierno-civil.pdf" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_locke2006a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@inbook{locke2006a,
author = {Locke, John},
editor = {Mellizo, Carlos},
title = {Segundo Tratado sobre el Gobierno Civil},
publisher = {Tecnos},
year = {2006},
pages = {32--55},
url = {https://dairoorozco.files.wordpress.com/2013/01/locke-segundo-tratado-sobre-el-gobierno-civil.pdf}
}
</pre></td>
</tr>
<tr id="lopez2008a" class="entry">
<td>López A and Ramírez E (2008), <i>"Propiedad intelectual, nuevas tecnologías y libre acceso a la cultura"</i> Centro Cultural de España en México — Universidad de las Américas Puebla.
<p class="infolinks"> [<a href="javascript:toggleInfo('lopez2008a','bibtex')">BibTeX</a>] [<a href="https://www.academia.edu/2057461/Propiedad_intelectual_nuevas_tecnolog%C3%ADas_y_libre_acceso_a_la_cultura_-_Alberto_L%C3%B3pez_Cuenca_Eduardo_Ram%C3%ADrez_Pedrajo_coordinadores_" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_lopez2008a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@inbook{lopez2008a,
author = {López, Alberto and Ramírez, Eduardo},
editor = {López, Albert and Ramírez, Eduardo},
title = {Propiedad intelectual, nuevas tecnologías y libre acceso a la cultura},
publisher = {Centro Cultural de España en México — Universidad de las Américas Puebla},
year = {2008},
url = {https://www.academia.edu/2057461/Propiedad_intelectual_nuevas_tecnolog%C3%ADas_y_libre_acceso_a_la_cultura_-_Alberto_L%C3%B3pez_Cuenca_Eduardo_Ram%C3%ADrez_Pedrajo_coordinadores_}
}
</pre></td>
</tr>
<tr id="mcleod2009a" class="entry">
<td>McLeod K (2009), <i>"Crashing the Spectacle: A Forgotten History of Digital Sampling, Infringement, Copyright Liberation and the End of Recorded Music"</i>, Culture Machine. Vol. 10, pp. 114-130.
<p class="infolinks"> [<a href="javascript:toggleInfo('mcleod2009a','bibtex')">BibTeX</a>] [<a href="http://www.culturemachine.net/index.php/cm/issue/view/21" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_mcleod2009a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@article{mcleod2009a,
author = {McLeod, Kembrew},
title = {Crashing the Spectacle: A Forgotten History of Digital Sampling, Infringement, Copyright Liberation and the End of Recorded Music},
journal = {Culture Machine},
year = {2009},
volume = {10},
pages = {114--130},
url = {http://www.culturemachine.net/index.php/cm/issue/view/21}
}
</pre></td>
</tr>
<tr id="ming2016a" class="entry">
<td>Ming W (2016), <i>"¿Propiedad intelectual? Una recopilación de ensayos críticos"</i> Perro Triste.
<p class="infolinks"> [<a href="javascript:toggleInfo('ming2016a','bibtex')">BibTeX</a>] [<a href="https://github.com/ColectivoPerroTriste/Ebooks/blob/master/Colecci%C3%B3n%20Delta/Libros/Propiedad%20intelectual/PropiedadIntelectual.epub" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_ming2016a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@inbook{ming2016a,
author = {Ming, Wu},
title = {¿Propiedad intelectual? Una recopilación de ensayos críticos},
publisher = {Perro Triste},
year = {2016},
url = {https://github.com/ColectivoPerroTriste/Ebooks/blob/master/Colecci%C3%B3n%20Delta/Libros/Propiedad%20intelectual/PropiedadIntelectual.epub}
}
</pre></td>
</tr>
<tr id="moore2014a" class="entry">
<td>Moore A and Himma K (2014), <i>"Intellectual Property"</i>, The Stanford Encyclopedia of Philosophy. Metaphysics Research Lab, Stanford University.
<p class="infolinks"> [<a href="javascript:toggleInfo('moore2014a','bibtex')">BibTeX</a>] [<a href="https://plato.stanford.edu/archives/win2014/entries/intellectual-property/" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_moore2014a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@article{moore2014a,
author = {Moore, Adam and Himma, Ken},
editor = {Edward N. Zalta},
title = {Intellectual Property},
journal = {The Stanford Encyclopedia of Philosophy},
publisher = {Metaphysics Research Lab, Stanford University},
year = {2014},
edition = {Winter 2014},
url = {https://plato.stanford.edu/archives/win2014/entries/intellectual-property/}
}
</pre></td>
</tr>
<tr id="moore2008a" class="entry">
<td>Moore AD (2008), <i>"The Handbook of Information and Computer Ethics"</i> , pp. 105-130. John Wiley &amp; Sons, Inc..
<p class="infolinks"> [<a href="javascript:toggleInfo('moore2008a','bibtex')">BibTeX</a>] [<a href="https://papers.ssrn.com/sol3/papers.cfm?abstract_id=1980852" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_moore2008a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@inbook{moore2008a,
author = {Moore, Adam D.},
editor = {Himma, Kenneth Einar},
title = {The Handbook of Information and Computer Ethics},
publisher = {John Wiley &amp; Sons, Inc.},
year = {2008},
pages = {105--130},
url = {https://papers.ssrn.com/sol3/papers.cfm?abstract_id=1980852}
}
</pre></td>
</tr>
<tr id="moore2012a" class="entry">
<td>Moore AD (2012), <i>"A Lockean Theory of Intellectual Property Revisited"</i>, San Diego Law Review. Vol. 50
<p class="infolinks"> [<a href="javascript:toggleInfo('moore2012a','bibtex')">BibTeX</a>] [<a href="https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2099073" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_moore2012a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@article{moore2012a,
author = {Moore, Adam D.},
title = {A Lockean Theory of Intellectual Property Revisited},
journal = {San Diego Law Review},
year = {2012},
volume = {50},
url = {https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2099073}
}
</pre></td>
</tr>
<tr id="nivon2016a" class="entry">
<td>Nivón E (2016), <i>"¿Propiedad intelectual? Una recopilación de ensayos críticos"</i> Perro Triste.
<p class="infolinks"> [<a href="javascript:toggleInfo('nivon2016a','bibtex')">BibTeX</a>] [<a href="https://github.com/ColectivoPerroTriste/Ebooks/blob/master/Colecci%C3%B3n%20Delta/Libros/Propiedad%20intelectual/PropiedadIntelectual.epub" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_nivon2016a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@inbook{nivon2016a,
author = {Nivón, Eduardo},
title = {¿Propiedad intelectual? Una recopilación de ensayos críticos},
publisher = {Perro Triste},
year = {2016},
url = {https://github.com/ColectivoPerroTriste/Ebooks/blob/master/Colecci%C3%B3n%20Delta/Libros/Propiedad%20intelectual/PropiedadIntelectual.epub}
}
</pre></td>
</tr>
<tr id="ortmann2016a" class="entry">
<td>Ortmann C (2016), <i>"¿Propiedad intelectual? Una recopilación de ensayos críticos"</i> Perro Triste.
<p class="infolinks"> [<a href="javascript:toggleInfo('ortmann2016a','bibtex')">BibTeX</a>] [<a href="https://github.com/ColectivoPerroTriste/Ebooks/blob/master/Colecci%C3%B3n%20Delta/Libros/Propiedad%20intelectual/PropiedadIntelectual.epub" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_ortmann2016a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@inbook{ortmann2016a,
author = {Ortmann, Cecilia},
title = {¿Propiedad intelectual? Una recopilación de ensayos críticos},
publisher = {Perro Triste},
year = {2016},
url = {https://github.com/ColectivoPerroTriste/Ebooks/blob/master/Colecci%C3%B3n%20Delta/Libros/Propiedad%20intelectual/PropiedadIntelectual.epub}
}
</pre></td>
</tr>
<tr id="palmer1990a" class="entry">
<td>Palmer TG (1990), <i>"Are Patents and Copyrights Morally Justified? The Philosophy of Property Rights and Ideal Objects"</i>, Harvard Journal of Law &amp; Public Policy. Vol. 13(3), pp. 817-865.
<p class="infolinks"> [<a href="javascript:toggleInfo('palmer1990a','bibtex')">BibTeX</a>] [<a href="http://tomgpalmer.com/wp-content/uploads/papers/palmer-morallyjustified-harvard-v13n3.pdf" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_palmer1990a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@article{palmer1990a,
author = {Palmer, Tom G.},
title = {Are Patents and Copyrights Morally Justified? The Philosophy of Property Rights and Ideal Objects},
journal = {Harvard Journal of Law &amp; Public Policy},
year = {1990},
volume = {13},
number = {3},
pages = {817--865},
url = {http://tomgpalmer.com/wp-content/uploads/papers/palmer-morallyjustified-harvard-v13n3.pdf}
}
</pre></td>
</tr>
<tr id="papatheo2016a" class="entry">
<td>Papathéodorou A (2016), <i>"¿Propiedad intelectual? Una recopilación de ensayos críticos"</i> Perro Triste.
<p class="infolinks"> [<a href="javascript:toggleInfo('papatheo2016a','bibtex')">BibTeX</a>] [<a href="https://github.com/ColectivoPerroTriste/Ebooks/blob/master/Colecci%C3%B3n%20Delta/Libros/Propiedad%20intelectual/PropiedadIntelectual.epub" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_papatheo2016a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@inbook{papatheo2016a,
author = {Papathéodorou, Aris},
title = {¿Propiedad intelectual? Una recopilación de ensayos críticos},
publisher = {Perro Triste},
year = {2016},
url = {https://github.com/ColectivoPerroTriste/Ebooks/blob/master/Colecci%C3%B3n%20Delta/Libros/Propiedad%20intelectual/PropiedadIntelectual.epub}
}
</pre></td>
</tr>
<tr id="rangel2016a" class="entry">
<td>Rangel Medina D (2016), <i>"Panorama del derecho mexicano. Derecho intelectual"</i> UNAM.
<p class="infolinks"> [<a href="javascript:toggleInfo('rangel2016a','bibtex')">BibTeX</a>] [<a href="https://biblio.juridicas.unam.mx/bjv/detalle-libro/1912-panorama-del-derecho-mexicano-derecho-intelectual" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_rangel2016a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@inbook{rangel2016a,
author = {Rangel Medina, David},
title = {Panorama del derecho mexicano. Derecho intelectual},
publisher = {UNAM},
year = {2016},
url = {https://biblio.juridicas.unam.mx/bjv/detalle-libro/1912-panorama-del-derecho-mexicano-derecho-intelectual}
}
</pre></td>
</tr>
<tr id="raymond2016a" class="entry">
<td>Raymond ES (2016), <i>"¿Propiedad intelectual? Una recopilación de ensayos críticos"</i> Perro Triste.
<p class="infolinks"> [<a href="javascript:toggleInfo('raymond2016a','bibtex')">BibTeX</a>] [<a href="https://github.com/ColectivoPerroTriste/Ebooks/blob/master/Colecci%C3%B3n%20Delta/Libros/Propiedad%20intelectual/PropiedadIntelectual.epub" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_raymond2016a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@inbook{raymond2016a,
author = {Raymond, Eric Steven},
title = {¿Propiedad intelectual? Una recopilación de ensayos críticos},
publisher = {Perro Triste},
year = {2016},
url = {https://github.com/ColectivoPerroTriste/Ebooks/blob/master/Colecci%C3%B3n%20Delta/Libros/Propiedad%20intelectual/PropiedadIntelectual.epub}
}
</pre></td>
</tr>
<tr id="rendueles2016a" class="entry">
<td>Rendueles C (2016), <i>"¿Propiedad intelectual? Una recopilación de ensayos críticos"</i> Perro Triste.
<p class="infolinks"> [<a href="javascript:toggleInfo('rendueles2016a','bibtex')">BibTeX</a>] [<a href="https://github.com/ColectivoPerroTriste/Ebooks/blob/master/Colecci%C3%B3n%20Delta/Libros/Propiedad%20intelectual/PropiedadIntelectual.epub" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_rendueles2016a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@inbook{rendueles2016a,
author = {Rendueles, César},
title = {¿Propiedad intelectual? Una recopilación de ensayos críticos},
publisher = {Perro Triste},
year = {2016},
url = {https://github.com/ColectivoPerroTriste/Ebooks/blob/master/Colecci%C3%B3n%20Delta/Libros/Propiedad%20intelectual/PropiedadIntelectual.epub}
}
</pre></td>
</tr>
<tr id="ringenbach2016a" class="entry">
<td>Ringenbach J (2016), <i>"¿Propiedad intelectual? Una recopilación de ensayos críticos"</i> Perro Triste.
<p class="infolinks"> [<a href="javascript:toggleInfo('ringenbach2016a','bibtex')">BibTeX</a>] [<a href="https://github.com/ColectivoPerroTriste/Ebooks/blob/master/Colecci%C3%B3n%20Delta/Libros/Propiedad%20intelectual/PropiedadIntelectual.epub" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_ringenbach2016a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@inbook{ringenbach2016a,
author = {Ringenbach, Jorge},
title = {¿Propiedad intelectual? Una recopilación de ensayos críticos},
publisher = {Perro Triste},
year = {2016},
url = {https://github.com/ColectivoPerroTriste/Ebooks/blob/master/Colecci%C3%B3n%20Delta/Libros/Propiedad%20intelectual/PropiedadIntelectual.epub}
}
</pre></td>
</tr>
<tr id="rojo2016a" class="entry">
<td>Rojo F (2016), <i>"¿Propiedad intelectual? Una recopilación de ensayos críticos"</i> Perro Triste.
<p class="infolinks"> [<a href="javascript:toggleInfo('rojo2016a','bibtex')">BibTeX</a>] [<a href="https://github.com/ColectivoPerroTriste/Ebooks/blob/master/Colecci%C3%B3n%20Delta/Libros/Propiedad%20intelectual/PropiedadIntelectual.epub" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_rojo2016a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@inbook{rojo2016a,
author = {Rojo, Facundo},
title = {¿Propiedad intelectual? Una recopilación de ensayos críticos},
publisher = {Perro Triste},
year = {2016},
url = {https://github.com/ColectivoPerroTriste/Ebooks/blob/master/Colecci%C3%B3n%20Delta/Libros/Propiedad%20intelectual/PropiedadIntelectual.epub}
}
</pre></td>
</tr>
<tr id="rose1993a" class="entry">
<td>Rose M (1993), <i>"Authors and Owners: The Invention of Copyright"</i> Harvard University Press.
<p class="infolinks"> [<a href="javascript:toggleInfo('rose1993a','bibtex')">BibTeX</a>] [<a href="https://monoskop.org/File:Rose_Mark_Authors_and_Owners_The_Invention_of_Copyright.pdf" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_rose1993a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@book{rose1993a,
author = {Rose, Mark},
title = {Authors and Owners: The Invention of Copyright},
publisher = {Harvard University Press},
year = {1993},
url = {https://monoskop.org/File:Rose_Mark_Authors_and_Owners_The_Invention_of_Copyright.pdf}
}
</pre></td>
</tr>
<tr id="sanchez2016a" class="entry">
<td>Sánchez LF (2016), <i>"¿Propiedad intelectual? Una recopilación de ensayos críticos"</i> Perro Triste.
<p class="infolinks"> [<a href="javascript:toggleInfo('sanchez2016a','bibtex')">BibTeX</a>] [<a href="https://github.com/ColectivoPerroTriste/Ebooks/blob/master/Colecci%C3%B3n%20Delta/Libros/Propiedad%20intelectual/PropiedadIntelectual.epub" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_sanchez2016a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@inbook{sanchez2016a,
author = {Sánchez, León Felipe},
title = {¿Propiedad intelectual? Una recopilación de ensayos críticos},
publisher = {Perro Triste},
year = {2016},
url = {https://github.com/ColectivoPerroTriste/Ebooks/blob/master/Colecci%C3%B3n%20Delta/Libros/Propiedad%20intelectual/PropiedadIntelectual.epub}
}
</pre></td>
</tr>
<tr id="schroeder2004a" class="entry">
<td>Schroeder J (2004), <i>"Unnatural Rights: Hegel And Intellectual Propery"</i>.
<p class="infolinks"> [<a href="javascript:toggleInfo('schroeder2004a','bibtex')">BibTeX</a>] [<a href="https://papers.ssrn.com/sol3/papers.cfm?abstract_id=518182" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_schroeder2004a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@misc{schroeder2004a,
author = {Schroeder, Jeanne},
title = {Unnatural Rights: Hegel And Intellectual Propery},
year = {2004},
url = {https://papers.ssrn.com/sol3/papers.cfm?abstract_id=518182}
}
</pre></td>
</tr>
<tr id="shiffrin2007a" class="entry">
<td>Shiffrin SV (2007), <i>"A Companion to Contemporary Political Philosophy"</i> , pp. 653-668. Blackwell.
<p class="infolinks"> [<a href="javascript:toggleInfo('shiffrin2007a','bibtex')">BibTeX</a>] [<a href="https://www.academia.edu/3428807/Intellectual_Property" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_shiffrin2007a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@inbook{shiffrin2007a,
author = {Shiffrin, Seana Valentine},
title = {A Companion to Contemporary Political Philosophy},
publisher = {Blackwell},
year = {2007},
pages = {653--668},
url = {https://www.academia.edu/3428807/Intellectual_Property}
}
</pre></td>
</tr>
<tr id="stallman2004a" class="entry">
<td>Stallman R (2004), <i>":() :|:&amp; ;: Internet, hackers y software libre"</i> Editora Fantasma.
<p class="infolinks"> [<a href="javascript:toggleInfo('stallman2004a','bibtex')">BibTeX</a>] [<a href="http://www.epubgratis.org/internet-hackers-y-software-libre-carlos-gradin/" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_stallman2004a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@inbook{stallman2004a,
author = {Stallman, Richard},
editor = {Gradin, Carlos},
title = {:() :|:&amp; ;: Internet, hackers y software libre},
publisher = {Editora Fantasma},
year = {2004},
url = {http://www.epubgratis.org/internet-hackers-y-software-libre-carlos-gradin/}
}
</pre></td>
</tr>
<tr id="stallman2016a" class="entry">
<td>Stallman R (2016), <i>"¿Propiedad intelectual? Una recopilación de ensayos críticos"</i> Perro Triste.
<p class="infolinks"> [<a href="javascript:toggleInfo('stallman2016a','bibtex')">BibTeX</a>] [<a href="https://github.com/ColectivoPerroTriste/Ebooks/blob/master/Colecci%C3%B3n%20Delta/Libros/Propiedad%20intelectual/PropiedadIntelectual.epub" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_stallman2016a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@inbook{stallman2016a,
author = {Stallman, Richard},
title = {¿Propiedad intelectual? Una recopilación de ensayos críticos},
publisher = {Perro Triste},
year = {2016},
url = {https://github.com/ColectivoPerroTriste/Ebooks/blob/master/Colecci%C3%B3n%20Delta/Libros/Propiedad%20intelectual/PropiedadIntelectual.epub}
}
</pre></td>
</tr>
<tr id="stengel2004a" class="entry">
<td>Stengel D (2004), <i>"Intellectual Property in Philosophy"</i>, ARSP: Archiv für Rechts- und Sozialphilosophie / Archives for Philosophy of Law and Social Philosophy. Vol. 90(1), pp. 20-50. Franz Steiner Verlag.
<p class="infolinks"> [<a href="javascript:toggleInfo('stengel2004a','bibtex')">BibTeX</a>] [<a href="http://www.jstor.org/stable/23681627" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_stengel2004a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@article{stengel2004a,
author = {Daniel Stengel},
title = {Intellectual Property in Philosophy},
journal = {ARSP: Archiv für Rechts- und Sozialphilosophie / Archives for Philosophy of Law and Social Philosophy},
publisher = {Franz Steiner Verlag},
year = {2004},
volume = {90},
number = {1},
pages = {20--50},
url = {http://www.jstor.org/stable/23681627}
}
</pre></td>
</tr>
<tr id="cerlalc2015a" class="entry">
<td>VV. AA (2015), <i>"América Latina: la balanza comercial en propiedad intelectual"</i>. Thesis at: CERLALC.
<p class="infolinks"> [<a href="javascript:toggleInfo('cerlalc2015a','bibtex')">BibTeX</a>] [<a href="https://github.com/NikaZhenya/taller-flacso/blob/master/6-sabado/recursos/cerlalc.pdf" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_cerlalc2015a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@techreport{cerlalc2015a,
author = {VV. AA.},
title = {América Latina: la balanza comercial en propiedad intelectual},
school = {CERLALC},
year = {2015},
url = {https://github.com/NikaZhenya/taller-flacso/blob/master/6-sabado/recursos/cerlalc.pdf}
}
</pre></td>
</tr>
<tr id="indautor1996a" class="entry">
<td>VV. AA (1996), <i>"Ley Federal del Derecho de Autor"</i>.
<p class="infolinks"> [<a href="javascript:toggleInfo('indautor1996a','bibtex')">BibTeX</a>] [<a href="http://www.indautor.gob.mx/documentos_normas/leyfederal.pdf" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_indautor1996a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@misc{indautor1996a,
author = {VV. AA.},
title = {Ley Federal del Derecho de Autor},
year = {1996},
url = {http://www.indautor.gob.mx/documentos_normas/leyfederal.pdf}
}
</pre></td>
</tr>
<tr id="ompi2015a" class="entry">
<td>VV. AA (2015), <i>"Informe Mundial sobre la Propiedad Intelectual en 2015"</i>. Thesis at: OMPI.
<p class="infolinks"> [<a href="javascript:toggleInfo('ompi2015a','bibtex')">BibTeX</a>] [<a href="http://www.wipo.int/edocs/pubdocs/es/wipo_pub_944_2015.pdf" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_ompi2015a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@techreport{ompi2015a,
author = {VV. AA.},
title = {Informe Mundial sobre la Propiedad Intelectual en 2015},
school = {OMPI},
year = {2015},
url = {http://www.wipo.int/edocs/pubdocs/es/wipo_pub_944_2015.pdf}
}
</pre></td>
</tr>
<tr id="ompi2016a" class="entry">
<td>VV. AA (2015), <i>"Derechos de autor y derechos conexos"</i>. Thesis at: OMPI.
<p class="infolinks"> [<a href="javascript:toggleInfo('ompi2016a','bibtex')">BibTeX</a>] [<a href="https://welc.wipo.int/acc/index.jsf?page=courseCatalog.xhtml&lang=es" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_ompi2016a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@techreport{ompi2016a,
author = {VV. AA.},
title = {Derechos de autor y derechos conexos},
school = {OMPI},
year = {2015},
note = {Módulo 1},
url = {https://welc.wipo.int/acc/index.jsf?page=courseCatalog.xhtml&amp;lang=es}
}
</pre></td>
</tr>
<tr id="open2016a" class="entry">
<td>VV. AA (2016), <i>"Budapest Open Access Initiative, XV aniversario"</i>
<p class="infolinks"> [<a href="javascript:toggleInfo('open2016a','bibtex')">BibTeX</a>] [<a href="http://www.budapestopenaccessinitiative.org/boai15/Untitleddocument.docx" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_open2016a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@booklet{open2016a,
author = {VV. AA.},
title = {Budapest Open Access Initiative, XV aniversario},
year = {2016},
url = {http://www.budapestopenaccessinitiative.org/boai15/Untitleddocument.docx}
}
</pre></td>
</tr>
<tr id="wayner2000a" class="entry">
<td>Wayner P (2000), <i>"Free for All: How Linux and the Free Software Movement Undercut the High-Tech Titans"</i> HarperBusiness.
<p class="infolinks"> [<a href="javascript:toggleInfo('wayner2000a','bibtex')">BibTeX</a>] [<a href="http://docview1.tlvnimg.com/tailieu/2013/20130123/nguyenhuucanh1212/freeforall_4199.pdf" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_wayner2000a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@book{wayner2000a,
author = {Wayner, Peter},
title = {Free for All: How Linux and the Free Software Movement Undercut the High-Tech Titans},
publisher = {HarperBusiness},
year = {2000},
url = {http://docview1.tlvnimg.com/tailieu/2013/20130123/nguyenhuucanh1212/freeforall_4199.pdf}
}
</pre></td>
</tr>
<tr id="sam2010a" class="entry">
<td>Williams S (2010), <i>"Free as in Freedom (2.0)"</i> Free Software Foundation, Inc.
<p class="infolinks"> [<a href="javascript:toggleInfo('sam2010a','bibtex')">BibTeX</a>] [<a href="https://sagitter.fedorapeople.org/faif-2.0.pdf" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_sam2010a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@book{sam2010a,
author = {Williams, Sam},
title = {Free as in Freedom (2.0)},
publisher = {Free Software Foundation, Inc},
year = {2010},
url = {https://sagitter.fedorapeople.org/faif-2.0.pdf}
}
</pre></td>
</tr>
<tr id="htec1988a" class="entry">
<td>Williams T (1988), <i>"Historia de la tecnología"</i> Vol. 4 Siglo XXI.
<p class="infolinks"> [<a href="javascript:toggleInfo('htec1988a','bibtex')">BibTeX</a>]</p>
</td>
</tr>
<tr id="bib_htec1988a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@book{htec1988a,
author = {Williams, T.I.},
title = {Historia de la tecnología},
publisher = {Siglo XXI},
year = {1988},
volume = {4}
}
</pre></td>
</tr>
<tr id="htec1988b" class="entry">
<td>Williams T (1988), <i>"Historia de la tecnología"</i> Vol. 5 Siglo XXI.
<p class="infolinks"> [<a href="javascript:toggleInfo('htec1988b','bibtex')">BibTeX</a>]</p>
</td>
</tr>
<tr id="bib_htec1988b" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@book{htec1988b,
author = {Williams, T.I.},
title = {Historia de la tecnología},
publisher = {Siglo XXI},
year = {1988},
volume = {5}
}
</pre></td>
</tr>
<tr id="yudice2008a" class="entry">
<td>Yúdice G (2008), <i>"Propiedad intelectual, nuevas tecnologías y libre acceso a la cultura"</i> Centro Cultural de España en México — Universidad de las Américas Puebla.
<p class="infolinks"> [<a href="javascript:toggleInfo('yudice2008a','bibtex')">BibTeX</a>] [<a href="https://www.academia.edu/2057461/Propiedad_intelectual_nuevas_tecnolog%C3%ADas_y_libre_acceso_a_la_cultura_-_Alberto_L%C3%B3pez_Cuenca_Eduardo_Ram%C3%ADrez_Pedrajo_coordinadores_" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_yudice2008a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@inbook{yudice2008a,
author = {Yúdice, George},
editor = {López, Albert and Ramírez, Eduardo},
title = {Propiedad intelectual, nuevas tecnologías y libre acceso a la cultura},
publisher = {Centro Cultural de España en México — Universidad de las Américas Puebla},
year = {2008},
url = {https://www.academia.edu/2057461/Propiedad_intelectual_nuevas_tecnolog%C3%ADas_y_libre_acceso_a_la_cultura_-_Alberto_L%C3%B3pez_Cuenca_Eduardo_Ram%C3%ADrez_Pedrajo_coordinadores_}
}
</pre></td>
</tr>
<tr id="bbc2017a" class="entry">
<td> (), <i>"Anulan corazón de “Ley Televisa”"</i>
<p class="infolinks"> [<a href="javascript:toggleInfo('bbc2017a','bibtex')">BibTeX</a>] [<a href="http://news.bbc.co.uk/hi/spanish/latin_america/newsid_6726000/6726335.stm" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_bbc2017a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@electronic{bbc2017a,,
title = {Anulan corazón de “Ley Televisa”},
url = {http://news.bbc.co.uk/hi/spanish/latin_america/newsid_6726000/6726335.stm}
}
</pre></td>
</tr>
<tr id="contitucioneeuu1787a" class="entry">
<td> (1787), <i>"Constitución de los Estados Unidos"</i>
<p class="infolinks"> [<a href="javascript:toggleInfo('contitucioneeuu1787a','bibtex')">BibTeX</a>] [<a href="https://es.wikisource.org/wiki/Constituci%C3%B3n_de_los_Estados_Unidos_de_Am%C3%A9rica#Octava_Secci.C3.B3n" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_contitucioneeuu1787a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@electronic{contitucioneeuu1787a,,
title = {Constitución de los Estados Unidos},
year = {1787},
url = {https://es.wikisource.org/wiki/Constituci%C3%B3n_de_los_Estados_Unidos_de_Am%C3%A9rica#Octava_Secci.C3.B3n}
}
</pre></td>
</tr>
<tr id="gnu2017a" class="entry">
<td> (), <i>"GNU General Public License"</i>
<p class="infolinks"> [<a href="javascript:toggleInfo('gnu2017a','bibtex')">BibTeX</a>] [<a href="https://www.gnu.org/licenses/gpl.html" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_gnu2017a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@electronic{gnu2017a,,
title = {GNU General Public License},
url = {https://www.gnu.org/licenses/gpl.html}
}
</pre></td>
</tr>
<tr id="publimetro2017a" class="entry">
<td> (), <i>"“Ley Döring”, la “Ley SOPA” a la mexicana"</i>
<p class="infolinks"> [<a href="javascript:toggleInfo('publimetro2017a','bibtex')">BibTeX</a>] [<a href="https://www.publimetro.com.mx/mx/noticias/2012/01/18/ley-doring-ley-sopa-mexicana.html" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_publimetro2017a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@electronic{publimetro2017a,,
title = {“Ley Döring”, la “Ley SOPA” a la mexicana},
url = {https://www.publimetro.com.mx/mx/noticias/2012/01/18/ley-doring-ley-sopa-mexicana.html}
}
</pre></td>
</tr>
<tr id="readium2017a" class="entry">
<td> (), <i>"Readium LCP (Licensed Content Protection)"</i>
<p class="infolinks"> [<a href="javascript:toggleInfo('readium2017a','bibtex')">BibTeX</a>] [<a href="http://readium.org/projects/readium-lcp" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_readium2017a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@electronic{readium2017a,,
title = {Readium LCP (Licensed Content Protection)},
url = {http://readium.org/projects/readium-lcp}
}
</pre></td>
</tr>
<tr id="sledu2013a" class="entry">
<td> (2013), <i>"Comunicado de la comunidad sobre Ley de Software Libre y Formatos Abiertos en el Estado"</i>
<p class="infolinks"> [<a href="javascript:toggleInfo('sledu2013a','bibtex')">BibTeX</a>] [<a href="https://www.softwarelibre.edu.uy/Comunicado+Ley+de+Software+Libre" target="_blank">URL</a>]</p>
</td>
</tr>
<tr id="bib_sledu2013a" class="bibtex noshow">
<td><b>BibTeX</b>:
<pre>
@electronic{sledu2013a,,
title = {Comunicado de la comunidad sobre Ley de Software Libre y Formatos Abiertos en el Estado},
year = {2013},
url = {https://www.softwarelibre.edu.uy/Comunicado+Ley+de+Software+Libre}
}
</pre></td>
</tr>
</tbody>
</table>
<footer>
<small>Created by <a href="http://jabref.sourceforge.net">JabRef</a> on 19/04/2017.</small>
</footer>
<!-- file generated by JabRef -->
</body>
</html>