cross-reference Questions
3
Solved
I'm trying to make a document with Markdown/restructuredText which will be converted with pandoc to PDF using xelatex.
I would like to return reference to figure and tables numbers in the text bod...
Christophany asked 12/8, 2018 at 13:59
2
Solved
In Markdown, one can create an inline code link like so
[`dict.update`](https://docs.python.org/3/library/stdtypes.html#dict.update)
Which renders like dict.update. How can get a similar behaviour...
Quathlamba asked 11/5, 2021 at 9:57
3
How can I cross-reference an indexed item inside a reStructuredText document?
For example, how can I cross-reference SectionB:
.. index::
pair: SectionA; SectionB
SectionB
--------
SectionB de...
Merit asked 19/3, 2010 at 18:0
2
Solved
I am creating a long PDF report using Quarto. I want to include two formats of cross-reference:
To the section/figure number, e.g.
As discussed in Section 3.1
To the section/figure title, e.g....
Annunciate asked 10/1, 2023 at 14:5
4
Solved
I'm trying to cross-reference figures and tables in a PDF produced with knitr/rmarkdown. There are some questions on SO and tex.stackexchange (here and here, for example), that suggest the way to d...
Embed asked 9/8, 2016 at 21:54
3
Solved
I would like to cross-reference an image which I include with the markdown ![caption with spaces](path/to/image.png) syntax.
I would like to be able to cross-reference this image as \@ref(fig:capti...
Mailman asked 15/10, 2020 at 1:13
2
Solved
I have a problem with using Sphinx-doc's :ref: role, I put a label above a paragraph and then I try to link to that label from another doc but inside the same project.
The label I use in one docum...
Bonnell asked 2/9, 2015 at 5:19
1
The cross-referencing of figures works great thanks to the very helpful package bookdown from Yihui Xie. And one can reference figures like described in this question
However, I have to separate s...
Messieurs asked 2/9, 2019 at 8:34
7
Solved
I'm currently writing a document in markdown and I'd like to make a reference to an image from my text.
this is my text, I want a reference to my image1 [here]. blablabla
![image1](img/image1.png...
Sylviesylvite asked 24/2, 2012 at 16:38
6
How to insert a cross-reference in a reST/Sphinx page to either a sub-header or anchor in another page in the same documentation set?
Workhorse asked 13/3, 2013 at 19:10
1
I'm having trouble cross-referencing a section generated by a custom directive.
Here is the directive:
from docutils import nodes
from docutils.parsers import rst
class TestDirective(rst.Direct...
Caulescent asked 22/4, 2020 at 15:59
5
I'd like to be able to generate anchors in the YAML generated by PyYAML's dump() function. Is there a way to do this? Ideally the anchors would have the same name as the YAML nodes.
Example:
impo...
Elva asked 5/8, 2013 at 18:45
1
Solved
Given a module hierarchy like
module A
module B; function foo end; end
module C
"""
bar(x)
Like [`foo`](@ref), but more `bar`.
"""
function bar end
end
end
How could I cross-reference f...
Supplicant asked 22/2, 2017 at 6:55
2
Solved
I had a large YAML file with a massive use of YAML anchors and references, for example:
warehouse:
obj1: &obj1
key1: 1
key2: 2
specific:
spec1:
<<: *obj1
spec2:
<<: *obj1
...
Fingered asked 4/7, 2017 at 16:45
3
Consider the two modules (in the same folder):
firstly, person.py
from typing import List
from .pet import Pet
class Person:
def __init__(self, name: str):
self.name = name
self.pets: List[Pe...
Eartha asked 9/10, 2017 at 7:38
2
For some reason I have problems with cross-referencing figures in a bookdown document. Here is a minimal example:
---
output:
bookdown::html_document2:
fig_caption: yes
---
Reference example:...
Phyllis asked 20/1, 2017 at 15:10
3
The Sphinx documentation at http://www.sphinx-doc.org/en/stable/domains.html#cross-referencing-python-objects says,
:py:func: Reference a Python function; dotted names may be used. The role text n...
Obit asked 18/1, 2016 at 6:10
1
Solved
I want to add tables and figures after the bibliography in an R Markdown document. However, R Markdown documents will by default always add the bibliography to the end of the report.
Is there an e...
Logroll asked 14/7, 2018 at 4:3
2
Solved
I have a Graph structure that uses Nodes (Vertices), which in turn have Edges attached under the form of a std::pair<Node*, int> where the Node is the other end of the edge, and the integer i...
Bobbyebobbysocks asked 11/5, 2018 at 14:25
6
Solved
I try to avoid using Excel too much, but when I do I like using structured references as they seem a lot cleaner to write.
If I create a table called "table1" with columns "col1" and "col2" how w...
Toscano asked 10/12, 2009 at 10:49
5
Solved
Up until now I have only used database.yml with each parameter called out explicitly, in the file below it uses some characters I do not understand. What does each line and symbol(&, *, <<...
Loretaloretta asked 11/7, 2011 at 14:0
1
Solved
Is there a way to reference a particular element in a yaml array?
For example if I have this bit of yaml:
node_list:
- one
- two
- three
Can I do something like this:
first_node: node_list[0...
Betthel asked 15/5, 2017 at 19:12
5
So, I know I can do something like this:
sitelist: &sites
- www.foo.com
- www.bar.com
anotherlist: *sites
And have sitelist and anotherlist both contain www.foo.com and www.bar.com. Howev...
Germinative asked 13/2, 2012 at 0:37
4
Solved
I'm working on documentation for my Python module (using Sphinx and reST), and I'm finding that when cross-referencing other Python objects (modules, classes, functions, etc) the full object name e...
Slapbang asked 5/4, 2012 at 18:52
2
Introduction
I'd like to create source code in latex in order to produce pdf via pdflatex and html page(s) via pandoc. I use the following source
\documentclass[12pt,a4paper]{article}
\usepackag...
Wolk asked 16/3, 2015 at 21:2
1 Next >
© 2022 - 2024 — McMap. All rights reserved.