Mostrando las entradas con la etiqueta cites. Mostrar todas las entradas
Mostrando las entradas con la etiqueta cites. Mostrar todas las entradas

viernes, 6 de febrero de 2015

Citas textuales largas en Latex

Una cita es la inclusión en un texto propio de un fragmento de las palabras de otro. Ya se trate de cuatro palabras o de mil, cada vez que citamos tenemos la obligación moral y legal de marcar tipográficamente los límites entre nuestro discurso y el fragmento citado y de indicar claramente las fuentes de donde hemos extraído la cita. De lo contrario, estaremos cometiendo el delito de plagio y violando los derechos de autor y de propiedad intelectual.

Citas textuales cortas:
“Es que la gen ́etica es una ciencia exacta.” (Coulouris et al., 2001: 10).

Para obtener esto en latex se hace de este modo:
"Es que la genética es una ciencia exacta." (\citeauthor{Coulouris}, \citeyearNP{Coulouris}: 10).

Y se genera el documento de esta manera:

Citas textuales de más de dos oraciones:
Dependiendo del estilo de citas o referencias a utilizar, así requiere las especificaciones, por ejemplo en APA sería indicando un subpárrafo con letras más pequeñas que el texto principal:

Para lograr este resultado en latex se utiliza el siguiente código:

Texto del documento

\begin{center}
    \begin{minipage}{0.9\linewidth}
        \vspace{5pt}%margen superior de minipage
        {\small
            La desventaja principal de esta práctica, es que la víctima no sólo tiene que ejecutar el \textit{backdoor} sino que también cambiar los permisos de dicho archivo para ser ejecutable, y por si fuera poco, el \textit{backdoor} debe de estar en ejecución durante el ataque, si el proceso se termina la conexión se desactiva.
        }
        \begin{flushright}
            (\citeauthor{Coulouris}, \citeyearNP{Coulouris}: 10)
        \end{flushright}
        \vspace{5pt}%margen inferior de la minipage
    \end{minipage}
\end{center}

Texto del documento

Y eso sería todo. Gracias por visitar...

sábado, 17 de enero de 2015

Ejemplos de referencias de BibTex para Latex

Aquí muestro alguno de los ejemplos más usados en referencias al escribir un documento en Latex.
Como han de saber, las referencias son incluidas en el archivo.bib que tengan, ahí las modifican y las ajustan a sus necesidades.

@article{article,
    author  = {Peter Adams},
    title   = {The title of the work},
    journal = {The name of the journal},
    year    = 1993,
    number  = 2,
    pages   = {201-213},
    month   = 7,
    note    = {An optional note},
    volume  = 4
}

@book{book,
    author    = {Peter Babington},
    title     = {The title of the work},
    publisher = {The name of the publisher},
    year      = 1993,
    volume    = 4,
    series    = 10,
    address   = {The address},
    edition   = 3,
    month     = 7,
    note      = {An optional note},
    isbn      = {3257227892}
}

@booklet{booklet,
    title        = {The title of the work},
    author       = {Peter Caxton},
    howpublished = {How it was published},
    address      = {The address of the publisher},
    month        = 7,
    year         = 1993,
    note         = {An optional note}
}

@conference{conference,
    author       = {Peter Draper},
    title        = {The title of the work},
    booktitle    = {The title of the book},
    year         = 1993,
    editor       = {The editor},
    volume       = 4,
    series       = 5,
    pages        = 213,
    address      = {The address of the publisher},
    month        = 7,
    organization = {The organization},
    publisher    = {The publisher},
    note         = {An optional note} 
}

@inbook{inbook,
    author       = {Peter Eston},
    title        = {The title of the work},
    chapter      = 8,
    pages        = {201-213},
    publisher    = {The name of the publisher},
    year         = 1993,
    volume       = 4,
    series       = 5,
    address      = {The address of the publisher},
    edition      = 3,
    month        = 7,
    note         = {An optional note}
}

@incollection{incollection,
    author       = {Peter Farindon},
    title        = {The title of the work},
    booktitle    = {The title of the book},
    publisher    = {The name of the publisher},
    year         = 1993,
    editor       = {The editor},
    volume       = 4,
    series       = 5,
    chapter      = 8,
    pages        = {201-213},
    address      = {The address of the publisher},
    edition      = 3,
    month        = 7,
    note         = {An optional note}
}



@manual{manual,
    title        = {The title of the work},
    author       = {Peter Gainsford},
    organization = {The organization},
    address      = {The address of the publisher},
    edition      = 3,
    month        = 7,
    year         = 1993,
    note         = {An optional note}
}

@mastersthesis{mastersthesis,
    author       = {Peter Harwood},
    title        = {The title of the work},
    school       = {The school where the thesis was written},
    year         = 1993,
    address      = {The address of the publisher},
    month        = 7,
    note         = {An optional note}
}

@misc{misc,
    author       = {Peter Isley},
    title        = {The title of the work},
    howpublished = {How it was published},
    month        = 7,
    year         = 1993,
    note         = {An optional note}
}

@phdthesis{phdthesis,
    author       = {Peter Joslin},
    title        = {The title of the work},
    school       = {The school where the thesis was written},
    year         = 1993,
    address      = {The address of the publisher},
    month        = 7,
    note         = {An optional note}
}

@proceedings{proceedings,
    title        = {The title of the work},
    year         = 1993,
    editor       = {Peter Kidwelly},
    volume       = 4,
    series       = 5,
    address      = {The address of the publisher},
    month        = 7,
    organization = {The organization},
    publisher    = {The name of the publisher},
    note         = {An optional note}
}

@techreport{techreport,
    author       = {Peter Lambert},
    title        = {The title of the work},
    institution  = {The institution that published},
    year         = 1993,
    number       = 2,
    address      = {The address of the publisher},
    month        = 7,
    note         = {An optional note}
}

@unpublished{unpublished,
    author       = {Peter Marcheford},
    title        = {The title of the work},
    note         = {An optional note},
    month        = 7,
    year         = 1993
}

Todas están sujetas a cambios, así como la cantidad de datos que tengan del documento a referenciar.