Marcin K.

Marcin K. Projektant
konstrukcji
szklanych

Temat: BIbliografia

Witam,
Mam pytanie. Jestem początkującym użytkownikiem Latex.

Chcę użyć bazy *.bib do tworzenia spisu literatury.
W głównym pliku dodałem zapis:

\bibliographystyle{plain}
\bibliography{tail/articles}
\addcontentsline{toc}{chapter}{Bibliography}

Plik articles.bib znajduje się w katalogu tail.
W tekście zastosowałem \cite{...}.

Ale bibliografia się nie tworzy. Potrzebuję jakiejś paczki?

Dziękuję i pozdrawiam :)

konto usunięte

Temat: BIbliografia

Witam,
linijka "\addcontentsline{toc}{chapter}{Bibliography}" jest niepotrzebna, BibTeX sam ją doda.

I w tym właśnie tkwi szkopuł, otóż BibTeX jest oddzielnym programem i większość środowisk go nie uruchamia domyślnie. Tekst trzeba kompilować zatem w takiej kolejności (plik foo.tex):
(pdf)latex foo -> bibtex foo -> (pdf)latex foo -> (pdf)latex foo

Dobre IDE jak Kile np. robią to automatycznie.

MB
Marcin K.

Marcin K. Projektant
konstrukcji
szklanych

Temat: BIbliografia

Dziękuje za odpowiedz, podziałało :)
Marcin K.

Marcin K. Projektant
konstrukcji
szklanych

Temat: BIbliografia

Witam,

Mam jeszcze jeden problem. Probuje przerobic szablon latex. Oryginalnie druk byl twoside, dodałem w preambule oneside:

\documentclass[a4paper,11pt,oneside]{book}

Podczas kompilacji dostaje bledy:
\fancyhead's 'E' option without twoside option i useless.

Rozumiem, że sa jakies wpisy fancy dotyczace roznego skladania stron. NIe wiem jednak ktore wpisy w szablonie zmienic, zeby wszystko bylo ok. Probowalem sam usuwac, ale bylo jeszcze gorzej. Gdyby ktos wskazal mi, ktore wpisy zmodyfikowac/usunac bylbym b wdzieczny :)

Ponizej plik tex z ustawieniami:

\documentclass[a4paper,11pt,oneside]{book}

\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[polish,english]{babel}

\usepackage{fourier} % Utopia font-typesetting including mathematical formula compatible with newer TeX-Distributions (>2010)
with mathdesign for better looking results

\setlength{\textwidth}{146.8mm} % = 210mm - 37mm - 26.2mm
\setlength{\oddsidemargin}{11.6mm} % 37mm - 1in (from hoffset)
\setlength{\evensidemargin}{0.8mm} % = 26.2mm - 1in (from hoffset)
\setlength{\topmargin}{-2.2mm} % = 0mm -1in + 23.2mm
\setlength{\textheight}{221.9mm} % = 297mm -29.5mm -31.6mm - 14mm (12 to accomodate footline with pagenumber)
\setlength{\headheight}{14pt}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\setlength{\parindent}{0pt}

\usepackage{setspace} % increase interline spacing slightly
\setstretch{1.1}

\makeatletter
\setlength{\@fptop}{0pt} % for aligning all floating figures/tables etc... to the top margin
\makeatother

\usepackage{graphicx,xcolor}
\graphicspath{{images/}}

\usepackage{subfig}
\usepackage{booktabs}
\usepackage{lipsum}
\usepackage{microtype}
\usepackage{url}
\usepackage[final]{pdfpages}

