我有三個表許多一對多的關係: 輪廓,作用和型 然後,我有兩個交叉引用表: profile_role:
role_id : int
profile_id : int
profile_type:
profile_id : int
type_id : int
統一對外兩個表中的ID都是profile_id。 我的想法是,我創建一個包含三個外部ID的表: p
考慮兩個模塊(在相同的文件夾中): 首先,person.py from typing import List
from .pet import Pet
class Person:
def __init__(self, name: str):
self.name = name
self.pets = [] # type: List[Pet]
de
我使用bookdown以html和pdf生成文檔。我怎樣才能在表格的標題中插入對文檔部分的引用? 使用\\ref{sec:FirstSection}正常工作與pdf_book(但不gitbook): ---
title: "Test"
output: bookdown::pdf_book
---
# A section {#sec:FirstSection}
The dataset i