public inbox archive for pandoc-discuss@googlegroups.com
 help / color / mirror / Atom feed
* bibliography and \cite isn't created
@ 2019-07-09  9:47 ME2Digital
       [not found] ` <f2c0f6b1-9564-478d-be67-e66f3dd44e87-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
  0 siblings, 1 reply; 3+ messages in thread
From: ME2Digital @ 2019-07-09  9:47 UTC (permalink / raw)
  To: pandoc-discuss


[-- Attachment #1.1: Type: text/plain, Size: 3052 bytes --]

Hi.

after some search in the archive I was not able to find a working solution. 
The problem is that I don't get the bibliography in the append.
When I make `--to=latex` then I get the hyperref but not the \cite in the 
latex output.

```

... (Rössler. \protect\hyperlink{ref-BRoe001}{2001}) 

\hypertarget{refs}{}M
\leavevmode\hypertarget{ref-BRoe001}{}%M
Rössler, Beate. 2001. \emph{Der Wert des Privaten}. Frankfurt am Main:M
Suhrkamp.M

```

Please can anyone tell me what's my mistake, thanks.


```
frontmatter.yaml:
---
link-citations: true
reference-section-title: true
biblatex: true
biblatexoptions: sortlocale=auto
bibliography: data/bibliography.bib
nocite: '@*'
---

bibliography.bib:
@Book{BRoe001,
author = {Beate Rössler},
title = {Der Wert des Privaten},
publisher = {Suhrkamp},
date = {2001},
location = {Frankfurt am Main},
pages = {379},
isbn = {9783518291306}
}


text.txt
```
some text [@BRoe001]
```

Command: `pandoc --filter pandoc-citeproc.exe --pdf-engine=xelatex --toc 
--from=markdown -o output/file.pdf texte/*.txt`

Pandoc version: ```
pandoc --version pandoc.exe 2.7.2 Compiled with pandoc-types 1.17.5.4, 
texmath 0.11.2.2, skylighting 0.7.7 Default user data directory: 
C:\Users\myUser\AppData\Roaming\pandoc Copyright (C) 2006-2019 John 
MacFarlane Web: http://pandoc.org This is free software; see the source for 
copying conditions. There is no warranty, not even for merchantability or 
fitness for a particular purpose. 
```
```
pandoc-citeproc.exe --version
pandoc-citeproc 0.16.1.3
```

```
xelatex --version
XeTeX 3.14159265-2.6-0.99999 (TeX Live 2018/Cygwin)
kpathsea version 6.3.0
Copyright 2018 SIL International, Jonathan Kew and Khaled Hosny.
There is NO warranty.  Redistribution of this software is
covered by the terms of both the XeTeX copyright and
the Lesser GNU General Public License.
For more information about these matters, see the file
named COPYING and the XeTeX source.
Primary author of XeTeX: Jonathan Kew.
Compiled with ICU version 61.1; using 61.1
Compiled with zlib version 1.2.11; using 1.2.11
Compiled with FreeType2 version 2.8.1; using 2.8.1
Compiled with Graphite2 version 1.3.10; using 1.3.10
Compiled with HarfBuzz version 1.7.6; using 1.7.6
Compiled with libpng version 1.6.34; using 1.6.34
Compiled with poppler version 0.62.0
Compiled with fontconfig version 2.12.6; using 2.12.6
```

Best regads
Aleks

-- 
You received this message because you are subscribed to the Google Groups "pandoc-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To post to this group, send email to pandoc-discuss-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/f2c0f6b1-9564-478d-be67-e66f3dd44e87%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