\usepackage{fancyhdr}
\renewcommand{\sectionmark}[1]{\markright{\thesection\ #1}}
\pagestyle{fancy}
\fancyhf{}
\renewcommand{\headrulewidth}{0.4pt}
\renewcommand{\footrulewidth}{0pt}
\fancyhead[OR]{\bfseries \nouppercase{\rightmark}}
\fancyhead[EL]{\bfseries \nouppercase{\leftmark}}
\fancyfoot[EL,OR]{\thepage}
\fancypagestyle{plain}{
\fancyhf{}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}
\fancyfoot[EL,OR]{\thepage}}
\fancypagestyle{addpagenumbersforpdfimports}{
\fancyhead{}
\renewcommand{\headrulewidth}{0pt}
\fancyfoot{}
\fancyfoot[RO,LE]{\thepage}
}

\usepackage{listings}
\lstset{language=[LaTeX]Tex,tabsize=4, basicstyle=\scriptsize\ttfamily, showstringspaces=false, numbers=left, numberstyle=\tiny, numbersep=10pt, breaklines=true, breakautoindent=true, breakindent=10pt}

\usepackage{hyperref}
\hypersetup{pdfborder={0 0 0},
colorlinks=true,
linkcolor=black,
citecolor=black,
urlcolor=black}
\urlstyle{same}

\makeatletter
\def\cleardoublepage{\clearpage\if@twoside \ifodd\c@page\else
\hbox{}
\thispagestyle{empty}
\newpage
\if@twocolumn\hbox{}\newpage\fi\fi\fi}
%\makeatother \clearpage{\pagestyle{plain}\cleardoublepage}

%%%%% CHAPTER HEADER %%%%
\usepackage{color}
\usepackage{tikz}
\usepackage[explicit]{titlesec}
\newcommand*\chapterlabel{}
%\renewcommand{\thechapter}{\Roman{chapter}}
\titleformat{\chapter}[display] % type (section,chapter,etc...) to vary, shape (eg display-type)
{\normalfont\bfseries\Huge} % format of the chapter
{\gdef\chapterlabel{\thechapter\ }} % the label
{0pt} % separation between label and chapter-title
{\begin{tikzpicture}[remember picture,overlay]
\node[yshift=-8cm] at (current page.north west)
{\begin{tikzpicture}[remember picture, overlay]
\draw[fill=black] (0,0) rectangle(35.5mm,15mm);
\node[anchor=north east,yshift=-7.2cm,xshift=34mm,minimum height=30mm,inner sep=0mm] at (current page.north west)
{\parbox[top][30mm][t]{15mm}{\raggedleft $\phantom{\textrm{l}}$\color{white}\chapterlabel}}; %the black l is just to get better base-line alingement
\node[anchor=north west,yshift=-7.2cm,xshift=37mm,text width=\textwidth,minimum height=30mm,inner sep=0mm] at (current page.north west)
{\parbox[top][30mm][t]{\textwidth}{\color{black}#1}};
\end{tikzpicture}
};
\end{tikzpicture}
\gdef\chapterlabel{}
} % code before the title body

\titlespacing*{\chapter}{0pt}{50pt}{30pt}
\titlespacing*{\section}{0pt}{13.2pt}{*0} % 13.2pt is line spacing for a text with 11pt font size
\titlespacing*{\subsection}{0pt}{13.2pt}{*0}
\titlespacing*{\subsubsection}{0pt}{13.2pt}{*0}

\newcounter{myparts}
\newcommand*\partlabel{}
\titleformat{\part}[display] % type (section,chapter,etc...) to vary, shape (eg display-type)
{\normalfont\bfseries\Huge} % format of the part
{\gdef\partlabel{\thepart\ }} % the label
{0pt} % separation between label and part-title
{\setlength{\unitlength}{20mm}
\addtocounter{myparts}{1}
\begin{tikzpicture}[remember picture,overlay]
\node[anchor=north west,xshift=-65mm,yshift=-6.9cm-\value{myparts}*20mm] at (current page.north east) % for unknown reasons: 3mm missing -> 65 instead of 62
{\begin{tikzpicture}[remember picture, overlay]
\draw[fill=black] (0,0) rectangle(62mm,20mm); % -\value{myparts}\unitlength
\node[anchor=north west,yshift=-6.1cm-\value{myparts}*20mm,xshift=-60.5mm,minimum height=30mm,inner sep=0mm] at (current page.north east)
{\parbox[top][30mm][t]{55mm}{\raggedright \color{white}Part \partlabel $\phantom{\textrm{l}}$}}; %the phantom l is just to get better base-line alingement
\node[anchor=north east,yshift=-6.1cm-\value{myparts}*20mm,xshift=-63.5mm,text width=\textwidth,minimum height=30mm,inner sep=0mm] at (current page.north east)
{\parbox[top][30mm][t]{\textwidth}{\raggedleft \color{black}#1}};
\end{tikzpicture}
};
\end{tikzpicture}
\gdef\partlabel{}
} % code before the title body

konto usunięte

Temat: BIbliografia

Pakiet fancyhdr jest znany z tego, że marudzi. Nie trzeba przedefiniowywać całej klasy, wystarczy ustawić opcje dla nagłówków, szczegóły w dokumentacji samego pakietu.

Ja generalnie go nie używam i w razie potrzeby przedefiniowywuję makra składające nagłówki i stopki z klasy nadrzędnej.

Pozdrawiam
MB

Następna dyskusja:

Bibliografia do pracy inzyn...




Wyślij zaproszenie do