[-- Attachment #1.2: Type: text/html, Size: 6533 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: bibliography and \cite isn't created
       [not found] ` <f2c0f6b1-9564-478d-be67-e66f3dd44e87-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
@ 2019-07-10 19:15   ` John MacFarlane
       [not found]     ` <m2ims9u2em.fsf-pgq/RBwaQ+zq8tPRBa0AtqxOck334EZe@public.gmane.org>
  0 siblings, 1 reply; 3+ messages in thread
From: John MacFarlane @ 2019-07-10 19:15 UTC (permalink / raw)
  To: ME2Digital, pandoc-discuss


If you want \cite commands to appear in the latex
output, then use the --natbib option instead of pandoc-citeproc.
This will leave it to latex to do the citation management.

ME2Digital <me2digitaleu-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> writes:

> Hi.
>
> after some search in the archive I was not able to find a working solution. 
> The problem is that I don't get the bibliography in the append.
> When I make `--to=latex` then I get the hyperref but not the \cite in the 
> latex output.
>
> ```
>
> ... (Rössler. \protect\hyperlink{ref-BRoe001}{2001}) 
>
> \hypertarget{refs}{}M
> \leavevmode\hypertarget{ref-BRoe001}{}%M
> Rössler, Beate. 2001. \emph{Der Wert des Privaten}. Frankfurt am Main:M
> Suhrkamp.M
>
> ```
>
> Please can anyone tell me what's my mistake, thanks.
>
>
> ```
> frontmatter.yaml:
> ---
> link-citations: true
> reference-section-title: true
> biblatex: true
> biblatexoptions: sortlocale=auto
> bibliography: data/bibliography.bib
> nocite: '@*'
> ---
>
> bibliography.bib:
> @Book{BRoe001,
> author = {Beate Rössler},
> title = {Der Wert des Privaten},
> publisher = {Suhrkamp},
> date = {2001},
> location = {Frankfurt am Main},
> pages = {379},
> isbn = {9783518291306}
> }
>
>
> text.txt
> ```
> some text [@BRoe001]
> ```
>
> Command: `pandoc --filter pandoc-citeproc.exe --pdf-engine=xelatex --toc 
> --from=markdown -o output/file.pdf texte/*.txt`
>
> Pandoc version: ```
> pandoc --version pandoc.exe 2.7.2 Compiled with pandoc-types 1.17.5.4, 
> texmath 0.11.2.2, skylighting 0.7.7 Default user data directory: 
> C:\Users\myUser\AppData\Roaming\pandoc Copyright (C) 2006-2019 John 
> MacFarlane Web: http://pandoc.org This is free software; see the source for 
> copying conditions. There is no warranty, not even for merchantability or 
> fitness for a particular purpose. 
> ```
> ```
> pandoc-citeproc.exe --version
> pandoc-citeproc 0.16.1.3
> ```
>
> ```
> xelatex --version
> XeTeX 3.14159265-2.6-0.99999 (TeX Live 2018/Cygwin)
> kpathsea version 6.3.0
> Copyright 2018 SIL International, Jonathan Kew and Khaled Hosny.
> There is NO warranty.  Redistribution of this software is
> covered by the terms of both the XeTeX copyright and
> the Lesser GNU General Public License.
> For more information about these matters, see the file
> named COPYING and the XeTeX source.
> Primary author of XeTeX: Jonathan Kew.
> Compiled with ICU version 61.1; using 61.1
> Compiled with zlib version 1.2.11; using 1.2.11
> Compiled with FreeType2 version 2.8.1; using 2.8.1
> Compiled with Graphite2 version 1.3.10; using 1.3.10
> Compiled with HarfBuzz version 1.7.6; using 1.7.6
> Compiled with libpng version 1.6.34; using 1.6.34
> Compiled with poppler version 0.62.0
> Compiled with fontconfig version 2.12.6; using 2.12.6
> ```
>
> Best regads
> Aleks
>
> -- 
> You received this message because you are subscribed to the Google Groups "pandoc-discuss" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
> To post to this group, send email to pandoc-discuss-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
> To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/f2c0f6b1-9564-478d-be67-e66f3dd44e87%40googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups "pandoc-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To post to this group, send email to pandoc-discuss-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/m2ims9u2em.fsf%40johnmacfarlane.net.
For more options, visit https://groups.google.com/d/optout.


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: bibliography and \cite isn't created
       [not found]     ` <m2ims9u2em.fsf-pgq/RBwaQ+zq8tPRBa0AtqxOck334EZe@public.gmane.org>
@ 2019-07-11 22:44       ` ME2Digital
  0 siblings, 0 replies; 3+ messages in thread
From: ME2Digital @ 2019-07-11 22:44 UTC (permalink / raw)
  To: pandoc-discuss


[-- Attachment #1.1: Type: text/plain, Size: 4683 bytes --]

Hi,

On Wednesday, 10 July 2019 21:16:00 UTC+2, John MacFarlane wrote:
>
>
> If you want \cite commands to appear in the latex 
> output, then use the --natbib option instead of pandoc-citeproc. 
> This will leave it to latex to do the citation management. 
>

Thanks. I think I have now understood what my problem was.
Solution: I have added `# Bibliography` as the last line in my last file. 
That's the `# References` as described in the doc.

Regards
Aleks

 

> ME2Digital <me2dig...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org <javascript:>> writes: 
>
> > Hi. 
> > 
> > after some search in the archive I was not able to find a working 
> solution. 
> > The problem is that I don't get the bibliography in the append. 
> > When I make `--to=latex` then I get the hyperref but not the \cite in 
> the 
> > latex output. 
> > 
> > ``` 
> > 
> > ... (Rössler. \protect\hyperlink{ref-BRoe001}{2001}) 
> > 
> > \hypertarget{refs}{}M 
> > \leavevmode\hypertarget{ref-BRoe001}{}%M 
> > Rössler, Beate. 2001. \emph{Der Wert des Privaten}. Frankfurt am Main:M 
> > Suhrkamp.M 
> > 
> > ``` 
> > 
> > Please can anyone tell me what's my mistake, thanks. 
> > 
> > 
> > ``` 
> > frontmatter.yaml: 
> > --- 
> > link-citations: true 
> > reference-section-title: true 
> > biblatex: true 
> > biblatexoptions: sortlocale=auto 
> > bibliography: data/bibliography.bib 
> > nocite: '@*' 
> > --- 
> > 
> > bibliography.bib: 
> > @Book{BRoe001, 
> > author = {Beate Rössler}, 
> > title = {Der Wert des Privaten}, 
> > publisher = {Suhrkamp}, 
> > date = {2001}, 
> > location = {Frankfurt am Main}, 
> > pages = {379}, 
> > isbn = {9783518291306} 
> > } 
> > 
> > 
> > text.txt 
> > ``` 
> > some text [@BRoe001] 
> > ``` 
> > 
> > Command: `pandoc --filter pandoc-citeproc.exe --pdf-engine=xelatex --toc 
> > --from=markdown -o output/file.pdf texte/*.txt` 
> > 
> > Pandoc version: ``` 
> > pandoc --version pandoc.exe 2.7.2 Compiled with pandoc-types 1.17.5.4, 
> > texmath 0.11.2.2, skylighting 0.7.7 Default user data directory: 
> > C:\Users\myUser\AppData\Roaming\pandoc Copyright (C) 2006-2019 John 
> > MacFarlane Web: http://pandoc.org This is free software; see the source 
> for 
> > copying conditions. There is no warranty, not even for merchantability 
> or 
> > fitness for a particular purpose. 
> > ``` 
> > ``` 
> > pandoc-citeproc.exe --version 
> > pandoc-citeproc 0.16.1.3 
> > ``` 
> > 
> > ``` 
> > xelatex --version 
> > XeTeX 3.14159265-2.6-0.99999 (TeX Live 2018/Cygwin) 
> > kpathsea version 6.3.0 
> > Copyright 2018 SIL International, Jonathan Kew and Khaled Hosny. 
> > There is NO warranty.  Redistribution of this software is 
> > covered by the terms of both the XeTeX copyright and 
> > the Lesser GNU General Public License. 
> > For more information about these matters, see the file 
> > named COPYING and the XeTeX source. 
> > Primary author of XeTeX: Jonathan Kew. 
> > Compiled with ICU version 61.1; using 61.1 
> > Compiled with zlib version 1.2.11; using 1.2.11 
> > Compiled with FreeType2 version 2.8.1; using 2.8.1 
> > Compiled with Graphite2 version 1.3.10; using 1.3.10 
> > Compiled with HarfBuzz version 1.7.6; using 1.7.6 
> > Compiled with libpng version 1.6.34; using 1.6.34 
> > Compiled with poppler version 0.62.0 
> > Compiled with fontconfig version 2.12.6; using 2.12.6 
> > ``` 
> > 
> > Best regads 
> > Aleks 
> > 
> > -- 
> > You received this message because you are subscribed to the Google 
> Groups "pandoc-discuss" group. 
> > To unsubscribe from this group and stop receiving emails from it, send 
> an email to pandoc-...-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org <javascript:>. 
> > To post to this group, send email to pandoc-...-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org 
> <javascript:>. 
> > To view this discussion on the web visit 
> https://groups.google.com/d/msgid/pandoc-discuss/f2c0f6b1-9564-478d-be67-e66f3dd44e87%40googlegroups.com. 
>
> > For more options, visit https://groups.google.com/d/optout. 
>

-- 
You received this message because you are subscribed to the Google Groups "pandoc-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To post to this group, send email to pandoc-discuss-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/319f0b17-077d-4551-a7b0-448ed047d536%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

[-- Attachment #1.2: Type: text/html, Size: 7497 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-07-11 22:44 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-07-09  9:47 bibliography and \cite isn't created ME2Digital
     [not found] ` <f2c0f6b1-9564-478d-be67-e66f3dd44e87-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2019-07-10 19:15   ` John MacFarlane
     [not found]     ` <m2ims9u2em.fsf-pgq/RBwaQ+zq8tPRBa0AtqxOck334EZe@public.gmane.org>
2019-07-11 22:44       ` ME2Digital

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).